diff --git a/.gitignore b/.gitignore
index 6e704f10f..f4cc28daa 100644
--- a/.gitignore
+++ b/.gitignore
@@ -175,3 +175,24 @@ $RECYCLE.BIN/
# Mac crap
.DS_Store
*.lnk
+
+# Melia GUI WebApp
+/system/web-optional/MeliaGUI/.phpunit.cache
+/system/web-optional/MeliaGUI/node_modules
+/system/web-optional/MeliaGUI/public/build
+/system/web-optional/MeliaGUI/public/hot
+/system/web-optional/MeliaGUI/public/storage
+/system/web-optional/MeliaGUI/storage/*.key
+/system/web-optional/MeliaGUI/vendor
+/system/web-optional/MeliaGUI/.env
+/system/web-optional/MeliaGUI/.env.backup
+/system/web-optional/MeliaGUI/.env.production
+/system/web-optional/MeliaGUI/.phpunit.result.cache
+/system/web-optional/MeliaGUI/Homestead.json
+/system/web-optional/MeliaGUI/Homestead.yaml
+/system/web-optional/MeliaGUI/auth.json
+/system/web-optional/MeliaGUI/npm-debug.log
+/system/web-optional/MeliaGUI/yarn-error.log
+/system/web-optional/MeliaGUI/.fleet
+/system/web-optional/MeliaGUI/.idea
+/system/web-optional/MeliaGUI/.vscode
\ No newline at end of file
diff --git a/dump.sql b/dump.sql
new file mode 100644
index 000000000..e69de29bb
diff --git a/src/BarracksServer/BarracksServer.cs b/src/BarracksServer/BarracksServer.cs
index b1a5e6f65..02aabcb6c 100644
--- a/src/BarracksServer/BarracksServer.cs
+++ b/src/BarracksServer/BarracksServer.cs
@@ -1,7 +1,10 @@
-using System;
+using System;
using System.Collections.Generic;
+using System.Diagnostics;
using System.IO;
using System.Linq;
+using System.Threading.Tasks;
+using System.Threading;
using Melia.Barracks.Database;
using Melia.Barracks.Network;
using Melia.Barracks.Util;
@@ -10,6 +13,7 @@
using Melia.Shared.IES;
using Melia.Shared.Network;
using Melia.Shared.Network.Inter.Messages;
+using Microsoft.VisualBasic.Devices;
using Yggdrasil.Logging;
using Yggdrasil.Network.Communication;
using Yggdrasil.Network.Communication.Messages;
@@ -77,6 +81,7 @@ public override void Run(string[] args)
this.StartCommunicator();
this.StartAcceptor();
+ this.SendProcessInformation();
ConsoleUtil.RunningTitle();
new BarracksConsoleCommands().Wait();
@@ -144,7 +149,7 @@ private void Communicator_OnClientDisconnected(string commName)
private void Communicator_OnMessageReceived(string sender, ICommMessage message)
{
//Log.Debug("Message received from '{0}': {1}", sender, message);
-
+
switch (message)
{
case ServerUpdateMessage serverUpdateMessage:
@@ -185,6 +190,11 @@ private void Communicator_OnRequestReceived(string sender, RequestMessage reques
this.Communicator.Send(sender, responseMessage);
break;
}
+ case ResServerInformationMessage resServerInformationMessage:
+ {
+ this.Communicator.Send("Web", resServerInformationMessage);
+ break;
+ }
}
}
@@ -259,5 +269,35 @@ public void Broadcast(Packet packet)
conn.Send(packet);
}
}
+
+ ///
+ /// Send the information about the process to the coordinator.
+ ///
+ private async void SendProcessInformation()
+ {
+ var cpuCounter = new PerformanceCounter("Processor", "% Processor Time", "_Total");
+ cpuCounter.NextValue();
+ Thread.Sleep(1000);
+ var cpuUsage = cpuCounter.NextValue();
+
+ var processRamCounter = new PerformanceCounter("Process", "Working Set", Process.GetCurrentProcess().ProcessName);
+
+ var totalRam = new ComputerInfo().TotalPhysicalMemory;
+ var processRamUsage = processRamCounter.NextValue();
+
+ var serverInformationMessage = new ResServerInformationMessage(
+ this.ServerInfo.Type, Process.GetCurrentProcess().Id, this.ServerInfo.Id,
+ Process.GetCurrentProcess().ProcessName, this.ServerInfo.Status,
+ cpuUsage, processRamUsage, totalRam, this.ServerInfo.Ip
+ );
+
+ try {
+ this.Communicator.Send("Web", serverInformationMessage);
+ } catch (Exception)
+ {
+ }
+
+ await Task.Delay(TimeSpan.FromMinutes(5));
+ }
}
}
diff --git a/src/BarracksServer/BarracksServer.csproj b/src/BarracksServer/BarracksServer.csproj
index 2bac60a62..4690b49f9 100644
--- a/src/BarracksServer/BarracksServer.csproj
+++ b/src/BarracksServer/BarracksServer.csproj
@@ -36,6 +36,7 @@
false
+
False
..\..\lib\MySql.Data.dll
diff --git a/src/Shared/Configuration/Files/Barracks.cs b/src/Shared/Configuration/Files/Barracks.cs
index 49c4c3250..4778091e3 100644
--- a/src/Shared/Configuration/Files/Barracks.cs
+++ b/src/Shared/Configuration/Files/Barracks.cs
@@ -1,4 +1,5 @@
-using Melia.Shared.World;
+using System.Collections.Generic;
+using Melia.Shared.World;
using Yggdrasil.Configuration;
using Yggdrasil.Logging;
@@ -70,5 +71,10 @@ private Position GetPosition(string option, Position defaultValue)
return new Position(x, y, z);
}
+
+ public Dictionary GetOptions()
+ {
+ return _options;
+ }
}
}
diff --git a/src/Shared/Configuration/Files/Commands.cs b/src/Shared/Configuration/Files/Commands.cs
index fd76744c4..1520b07ec 100644
--- a/src/Shared/Configuration/Files/Commands.cs
+++ b/src/Shared/Configuration/Files/Commands.cs
@@ -113,6 +113,11 @@ public CommandAuthLevels GetLevelsOrDefault(string command)
return result;
}
+
+ public Dictionary GetOptions()
+ {
+ return _options;
+ }
}
///
diff --git a/src/Shared/Configuration/Files/Database.cs b/src/Shared/Configuration/Files/Database.cs
index 2372f7570..6a929c235 100644
--- a/src/Shared/Configuration/Files/Database.cs
+++ b/src/Shared/Configuration/Files/Database.cs
@@ -1,4 +1,5 @@
-using Yggdrasil.Configuration;
+using System.Collections.Generic;
+using Yggdrasil.Configuration;
namespace Melia.Shared.Configuration.Files
{
@@ -25,5 +26,10 @@ public void Load(string filePath)
this.Pass = this.GetString("pass", "");
this.Db = this.GetString("database", "melia");
}
+
+ public Dictionary GetOptions()
+ {
+ return _options;
+ }
}
}
diff --git a/src/Shared/Configuration/Files/Localization.cs b/src/Shared/Configuration/Files/Localization.cs
index a2022efc8..374fcebda 100644
--- a/src/Shared/Configuration/Files/Localization.cs
+++ b/src/Shared/Configuration/Files/Localization.cs
@@ -1,4 +1,5 @@
-using Yggdrasil.Configuration;
+using System.Collections.Generic;
+using Yggdrasil.Configuration;
namespace Melia.Shared.Configuration.Files
{
@@ -23,5 +24,10 @@ public void Load(string filePath)
this.Culture = this.GetString("culture", "en-US");
this.CultureUi = this.GetString("culture_ui", "en-US");
}
+
+ public Dictionary GetOptions()
+ {
+ return _options;
+ }
}
}
diff --git a/src/Shared/Configuration/Files/Log.cs b/src/Shared/Configuration/Files/Log.cs
index a1e3f3cb3..4b0a60a6a 100644
--- a/src/Shared/Configuration/Files/Log.cs
+++ b/src/Shared/Configuration/Files/Log.cs
@@ -1,4 +1,5 @@
-using Yggdrasil.Configuration;
+using System.Collections.Generic;
+using Yggdrasil.Configuration;
using Yggdrasil.Logging;
namespace Melia.Shared.Configuration.Files
@@ -20,5 +21,10 @@ public void Load(string filePath)
this.Filter = (LogLevel)this.GetInt("log_filter", 0);
}
+
+ public Dictionary GetOptions()
+ {
+ return _options;
+ }
}
}
diff --git a/src/Shared/Configuration/Files/Web.cs b/src/Shared/Configuration/Files/Web.cs
index 28a199962..6a6ca8754 100644
--- a/src/Shared/Configuration/Files/Web.cs
+++ b/src/Shared/Configuration/Files/Web.cs
@@ -1,4 +1,5 @@
-using System.IO;
+using System.Collections.Generic;
+using System.IO;
using Yggdrasil.Configuration;
namespace Melia.Shared.Configuration.Files
@@ -22,5 +23,10 @@ public void Load(string filePath)
this.PhpCgiFilePath = this.GetString("php_cgi_bin", Path.Combine("user", "tools", "php", "php-cgi.exe"));
this.PhpDownloadUrl = this.GetString("php_download", "https://windows.php.net/downloads/releases/php-8.2.7-nts-Win32-vs16-x86.zip");
}
+
+ public Dictionary GetOptions()
+ {
+ return _options;
+ }
}
}
diff --git a/src/Shared/Configuration/Files/World.cs b/src/Shared/Configuration/Files/World.cs
index c8fc75f82..32e77a4e2 100644
--- a/src/Shared/Configuration/Files/World.cs
+++ b/src/Shared/Configuration/Files/World.cs
@@ -1,4 +1,5 @@
-using Yggdrasil.Configuration;
+using System.Collections.Generic;
+using Yggdrasil.Configuration;
namespace Melia.Shared.Configuration.Files
{
@@ -113,5 +114,10 @@ public void Load(string filePath)
this.RedOrbJackpotRate = this.GetFloat("red_orb_jackpot_rate", 10000);
this.RedOrbEliteRate = this.GetFloat("red_orb_elite_rate", 1000);
}
+
+ public Dictionary GetOptions()
+ {
+ return _options;
+ }
}
}
diff --git a/src/Shared/Network/Inter/Messages/ReqKickAllMessage.cs b/src/Shared/Network/Inter/Messages/ReqKickAllMessage.cs
new file mode 100644
index 000000000..5154490f0
--- /dev/null
+++ b/src/Shared/Network/Inter/Messages/ReqKickAllMessage.cs
@@ -0,0 +1,13 @@
+using System;
+using Yggdrasil.Network.Communication;
+
+namespace Melia.Shared.Network.Inter.Messages
+{
+ ///
+ /// Instruction to kick all players.
+ ///
+ [Serializable]
+ public class ReqKickAllMessage : ICommMessage
+ {
+ }
+}
diff --git a/src/Shared/Network/Inter/Messages/ResServerInformationMessage.cs b/src/Shared/Network/Inter/Messages/ResServerInformationMessage.cs
new file mode 100644
index 000000000..4f6c1563e
--- /dev/null
+++ b/src/Shared/Network/Inter/Messages/ResServerInformationMessage.cs
@@ -0,0 +1,83 @@
+using System;
+using Melia.Shared.Data.Database;
+using Yggdrasil.Network.Communication;
+
+namespace Melia.Shared.Network.Inter.Messages
+{
+ ///
+ /// Contains updated information about a server.
+ ///
+ [Serializable]
+ public class ResServerInformationMessage : ICommMessage
+ {
+ ///
+ /// Returns the type of the server.
+ ///
+ public ServerType ServerType { get; set; }
+
+ ///
+ /// Returns the server's processId
+ ///
+ public int ProcessId { get; set; }
+
+ ///
+ /// Returns the server's id.
+ ///
+ public int ServerId { get; set; }
+
+ ///
+ /// Returns the server's processName
+ ///
+ public string ProcessName { get; set; }
+
+ ///
+ /// Returns the server's status.
+ ///
+ public ServerStatus Status { get; set; }
+
+ ///
+ /// Returns the server's CPU usage percentage
+ ///
+ public float CpuUsagePercentage { get; set; }
+
+ ///
+ /// Returns the server's memory usage
+ ///
+ public float ProcessRamUsage { get; set; }
+
+ ///
+ /// Returns the server's total memory
+ ///
+ public ulong TotalRAM { get; set; }
+
+ ///
+ /// Returns the server's ip address
+ ///
+ public string ServerIp { get; set; }
+
+ ///
+ /// Creates a new message.
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public ResServerInformationMessage(ServerType serverType, int processId, int serverId, string processName, ServerStatus status, float cpuUsagePercentage, float processRamUsage, ulong totalRAM, string serverIp)
+ {
+ this.ServerType = serverType;
+ this.ProcessId = processId;
+ this.ServerId = serverId;
+ this.ProcessName = processName;
+ this.Status = status;
+ this.CpuUsagePercentage = cpuUsagePercentage;
+ this.ProcessRamUsage = processRamUsage;
+ this.TotalRAM = totalRAM;
+ this.ServerIp = serverIp;
+ }
+ }
+}
diff --git a/src/Shared/Network/Inter/Messages/ServerUpdateMessage.cs b/src/Shared/Network/Inter/Messages/ServerUpdateMessage.cs
index bd3e02463..bf89e3d33 100644
--- a/src/Shared/Network/Inter/Messages/ServerUpdateMessage.cs
+++ b/src/Shared/Network/Inter/Messages/ServerUpdateMessage.cs
@@ -31,7 +31,7 @@ public class ServerUpdateMessage : ICommMessage
///
/// Returns the server's status.
///
- public ServerStatus Status { get; set; }
+ public ServerStatus ServerStatus { get; set; }
///
/// Creates a new message.
@@ -39,13 +39,13 @@ public class ServerUpdateMessage : ICommMessage
///
///
///
- ///
- public ServerUpdateMessage(ServerType serverType, int serverId, int playerCount, ServerStatus status)
+ ///
+ public ServerUpdateMessage(ServerType serverType, int serverId, int playerCount, ServerStatus serverStatus)
{
this.ServerType = serverType;
this.ServerId = serverId;
this.PlayerCount = playerCount;
- this.Status = status;
+ this.ServerStatus = serverStatus;
}
}
}
diff --git a/src/Shared/Network/Inter/Messages/UpdateConfigsMessage.cs b/src/Shared/Network/Inter/Messages/UpdateConfigsMessage.cs
new file mode 100644
index 000000000..8ab81a4cb
--- /dev/null
+++ b/src/Shared/Network/Inter/Messages/UpdateConfigsMessage.cs
@@ -0,0 +1,13 @@
+using System;
+using Yggdrasil.Network.Communication;
+
+namespace Melia.Shared.Network.Inter.Messages
+{
+ ///
+ /// Instruction to kick all players.
+ ///
+ [Serializable]
+ public class ReqReloadConfigsMessage : ICommMessage
+ {
+ }
+}
diff --git a/src/Shared/Network/ServerList.cs b/src/Shared/Network/ServerList.cs
index 24a78330d..7a06bb95b 100644
--- a/src/Shared/Network/ServerList.cs
+++ b/src/Shared/Network/ServerList.cs
@@ -103,7 +103,7 @@ public void Update(ServerUpdateMessage serverUpdateMessage)
return;
serverInfo.CurrentPlayers = serverUpdateMessage.PlayerCount;
- serverInfo.Status = serverUpdateMessage.Status;
+ serverInfo.Status = serverUpdateMessage.ServerStatus;
}
}
diff --git a/src/Shared/Shared.csproj b/src/Shared/Shared.csproj
index d3b078638..ec8ecab7e 100644
--- a/src/Shared/Shared.csproj
+++ b/src/Shared/Shared.csproj
@@ -102,10 +102,13 @@
+
+
+
@@ -200,7 +203,9 @@
-
+
+
+
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/postcss.config.js b/system/web-optional/MeliaGUI/postcss.config.js
new file mode 100644
index 000000000..04b6f0d99
--- /dev/null
+++ b/system/web-optional/MeliaGUI/postcss.config.js
@@ -0,0 +1,11 @@
+import postcssImport from 'postcss-import';
+import tailwindcss from 'tailwindcss';
+import autoprefixer from 'autoprefixer';
+
+export default {
+ plugins: [
+ postcssImport,
+ tailwindcss,
+ autoprefixer,
+ ],
+};
diff --git a/system/web-optional/MeliaGUI/public/.htaccess b/system/web-optional/MeliaGUI/public/.htaccess
new file mode 100644
index 000000000..3aec5e27e
--- /dev/null
+++ b/system/web-optional/MeliaGUI/public/.htaccess
@@ -0,0 +1,21 @@
+
+
+ Options -MultiViews -Indexes
+
+
+ RewriteEngine On
+
+ # Handle Authorization Header
+ RewriteCond %{HTTP:Authorization} .
+ RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
+
+ # Redirect Trailing Slashes If Not A Folder...
+ RewriteCond %{REQUEST_FILENAME} !-d
+ RewriteCond %{REQUEST_URI} (.+)/$
+ RewriteRule ^ %1 [L,R=301]
+
+ # Send Requests To Front Controller...
+ RewriteCond %{REQUEST_FILENAME} !-d
+ RewriteCond %{REQUEST_FILENAME} !-f
+ RewriteRule ^ index.php [L]
+
diff --git a/system/web-optional/MeliaGUI/public/assets/img/advanced-trading-tools.webp b/system/web-optional/MeliaGUI/public/assets/img/advanced-trading-tools.webp
new file mode 100644
index 000000000..d72dda80e
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/advanced-trading-tools.webp differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/bg-trading-tools.webp b/system/web-optional/MeliaGUI/public/assets/img/bg-trading-tools.webp
new file mode 100644
index 000000000..a859efe61
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/bg-trading-tools.webp differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/brain-cogs.png b/system/web-optional/MeliaGUI/public/assets/img/brain-cogs.png
new file mode 100644
index 000000000..bd5611481
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/brain-cogs.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/buy-and-trade.webp b/system/web-optional/MeliaGUI/public/assets/img/buy-and-trade.webp
new file mode 100644
index 000000000..1790b169c
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/buy-and-trade.webp differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/code_icon.png b/system/web-optional/MeliaGUI/public/assets/img/code_icon.png
new file mode 100644
index 000000000..c9d2b923b
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/code_icon.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/country-icon/eng.png b/system/web-optional/MeliaGUI/public/assets/img/country-icon/eng.png
new file mode 100644
index 000000000..7e4f33348
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/country-icon/eng.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/2share.png b/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/2share.png
new file mode 100644
index 000000000..143a943a3
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/2share.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/bitcoin-asia.png b/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/bitcoin-asia.png
new file mode 100644
index 000000000..ec377d69f
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/bitcoin-asia.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/bitcoin.png b/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/bitcoin.png
new file mode 100644
index 000000000..f489c2f1a
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/bitcoin.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/dogecoin.png b/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/dogecoin.png
new file mode 100644
index 000000000..38514dee0
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/dogecoin.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/ethereum.png b/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/ethereum.png
new file mode 100644
index 000000000..235fc05f0
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/ethereum.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/frog.png b/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/frog.png
new file mode 100644
index 000000000..5b75f5001
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/frog.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/metacraft.png b/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/metacraft.png
new file mode 100644
index 000000000..921bc3060
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/metacraft.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/moonrock.png b/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/moonrock.png
new file mode 100644
index 000000000..547575b90
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/moonrock.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/musk-doge.png b/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/musk-doge.png
new file mode 100644
index 000000000..b5841bd82
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/musk-doge.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/ninjafloki.png b/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/ninjafloki.png
new file mode 100644
index 000000000..2bf8808ca
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/ninjafloki.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/pappay.png b/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/pappay.png
new file mode 100644
index 000000000..cb7b91778
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/pappay.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/solana.png b/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/solana.png
new file mode 100644
index 000000000..42a9664e7
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/crypto-icon/solana.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/development.png b/system/web-optional/MeliaGUI/public/assets/img/development.png
new file mode 100644
index 000000000..8bc3fc4e1
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/development.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/faq.webp b/system/web-optional/MeliaGUI/public/assets/img/faq.webp
new file mode 100644
index 000000000..c47622bae
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/faq.webp differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/getting-started/arrow.png b/system/web-optional/MeliaGUI/public/assets/img/getting-started/arrow.png
new file mode 100644
index 000000000..9a55b1dac
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/getting-started/arrow.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/getting-started/buy-crypto.png b/system/web-optional/MeliaGUI/public/assets/img/getting-started/buy-crypto.png
new file mode 100644
index 000000000..77e4b5a00
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/getting-started/buy-crypto.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/getting-started/fund.png b/system/web-optional/MeliaGUI/public/assets/img/getting-started/fund.png
new file mode 100644
index 000000000..19481e45e
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/getting-started/fund.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/getting-started/sign-up.png b/system/web-optional/MeliaGUI/public/assets/img/getting-started/sign-up.png
new file mode 100644
index 000000000..e69ac8287
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/getting-started/sign-up.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/github/SalmanTKhan.png b/system/web-optional/MeliaGUI/public/assets/img/github/SalmanTKhan.png
new file mode 100644
index 000000000..7935efdb6
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/github/SalmanTKhan.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/github/Tachiorz.png b/system/web-optional/MeliaGUI/public/assets/img/github/Tachiorz.png
new file mode 100644
index 000000000..0e12b3b07
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/github/Tachiorz.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/github/avatar_3271.png b/system/web-optional/MeliaGUI/public/assets/img/github/avatar_3271.png
new file mode 100644
index 000000000..191f164b0
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/github/avatar_3271.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/github/exec.png b/system/web-optional/MeliaGUI/public/assets/img/github/exec.png
new file mode 100644
index 000000000..ab04977ff
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/github/exec.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/github/felipecastagnaro.jpeg b/system/web-optional/MeliaGUI/public/assets/img/github/felipecastagnaro.jpeg
new file mode 100644
index 000000000..f3de22c03
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/github/felipecastagnaro.jpeg differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/github/kenedos.jpeg b/system/web-optional/MeliaGUI/public/assets/img/github/kenedos.jpeg
new file mode 100644
index 000000000..b563717e4
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/github/kenedos.jpeg differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/hero-image.webp b/system/web-optional/MeliaGUI/public/assets/img/hero-image.webp
new file mode 100644
index 000000000..7c3f8f311
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/hero-image.webp differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/industry-leading-security.webp b/system/web-optional/MeliaGUI/public/assets/img/industry-leading-security.webp
new file mode 100644
index 000000000..4bcdcfa38
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/industry-leading-security.webp differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/logo/favicon.svg b/system/web-optional/MeliaGUI/public/assets/img/logo/favicon.svg
new file mode 100644
index 000000000..3638fadee
--- /dev/null
+++ b/system/web-optional/MeliaGUI/public/assets/img/logo/favicon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/system/web-optional/MeliaGUI/public/assets/img/logo/nefa.svg b/system/web-optional/MeliaGUI/public/assets/img/logo/nefa.svg
new file mode 100644
index 000000000..ca870dc66
--- /dev/null
+++ b/system/web-optional/MeliaGUI/public/assets/img/logo/nefa.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/system/web-optional/MeliaGUI/public/assets/img/logo_big.png b/system/web-optional/MeliaGUI/public/assets/img/logo_big.png
new file mode 100644
index 000000000..9f30da089
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/logo_big.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/logo_black.png b/system/web-optional/MeliaGUI/public/assets/img/logo_black.png
new file mode 100644
index 000000000..64d26bc37
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/logo_black.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/logo_white.png b/system/web-optional/MeliaGUI/public/assets/img/logo_white.png
new file mode 100644
index 000000000..09eda9744
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/logo_white.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/nefa-cc.webp b/system/web-optional/MeliaGUI/public/assets/img/nefa-cc.webp
new file mode 100644
index 000000000..c3f5f5a35
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/nefa-cc.webp differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/partner/background.png b/system/web-optional/MeliaGUI/public/assets/img/partner/background.png
new file mode 100644
index 000000000..cf198b9cf
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/partner/background.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/partner/clever.png b/system/web-optional/MeliaGUI/public/assets/img/partner/clever.png
new file mode 100644
index 000000000..1d66d1636
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/partner/clever.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/partner/diamon-cutts.png b/system/web-optional/MeliaGUI/public/assets/img/partner/diamon-cutts.png
new file mode 100644
index 000000000..18c207980
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/partner/diamon-cutts.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/partner/gambio.png b/system/web-optional/MeliaGUI/public/assets/img/partner/gambio.png
new file mode 100644
index 000000000..b8d3e6718
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/partner/gambio.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/partner/swiss-finance.png b/system/web-optional/MeliaGUI/public/assets/img/partner/swiss-finance.png
new file mode 100644
index 000000000..293df7929
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/partner/swiss-finance.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/pattern/ellipse-1.png b/system/web-optional/MeliaGUI/public/assets/img/pattern/ellipse-1.png
new file mode 100644
index 000000000..571f1a95b
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/pattern/ellipse-1.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/pattern/ellipse-2.png b/system/web-optional/MeliaGUI/public/assets/img/pattern/ellipse-2.png
new file mode 100644
index 000000000..56e532260
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/pattern/ellipse-2.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/pattern/ellipse-3.png b/system/web-optional/MeliaGUI/public/assets/img/pattern/ellipse-3.png
new file mode 100644
index 000000000..01ce7abf4
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/pattern/ellipse-3.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/pattern/star.png b/system/web-optional/MeliaGUI/public/assets/img/pattern/star.png
new file mode 100644
index 000000000..2083134d2
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/pattern/star.png differ
diff --git a/system/web-optional/MeliaGUI/public/assets/img/thumbnail.jpg b/system/web-optional/MeliaGUI/public/assets/img/thumbnail.jpg
new file mode 100644
index 000000000..dc654f8a6
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/assets/img/thumbnail.jpg differ
diff --git a/system/web-optional/MeliaGUI/public/dump.sql b/system/web-optional/MeliaGUI/public/dump.sql
new file mode 100644
index 000000000..e69de29bb
diff --git a/system/web-optional/MeliaGUI/public/favicon.ico b/system/web-optional/MeliaGUI/public/favicon.ico
new file mode 100644
index 000000000..1a5526580
Binary files /dev/null and b/system/web-optional/MeliaGUI/public/favicon.ico differ
diff --git a/system/web-optional/MeliaGUI/public/index.php b/system/web-optional/MeliaGUI/public/index.php
new file mode 100644
index 000000000..1d69f3a28
--- /dev/null
+++ b/system/web-optional/MeliaGUI/public/index.php
@@ -0,0 +1,55 @@
+make(Kernel::class);
+
+$response = $kernel->handle(
+ $request = Request::capture()
+)->send();
+
+$kernel->terminate($request, $response);
diff --git a/system/web-optional/MeliaGUI/public/robots.txt b/system/web-optional/MeliaGUI/public/robots.txt
new file mode 100644
index 000000000..eb0536286
--- /dev/null
+++ b/system/web-optional/MeliaGUI/public/robots.txt
@@ -0,0 +1,2 @@
+User-agent: *
+Disallow:
diff --git a/system/web-optional/MeliaGUI/resources/css/_checkbox-radio-switch.css b/system/web-optional/MeliaGUI/resources/css/_checkbox-radio-switch.css
new file mode 100644
index 000000000..a0ed24d9b
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/css/_checkbox-radio-switch.css
@@ -0,0 +1,59 @@
+@layer components {
+ .checkbox, .radio, .switch {
+ @apply inline-flex items-center cursor-pointer relative;
+ }
+
+ .checkbox input[type=checkbox], .radio input[type=radio], .switch input[type=checkbox] {
+ @apply absolute left-0 opacity-0;
+ }
+
+ .checkbox input[type=checkbox]+.check, .radio input[type=radio]+.check, .switch input[type=checkbox]+.check {
+ @apply border-gray-700 border transition-colors duration-200 dark:bg-slate-800;
+ }
+
+ .checkbox input[type=checkbox]:focus+.check, .radio input[type=radio]:focus+.check, .switch input[type=checkbox]:focus+.check {
+ @apply ring ring-blue-700;
+ }
+
+ .checkbox input[type=checkbox]+.check, .radio input[type=radio]+.check {
+ @apply block w-5 h-5;
+ }
+
+ .checkbox input[type=checkbox]+.check {
+ @apply rounded;
+ }
+
+ .switch input[type=checkbox]+.check {
+ @apply flex items-center shrink-0 w-12 h-6 p-0.5 bg-gray-200;
+ }
+
+ .radio input[type=radio]+.check, .switch input[type=checkbox]+.check, .switch input[type=checkbox]+.check:before {
+ @apply rounded-full;
+ }
+
+ .checkbox input[type=checkbox]:checked+.check, .radio input[type=radio]:checked+.check {
+ @apply bg-no-repeat bg-center border-4;
+ }
+
+ .checkbox input[type=checkbox]:checked+.check {
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:%23fff' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E");
+ }
+
+ .radio input[type=radio]:checked+.check {
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z' /%3E%3C/svg%3E");
+ }
+
+ .switch input[type=checkbox]:checked+.check, .checkbox input[type=checkbox]:checked+.check, .radio input[type=radio]:checked+.check {
+ @apply bg-blue-600 border-blue-600;
+ }
+
+ .switch input[type=checkbox]+.check:before {
+ content: '';
+ @apply block w-5 h-5 bg-white border border-gray-700;
+ }
+
+ .switch input[type=checkbox]:checked+.check:before {
+ transform: translate3d(110%, 0 ,0);
+ @apply border-blue-600;
+ }
+}
diff --git a/system/web-optional/MeliaGUI/resources/css/_disable_caret.css b/system/web-optional/MeliaGUI/resources/css/_disable_caret.css
new file mode 100644
index 000000000..1753e881f
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/css/_disable_caret.css
@@ -0,0 +1,6 @@
+.disableCaret {
+ -webkit-user-select: none; /* Chrome all / Safari all */
+ -moz-user-select: none; /* Firefox all */
+ -ms-user-select: none; /* IE 10+ */
+ user-select: none;
+}
diff --git a/system/web-optional/MeliaGUI/resources/css/_progress.css b/system/web-optional/MeliaGUI/resources/css/_progress.css
new file mode 100644
index 000000000..65d6796e8
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/css/_progress.css
@@ -0,0 +1,21 @@
+@layer base {
+ progress {
+ @apply h-3 rounded-full overflow-hidden;
+ }
+
+ progress::-webkit-progress-bar {
+ @apply bg-blue-200;
+ }
+
+ progress::-webkit-progress-value {
+ @apply bg-blue-500;
+ }
+
+ progress::-moz-progress-bar {
+ @apply bg-blue-500;
+ }
+
+ progress::-ms-fill {
+ @apply bg-blue-500 border-0;
+ }
+}
diff --git a/system/web-optional/MeliaGUI/resources/css/_scrollbars.css b/system/web-optional/MeliaGUI/resources/css/_scrollbars.css
new file mode 100644
index 000000000..bf9fd85fa
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/css/_scrollbars.css
@@ -0,0 +1,41 @@
+@layer base {
+ html {
+ scrollbar-width: thin;
+ scrollbar-color: rgb(71, 85, 105) rgb(30, 41, 59);
+ }
+
+ body::-webkit-scrollbar {
+ width: 8px;
+ height: 8px;
+ }
+
+ body::-webkit-scrollbar-track {
+ @apply bg-slate-800;
+ }
+
+ body::-webkit-scrollbar-thumb {
+ @apply bg-slate-600;
+ }
+
+ body::-webkit-scrollbar-thumb:hover {
+ @apply bg-slate-500;
+ }
+}
+
+@layer utilities {
+ .dark-scrollbars-compat {
+ scrollbar-color: rgb(71, 85, 105) rgb(30, 41, 59);
+ }
+
+ .dark-scrollbars::-webkit-scrollbar-track {
+ @apply bg-slate-800;
+ }
+
+ .dark-scrollbars::-webkit-scrollbar-thumb {
+ @apply bg-slate-600;
+ }
+
+ .dark-scrollbars::-webkit-scrollbar-thumb:hover {
+ @apply bg-slate-500;
+ }
+}
diff --git a/system/web-optional/MeliaGUI/resources/css/_table.css b/system/web-optional/MeliaGUI/resources/css/_table.css
new file mode 100644
index 000000000..962b9af4c
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/css/_table.css
@@ -0,0 +1,48 @@
+@layer base {
+ table {
+ @apply w-full;
+ }
+
+ thead {
+ @apply hidden lg:table-header-group;
+ }
+
+ tr {
+ @apply max-w-full block relative border-b-4 border-gray-100
+ lg:table-row lg:border-b-0 dark:border-slate-800;
+ }
+
+ tr:last-child {
+ @apply border-b-0;
+ }
+
+ td:not(:first-child) {
+ @apply lg:border-l lg:border-t-0 lg:border-r-0 lg:border-b-0 lg:border-gray-100 lg:dark:border-slate-700;
+ }
+
+ th {
+ @apply lg:text-left lg:p-3;
+ }
+
+ td {
+ @apply flex justify-between text-right py-3 px-4 align-top border-b border-gray-100
+ lg:table-cell lg:text-left lg:p-3 lg:align-middle lg:border-b-0 dark:border-slate-800;
+ }
+
+ td:last-child {
+ @apply border-b-0;
+ }
+
+ tbody tr, tbody tr:nth-child(odd) {
+ @apply lg:hover:bg-gray-100 lg:dark:hover:bg-slate-700/70;
+ }
+
+ tbody tr:nth-child(odd) {
+ @apply lg:bg-gray-100/50 lg:dark:bg-slate-800/50;
+ }
+
+ td:before {
+ content: attr(data-label);
+ @apply font-semibold pr-3 text-left lg:hidden;
+ }
+}
diff --git a/system/web-optional/MeliaGUI/resources/css/app.css b/system/web-optional/MeliaGUI/resources/css/app.css
new file mode 100644
index 000000000..49bc22147
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/css/app.css
@@ -0,0 +1,9 @@
+@import '_checkbox-radio-switch.css';
+@import '_progress.css';
+@import '_scrollbars.css';
+@import '_table.css';
+@import '_disable_caret.css';
+
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
diff --git a/system/web-optional/MeliaGUI/resources/css/tailwind/_base.css b/system/web-optional/MeliaGUI/resources/css/tailwind/_base.css
new file mode 100644
index 000000000..2f02db53f
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/css/tailwind/_base.css
@@ -0,0 +1 @@
+@tailwind base;
diff --git a/system/web-optional/MeliaGUI/resources/css/tailwind/_components.css b/system/web-optional/MeliaGUI/resources/css/tailwind/_components.css
new file mode 100644
index 000000000..020aabafd
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/css/tailwind/_components.css
@@ -0,0 +1 @@
+@tailwind components;
diff --git a/system/web-optional/MeliaGUI/resources/css/tailwind/_utilities.css b/system/web-optional/MeliaGUI/resources/css/tailwind/_utilities.css
new file mode 100644
index 000000000..65dd5f63a
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/css/tailwind/_utilities.css
@@ -0,0 +1 @@
+@tailwind utilities;
diff --git a/system/web-optional/MeliaGUI/resources/js/Layouts/LayoutAuthenticated.vue b/system/web-optional/MeliaGUI/resources/js/Layouts/LayoutAuthenticated.vue
new file mode 100644
index 000000000..4c98c1145
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/Layouts/LayoutAuthenticated.vue
@@ -0,0 +1,94 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/Layouts/LayoutGuest.vue b/system/web-optional/MeliaGUI/resources/js/Layouts/LayoutGuest.vue
new file mode 100644
index 000000000..b0d1baae1
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/Layouts/LayoutGuest.vue
@@ -0,0 +1,22 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/Pages/AdminDashboard.vue b/system/web-optional/MeliaGUI/resources/js/Pages/AdminDashboard.vue
new file mode 100644
index 000000000..9be306663
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/Pages/AdminDashboard.vue
@@ -0,0 +1,493 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ props.status.message }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Top 10 most rich teams
+
+
+
+
+
+
+
+
+
+
+
+ All chosen jobs
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/Pages/Auth/ConfirmPassword.vue b/system/web-optional/MeliaGUI/resources/js/Pages/Auth/ConfirmPassword.vue
new file mode 100644
index 000000000..503271454
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/Pages/Auth/ConfirmPassword.vue
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+ This is a secure area of the application. Please confirm your password
+ before continuing.
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/Pages/Auth/ForgotPassword.vue b/system/web-optional/MeliaGUI/resources/js/Pages/Auth/ForgotPassword.vue
new file mode 100644
index 000000000..e6242db92
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/Pages/Auth/ForgotPassword.vue
@@ -0,0 +1,86 @@
+
+
+
+
+
+
+
+
+ {{ status }}
+
+
+
+
+
+ Forgot your password? No problem. Just let us know your email address
+ and we will email you a password reset link that will allow you to
+ choose a new one.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/Pages/Auth/ResetPassword.vue b/system/web-optional/MeliaGUI/resources/js/Pages/Auth/ResetPassword.vue
new file mode 100644
index 000000000..97a0c2002
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/Pages/Auth/ResetPassword.vue
@@ -0,0 +1,109 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/Pages/Auth/VerifyEmail.vue b/system/web-optional/MeliaGUI/resources/js/Pages/Auth/VerifyEmail.vue
new file mode 100644
index 000000000..557c36b29
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/Pages/Auth/VerifyEmail.vue
@@ -0,0 +1,62 @@
+
+
+
+
+
+
+
+ Thanks for signing up! Before getting started, could you verify your email
+ address by clicking on the link we just emailed to you? If you didn't
+ receive the email, we will gladly send you another.
+
+
+
+ A new verification link has been sent to the email address you provided
+ during registration.
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/Pages/ConfigsView.vue b/system/web-optional/MeliaGUI/resources/js/Pages/ConfigsView.vue
new file mode 100644
index 000000000..d219cea97
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/Pages/ConfigsView.vue
@@ -0,0 +1,480 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ props.status.message }}
+
+
+
+
+
+ Can't change configs while the server is offline
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/Pages/Dashboard.vue b/system/web-optional/MeliaGUI/resources/js/Pages/Dashboard.vue
new file mode 100644
index 000000000..ed8e7f8cc
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/Pages/Dashboard.vue
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/Pages/InventoryView.vue b/system/web-optional/MeliaGUI/resources/js/Pages/InventoryView.vue
new file mode 100644
index 000000000..17e6951ca
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/Pages/InventoryView.vue
@@ -0,0 +1,190 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ props.status.message }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/Pages/LoginView.vue b/system/web-optional/MeliaGUI/resources/js/Pages/LoginView.vue
new file mode 100644
index 000000000..e8374275f
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/Pages/LoginView.vue
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ status }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Forgot your password?
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/Pages/Profile/Edit.vue b/system/web-optional/MeliaGUI/resources/js/Pages/Profile/Edit.vue
new file mode 100644
index 000000000..cab651c6e
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/Pages/Profile/Edit.vue
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+ Profile
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/Pages/Profile/Partials/UpdatePasswordForm.vue b/system/web-optional/MeliaGUI/resources/js/Pages/Profile/Partials/UpdatePasswordForm.vue
new file mode 100644
index 000000000..910b58f3e
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/Pages/Profile/Partials/UpdatePasswordForm.vue
@@ -0,0 +1,107 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.vue b/system/web-optional/MeliaGUI/resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.vue
new file mode 100644
index 000000000..af02b7370
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.vue
@@ -0,0 +1,91 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/Pages/ProfileView.vue b/system/web-optional/MeliaGUI/resources/js/Pages/ProfileView.vue
new file mode 100644
index 000000000..9441d6622
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/Pages/ProfileView.vue
@@ -0,0 +1,242 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Your email address is unverified.
+
+
+ Click here to re-send the verification email.
+
+
+
+ A new verification link has been sent to your email address.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Saved.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Password Updated.
+
+
+
+
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/app.js b/system/web-optional/MeliaGUI/resources/js/app.js
new file mode 100644
index 000000000..b71e7f724
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/app.js
@@ -0,0 +1,29 @@
+import './bootstrap'
+import '../css/app.css'
+
+import { createApp, h } from 'vue'
+import { createInertiaApp } from '@inertiajs/vue3'
+import { resolvePageComponent } from 'laravel-vite-plugin/inertia-helpers'
+import { ZiggyVue } from '../../vendor/tightenco/ziggy/dist/vue.m'
+import { useStore } from '@/store.js'
+
+const appName = import.meta.env.APP_NAME || 'Melia'
+
+createInertiaApp({
+ title: (title) => `${title} - ${appName}`,
+ resolve: (name) =>
+ resolvePageComponent(
+ `./Pages/${name}.vue`,
+ import.meta.glob('./Pages/**/*.vue'),
+ ),
+ setup({ el, App, props, plugin }) {
+ return createApp({ render: () => h(App, props) })
+ .use(plugin)
+ .use(ZiggyVue, Ziggy)
+ .use(useStore)
+ .mount(el)
+ },
+ progress: {
+ color: '#4B5563',
+ },
+})
diff --git a/system/web-optional/MeliaGUI/resources/js/bootstrap.js b/system/web-optional/MeliaGUI/resources/js/bootstrap.js
new file mode 100644
index 000000000..bd7d5b0ef
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/bootstrap.js
@@ -0,0 +1,33 @@
+import 'bootstrap';
+
+/**
+ * We'll load the axios HTTP library which allows us to easily issue requests
+ * to our Laravel back-end. This library automatically handles sending the
+ * CSRF token as a header based on the value of the "XSRF" token cookie.
+ */
+
+import axios from 'axios';
+window.axios = axios;
+
+window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
+
+/**
+ * Echo exposes an expressive API for subscribing to channels and listening
+ * for events that are broadcast by Laravel. Echo and event broadcasting
+ * allows your team to easily build robust real-time web applications.
+ */
+
+// import Echo from 'laravel-echo';
+
+// import Pusher from 'pusher-js';
+// window.Pusher = Pusher;
+
+// window.Echo = new Echo({
+// broadcaster: 'pusher',
+// key: import.meta.env.VITE_PUSHER_APP_KEY,
+// wsHost: import.meta.env.VITE_PUSHER_HOST ?? `ws-${import.meta.env.VITE_PUSHER_APP_CLUSTER}.pusher.com`,
+// wsPort: import.meta.env.VITE_PUSHER_PORT ?? 80,
+// wssPort: import.meta.env.VITE_PUSHER_PORT ?? 443,
+// forceTLS: (import.meta.env.VITE_PUSHER_SCHEME ?? 'https') === 'https',
+// enabledTransports: ['ws', 'wss'],
+// });
diff --git a/system/web-optional/MeliaGUI/resources/js/colors.js b/system/web-optional/MeliaGUI/resources/js/colors.js
new file mode 100644
index 000000000..a2945a054
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/colors.js
@@ -0,0 +1,139 @@
+export const gradientBgBase = "bg-gradient-to-tr";
+export const gradientBgPurplePink = `${gradientBgBase} from-purple-400 via-pink-500 to-red-500`;
+export const gradientBgDark = `${gradientBgBase} from-slate-700 via-slate-900 to-slate-800`;
+export const gradientBgPinkRed = `${gradientBgBase} from-pink-400 via-red-500 to-yellow-500`;
+
+export const colorsBgLight = {
+ white: "bg-white text-black",
+ light: "bg-white text-black dark:bg-slate-900/70 dark:text-white",
+ contrast: "bg-gray-800 text-white dark:bg-white",
+ success: "bg-emerald-500 border-emerald-500 text-white",
+ danger: "bg-red-500 border-red-500 text-white",
+ warning: "bg-yellow-500 border-yellow-500 text-white",
+ info: "bg-blue-500 border-blue-500 text-black dark:text-white",
+};
+
+export const colorsText = {
+ white: "text-black dark:text-slate-100",
+ light: "text-gray-700 dark:text-slate-400",
+ contrast: "dark:text-white",
+ success: "text-emerald-500",
+ danger: "text-red-500",
+ warning: "text-yellow-500",
+ info: "text-black dark:text-white",
+};
+
+export const colorsOutline = {
+ white: [colorsText.white, "border-gray-100"],
+ light: [colorsText.light, "border-gray-100"],
+ contrast: [colorsText.contrast, "border-gray-900 dark:border-slate-100"],
+ success: [colorsText.success, "border-emerald-500"],
+ danger: [colorsText.danger, "border-red-500"],
+ warning: [colorsText.warning, "border-yellow-500"],
+ info: [colorsText.info, "border-blue-500"],
+};
+
+export const getButtonColor = (
+ color,
+ isOutlined,
+ hasHover,
+ isActive = false
+) => {
+ const colors = {
+ ring: {
+ white: "ring-gray-200 dark:ring-gray-500",
+ whiteDark: "ring-gray-200 dark:ring-gray-500",
+ lightDark: "ring-gray-200 dark:ring-gray-500",
+ contrast: "ring-gray-300 dark:ring-gray-400",
+ success: "ring-emerald-300 dark:ring-emerald-700",
+ danger: "ring-red-300 dark:ring-red-700",
+ warning: "ring-yellow-300 dark:ring-yellow-700",
+ info: "text-black dark:text-white ring-blue-300 dark:ring-blue-700",
+ },
+ active: {
+ white: "bg-gray-100",
+ whiteDark: "bg-gray-100 dark:bg-slate-800",
+ lightDark: "bg-gray-200 dark:bg-slate-700",
+ contrast: "bg-gray-700 dark:bg-slate-100",
+ success: "bg-emerald-700 dark:bg-emerald-600",
+ danger: "bg-red-700 dark:bg-red-600",
+ warning: "bg-yellow-700 dark:bg-yellow-600",
+ info: "bg-blue-700 dark:bg-blue-600",
+ },
+ bg: {
+ white: "bg-white text-black",
+ whiteDark: "bg-white text-black dark:bg-slate-900 dark:text-white",
+ lightDark: "bg-gray-100 text-black dark:bg-slate-800 dark:text-white",
+ contrast: "bg-gray-800 text-white dark:bg-white",
+ success: "bg-emerald-600 dark:bg-emerald-500 text-white",
+ danger: "bg-red-600 dark:bg-red-500 text-white",
+ warning: "bg-yellow-600 dark:bg-yellow-500 text-white",
+ info: "bg-blue-600 dark:bg-blue-500 text-black dark:text-white",
+ },
+ bgHover: {
+ white: "hover:bg-gray-100",
+ whiteDark: "hover:bg-gray-100 hover:dark:bg-slate-800",
+ lightDark: "hover:bg-gray-200 hover:dark:bg-slate-700",
+ contrast: "hover:bg-gray-700 hover:dark:bg-slate-100",
+ success:
+ "hover:bg-emerald-700 hover:border-emerald-700 hover:dark:bg-emerald-600 hover:dark:border-emerald-600",
+ danger:
+ "hover:bg-red-700 hover:border-red-700 hover:dark:bg-red-600 hover:dark:border-red-600",
+ warning:
+ "hover:bg-yellow-700 hover:border-yellow-700 hover:dark:bg-yellow-600 hover:dark:border-yellow-600",
+ info:
+ "hover:bg-blue-700 hover:border-blue-700 hover:dark:bg-blue-600 hover:dark:border-blue-600",
+ },
+ borders: {
+ white: "border-white",
+ whiteDark: "border-white dark:border-slate-900",
+ lightDark: "border-gray-100 dark:border-slate-800",
+ contrast: "border-gray-800 dark:border-white",
+ success: "border-emerald-600 dark:border-emerald-500",
+ danger: "border-red-600 dark:border-red-500",
+ warning: "border-yellow-600 dark:border-yellow-500",
+ info: "border-blue-600 dark:border-blue-500",
+ },
+ text: {
+ contrast: "dark:text-slate-100",
+ success: "text-emerald-600 dark:text-emerald-500",
+ danger: "text-red-600 dark:text-red-500",
+ warning: "text-yellow-600 dark:text-yellow-500",
+ info: "text-black dark:text-white",
+ },
+ outlineHover: {
+ contrast:
+ "hover:bg-gray-800 hover:text-gray-100 hover:dark:bg-slate-100 hover:dark:text-black",
+ success:
+ "hover:bg-emerald-600 hover:text-white hover:text-white hover:dark:text-white hover:dark:border-emerald-600",
+ danger:
+ "hover:bg-red-600 hover:text-white hover:text-white hover:dark:text-white hover:dark:border-red-600",
+ warning:
+ "hover:bg-yellow-600 hover:text-white hover:text-white hover:dark:text-white hover:dark:border-yellow-600",
+ info: "hover:bg-blue-600 hover:text-blue hover:dark:text-blue hover:dark:border-blue-600 text-black dark:text-white",
+ },
+ };
+
+ if (!colors.bg[color]) {
+ return color;
+ }
+
+ const isOutlinedProcessed =
+ isOutlined && ["white", "whiteDark", "lightDark"].indexOf(color) < 0;
+
+ const base = [colors.borders[color], colors.ring[color]];
+
+ if (isActive) {
+ base.push(colors.active[color]);
+ } else {
+ base.push(isOutlinedProcessed ? colors.text[color] : colors.bg[color]);
+ }
+
+ if (hasHover) {
+ base.push(
+ isOutlinedProcessed ? colors.outlineHover[color] : colors.bgHover[color]
+ );
+ }
+
+ return base;
+};
diff --git a/system/web-optional/MeliaGUI/resources/js/components/AsideMenu.vue b/system/web-optional/MeliaGUI/resources/js/components/AsideMenu.vue
new file mode 100644
index 000000000..6e89a1932
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/AsideMenu.vue
@@ -0,0 +1,40 @@
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/AsideMenuItem.vue b/system/web-optional/MeliaGUI/resources/js/components/AsideMenuItem.vue
new file mode 100644
index 000000000..afc811902
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/AsideMenuItem.vue
@@ -0,0 +1,99 @@
+
+
+
+
+
+
+ {{ item.label }}
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/AsideMenuLayer.vue b/system/web-optional/MeliaGUI/resources/js/components/AsideMenuLayer.vue
new file mode 100644
index 000000000..2007f51d2
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/AsideMenuLayer.vue
@@ -0,0 +1,77 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/AsideMenuList.vue b/system/web-optional/MeliaGUI/resources/js/components/AsideMenuList.vue
new file mode 100644
index 000000000..41f4cd742
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/AsideMenuList.vue
@@ -0,0 +1,29 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/BaseButton.vue b/system/web-optional/MeliaGUI/resources/js/components/BaseButton.vue
new file mode 100644
index 000000000..45cd08b7f
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/BaseButton.vue
@@ -0,0 +1,127 @@
+
+
+
+
+
+ {{ label }}
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/BaseButtons.vue b/system/web-optional/MeliaGUI/resources/js/components/BaseButtons.vue
new file mode 100644
index 000000000..5cf1af6a1
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/BaseButtons.vue
@@ -0,0 +1,60 @@
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/BaseDivider.vue b/system/web-optional/MeliaGUI/resources/js/components/BaseDivider.vue
new file mode 100644
index 000000000..d3af35cb5
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/BaseDivider.vue
@@ -0,0 +1,19 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/BaseIcon.vue b/system/web-optional/MeliaGUI/resources/js/components/BaseIcon.vue
new file mode 100644
index 000000000..e3141f5fa
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/BaseIcon.vue
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/BaseLevel.vue b/system/web-optional/MeliaGUI/resources/js/components/BaseLevel.vue
new file mode 100644
index 000000000..493351ad0
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/BaseLevel.vue
@@ -0,0 +1,40 @@
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/CardBox.vue b/system/web-optional/MeliaGUI/resources/js/components/CardBox.vue
new file mode 100644
index 000000000..f2b30b612
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/CardBox.vue
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/CardBoxAction.vue b/system/web-optional/MeliaGUI/resources/js/components/CardBoxAction.vue
new file mode 100644
index 000000000..91599e80c
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/CardBoxAction.vue
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+
{{ title }}
+
+ {{ description }}
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/CardBoxClient.vue b/system/web-optional/MeliaGUI/resources/js/components/CardBoxClient.vue
new file mode 100644
index 000000000..b29ece259
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/CardBoxClient.vue
@@ -0,0 +1,89 @@
+
+
+
+
+
+
+
+
+
+ {{ name }}
+
+
+ {{ date }} @ {{ login }}
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/CardBoxComponentBody.vue b/system/web-optional/MeliaGUI/resources/js/components/CardBoxComponentBody.vue
new file mode 100644
index 000000000..8daaec40e
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/CardBoxComponentBody.vue
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/CardBoxComponentEmpty.vue b/system/web-optional/MeliaGUI/resources/js/components/CardBoxComponentEmpty.vue
new file mode 100644
index 000000000..f4c07a8f0
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/CardBoxComponentEmpty.vue
@@ -0,0 +1,5 @@
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/CardBoxComponentFooter.vue b/system/web-optional/MeliaGUI/resources/js/components/CardBoxComponentFooter.vue
new file mode 100644
index 000000000..71dd3eef8
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/CardBoxComponentFooter.vue
@@ -0,0 +1,5 @@
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/CardBoxComponentHeader.vue b/system/web-optional/MeliaGUI/resources/js/components/CardBoxComponentHeader.vue
new file mode 100644
index 000000000..18c15092f
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/CardBoxComponentHeader.vue
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+ {{ title }}
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/CardBoxComponentTitle.vue b/system/web-optional/MeliaGUI/resources/js/components/CardBoxComponentTitle.vue
new file mode 100644
index 000000000..2ecaf0718
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/CardBoxComponentTitle.vue
@@ -0,0 +1,17 @@
+
+
+
+
+
+ {{ title }}
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/CardBoxModal.vue b/system/web-optional/MeliaGUI/resources/js/components/CardBoxModal.vue
new file mode 100644
index 000000000..b6e3f6fe3
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/CardBoxModal.vue
@@ -0,0 +1,94 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/CardBoxTransaction.vue b/system/web-optional/MeliaGUI/resources/js/components/CardBoxTransaction.vue
new file mode 100644
index 000000000..70a3e203e
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/CardBoxTransaction.vue
@@ -0,0 +1,88 @@
+
+
+
+
+
+
+
+
+
${{ amount }}
+
+ {{ date }} via {{ business }}
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/CardBoxWidget.vue b/system/web-optional/MeliaGUI/resources/js/components/CardBoxWidget.vue
new file mode 100644
index 000000000..bbdd92e89
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/CardBoxWidget.vue
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+ {{ label }}
+
+
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/Charts/JobsChart.vue b/system/web-optional/MeliaGUI/resources/js/components/Charts/JobsChart.vue
new file mode 100644
index 000000000..dff173cd6
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/Charts/JobsChart.vue
@@ -0,0 +1,63 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/Charts/LineChart.vue b/system/web-optional/MeliaGUI/resources/js/components/Charts/LineChart.vue
new file mode 100644
index 000000000..c24a5cb89
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/Charts/LineChart.vue
@@ -0,0 +1,69 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/Charts/SilverChart.vue b/system/web-optional/MeliaGUI/resources/js/components/Charts/SilverChart.vue
new file mode 100644
index 000000000..b241a5cd7
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/Charts/SilverChart.vue
@@ -0,0 +1,101 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/Charts/chart.config.js b/system/web-optional/MeliaGUI/resources/js/components/Charts/chart.config.js
new file mode 100644
index 000000000..2fba5e8ba
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/Charts/chart.config.js
@@ -0,0 +1,54 @@
+export const chartColors = {
+ default: {
+ primary: '#00D1B2',
+ info: '#209CEE',
+ danger: '#FF3860',
+ },
+}
+
+const randomChartData = (n) => {
+ const data = []
+
+ for (let i = 0; i < n; i++) {
+ data.push(Math.round(Math.random() * 200))
+ }
+
+ return data
+}
+
+const datasetObject = (color, points) => {
+ return {
+ fill: false,
+ borderColor: chartColors.default[color],
+ borderWidth: 2,
+ borderDash: [],
+ borderDashOffset: 0.0,
+ pointBackgroundColor: chartColors.default[color],
+ pointBorderColor: 'rgba(255,255,255,0)',
+ pointHoverBackgroundColor: chartColors.default[color],
+ pointBorderWidth: 20,
+ pointHoverRadius: 4,
+ pointHoverBorderWidth: 15,
+ pointRadius: 4,
+ data: randomChartData(points),
+ tension: 0.5,
+ cubicInterpolationMode: 'default',
+ }
+}
+
+export const sampleChartData = (points = 9) => {
+ const labels = []
+
+ for (let i = 1; i <= points; i++) {
+ labels.push(`0${i}`)
+ }
+
+ return {
+ labels,
+ datasets: [
+ datasetObject('primary', points),
+ datasetObject('info', points),
+ datasetObject('danger', points),
+ ],
+ }
+}
diff --git a/system/web-optional/MeliaGUI/resources/js/components/Checkbox.vue b/system/web-optional/MeliaGUI/resources/js/components/Checkbox.vue
new file mode 100644
index 000000000..22672c1af
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/Checkbox.vue
@@ -0,0 +1,34 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/DangerButton.vue b/system/web-optional/MeliaGUI/resources/js/components/DangerButton.vue
new file mode 100644
index 000000000..721c4ff49
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/DangerButton.vue
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/Dropdown.vue b/system/web-optional/MeliaGUI/resources/js/components/Dropdown.vue
new file mode 100644
index 000000000..c6566e8d5
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/Dropdown.vue
@@ -0,0 +1,80 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/DropdownLink.vue b/system/web-optional/MeliaGUI/resources/js/components/DropdownLink.vue
new file mode 100644
index 000000000..5eab0f6c2
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/DropdownLink.vue
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/ExampleComponent.vue b/system/web-optional/MeliaGUI/resources/js/components/ExampleComponent.vue
new file mode 100644
index 000000000..ad26aad36
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/ExampleComponent.vue
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
I'm an example component.
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/FooterBar.vue b/system/web-optional/MeliaGUI/resources/js/components/FooterBar.vue
new file mode 100644
index 000000000..ff27d965e
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/FooterBar.vue
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
©{{ year }},
+ Melia .
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/FormCheckRadio.vue b/system/web-optional/MeliaGUI/resources/js/components/FormCheckRadio.vue
new file mode 100644
index 000000000..56088053a
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/FormCheckRadio.vue
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+ {{ label }}
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/FormCheckRadioGroup.vue b/system/web-optional/MeliaGUI/resources/js/components/FormCheckRadioGroup.vue
new file mode 100644
index 000000000..26da3ce68
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/FormCheckRadioGroup.vue
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/FormControl.vue b/system/web-optional/MeliaGUI/resources/js/components/FormControl.vue
new file mode 100644
index 000000000..16fcacb10
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/FormControl.vue
@@ -0,0 +1,171 @@
+
+
+
+
+
+
+ {{ option.label ?? option }}
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/FormControlIcon.vue b/system/web-optional/MeliaGUI/resources/js/components/FormControlIcon.vue
new file mode 100644
index 000000000..b0b2003cc
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/FormControlIcon.vue
@@ -0,0 +1,23 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/FormField.vue b/system/web-optional/MeliaGUI/resources/js/components/FormField.vue
new file mode 100644
index 000000000..edeab5d44
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/FormField.vue
@@ -0,0 +1,49 @@
+
+
+
+
+
{{
+ label
+ }}
+
+
+
+
+ {{ help }}
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/FormFilePicker.vue b/system/web-optional/MeliaGUI/resources/js/components/FormFilePicker.vue
new file mode 100644
index 000000000..7bfe2ffc3
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/FormFilePicker.vue
@@ -0,0 +1,114 @@
+
+
+
+
+
+
+
+
+
+
+ {{ file.name }}
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/HomeNavLink.vue b/system/web-optional/MeliaGUI/resources/js/components/HomeNavLink.vue
new file mode 100644
index 000000000..9164b165b
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/HomeNavLink.vue
@@ -0,0 +1,28 @@
+
+
+
+ {{ name }}
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/IconRounded.vue b/system/web-optional/MeliaGUI/resources/js/components/IconRounded.vue
new file mode 100644
index 000000000..a37a02a97
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/IconRounded.vue
@@ -0,0 +1,39 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/InputError.vue b/system/web-optional/MeliaGUI/resources/js/components/InputError.vue
new file mode 100644
index 000000000..18b5bd39d
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/InputError.vue
@@ -0,0 +1,15 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/InputLabel.vue b/system/web-optional/MeliaGUI/resources/js/components/InputLabel.vue
new file mode 100644
index 000000000..0f6f48311
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/InputLabel.vue
@@ -0,0 +1,14 @@
+
+
+
+
+ {{ value }}
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/LineChart.vue b/system/web-optional/MeliaGUI/resources/js/components/LineChart.vue
new file mode 100644
index 000000000..ebe994557
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/LineChart.vue
@@ -0,0 +1,93 @@
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/Modal.vue b/system/web-optional/MeliaGUI/resources/js/components/Modal.vue
new file mode 100644
index 000000000..0647b9d32
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/Modal.vue
@@ -0,0 +1,106 @@
+
+
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/NavBar.vue b/system/web-optional/MeliaGUI/resources/js/components/NavBar.vue
new file mode 100644
index 000000000..f668b2ce6
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/NavBar.vue
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/NavBarItem.vue b/system/web-optional/MeliaGUI/resources/js/components/NavBarItem.vue
new file mode 100644
index 000000000..2aab91899
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/NavBarItem.vue
@@ -0,0 +1,139 @@
+
+
+
+
+
+
+
+
+ {{ itemLabel }}
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/NavBarItemPlain.vue b/system/web-optional/MeliaGUI/resources/js/components/NavBarItemPlain.vue
new file mode 100644
index 000000000..6cffd6122
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/NavBarItemPlain.vue
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/NavBarMenuList.vue b/system/web-optional/MeliaGUI/resources/js/components/NavBarMenuList.vue
new file mode 100644
index 000000000..dd5786037
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/NavBarMenuList.vue
@@ -0,0 +1,25 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/NavLink.vue b/system/web-optional/MeliaGUI/resources/js/components/NavLink.vue
new file mode 100644
index 000000000..d2087aabb
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/NavLink.vue
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/NotificationBar.vue b/system/web-optional/MeliaGUI/resources/js/components/NotificationBar.vue
new file mode 100644
index 000000000..59a806c91
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/NotificationBar.vue
@@ -0,0 +1,65 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/NotificationBarInCard.vue b/system/web-optional/MeliaGUI/resources/js/components/NotificationBarInCard.vue
new file mode 100644
index 000000000..d7e6775d7
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/NotificationBarInCard.vue
@@ -0,0 +1,21 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/NumberDynamic.vue b/system/web-optional/MeliaGUI/resources/js/components/NumberDynamic.vue
new file mode 100644
index 000000000..e88b727ce
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/NumberDynamic.vue
@@ -0,0 +1,83 @@
+
+
+
+
+ {{ prefix
+ }}{{
+ !showOnOffline
+ ? isServerOnline
+ ? newValueFormatted
+ : '--'
+ : newValueFormatted
+ }}{{ newValueFormatted <= 0 ? '' : suffix }}
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/OverlayLayer.vue b/system/web-optional/MeliaGUI/resources/js/components/OverlayLayer.vue
new file mode 100644
index 000000000..20fc5767b
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/OverlayLayer.vue
@@ -0,0 +1,52 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/PillTag.vue b/system/web-optional/MeliaGUI/resources/js/components/PillTag.vue
new file mode 100644
index 000000000..fa4d64bdf
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/PillTag.vue
@@ -0,0 +1,38 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/PillTagPlain.vue b/system/web-optional/MeliaGUI/resources/js/components/PillTagPlain.vue
new file mode 100644
index 000000000..88b60cffb
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/PillTagPlain.vue
@@ -0,0 +1,35 @@
+
+
+
+
+
+ {{ label }}
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/PillTagTrend.vue b/system/web-optional/MeliaGUI/resources/js/components/PillTagTrend.vue
new file mode 100644
index 000000000..fed3b17ca
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/PillTagTrend.vue
@@ -0,0 +1,53 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/ResponsiveNavLink.vue b/system/web-optional/MeliaGUI/resources/js/components/ResponsiveNavLink.vue
new file mode 100644
index 000000000..7cdde8f05
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/ResponsiveNavLink.vue
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/SecondaryButton.vue b/system/web-optional/MeliaGUI/resources/js/components/SecondaryButton.vue
new file mode 100644
index 000000000..32b6827d1
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/SecondaryButton.vue
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/SectionBanner.vue b/system/web-optional/MeliaGUI/resources/js/components/SectionBanner.vue
new file mode 100644
index 000000000..b57c6f9d3
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/SectionBanner.vue
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/SectionFullScreen.vue b/system/web-optional/MeliaGUI/resources/js/components/SectionFullScreen.vue
new file mode 100644
index 000000000..42c081319
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/SectionFullScreen.vue
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/SectionMain.vue b/system/web-optional/MeliaGUI/resources/js/components/SectionMain.vue
new file mode 100644
index 000000000..26bfa63fd
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/SectionMain.vue
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/SectionTitle.vue b/system/web-optional/MeliaGUI/resources/js/components/SectionTitle.vue
new file mode 100644
index 000000000..ecb662000
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/SectionTitle.vue
@@ -0,0 +1,19 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/SectionTitleLine.vue b/system/web-optional/MeliaGUI/resources/js/components/SectionTitleLine.vue
new file mode 100644
index 000000000..bcf25b4bc
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/SectionTitleLine.vue
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+
+ {{ title }}
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/TableAccounts.vue b/system/web-optional/MeliaGUI/resources/js/components/TableAccounts.vue
new file mode 100644
index 000000000..919ef88c9
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/TableAccounts.vue
@@ -0,0 +1,218 @@
+
+
+
+
+
+ account {{ detailAccount.name }}
+ {{
+ detailAccount.teamName != null
+ ? 'with the TeamName ' + detailAccount.teamName
+ : ''
+ }}
+ has {{ detailAccount.characters }} characters.
+
+
+ The highest character level is
+ {{ detailAccount.highestCharacterName }} wich has level
+ {{ detailAccount.highestCharacterLevel }}
+
+
+
+
+
+ Once you press the button, the account
+ {{ bannedAccount.name }} {{ bannedAccount.teamName != null ? ' and Team Name ' : ''
+ }}{{
+ bannedAccount.teamName != null ? bannedAccount.teamName : ''
+ }}
+ will be banned from the server.
+
+
+
+
+
+ {{ checkedRow.name }}
+
+
+
+
+
+
+
+
+ Login
+ TeamName
+ Medals
+ Created
+
+
+
+
+
+
+
+
+
+
+ {{ userAccount.name }}
+
+
+ {{ userAccount.teamName }}
+
+
+ {{ userAccount.medals }}
+
+
+ {{ new Date(userAccount.created_at).toLocaleString() }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ...
+
+
+ Page {{ currentPageHuman }} of {{ numPages }}
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/TableBackups.vue b/system/web-optional/MeliaGUI/resources/js/components/TableBackups.vue
new file mode 100644
index 000000000..df8139824
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/TableBackups.vue
@@ -0,0 +1,191 @@
+
+
+
+
+
+ {{ checkedRow.name }}
+
+
+
+
+
+
There is no backups yet.
+
+
+
+
+
+
+
+
+ Date
+ Size
+ path
+
+
+
+
+
+
+
+
+
+
+ {{ new Date(backup.date).toLocaleString() }}
+
+
+ {{ backup.sizeInBytes }}
+
+
+ {{ backup.path }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Page {{ currentPageHuman }} of {{ numPages }}
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/TableCheckboxCell.vue b/system/web-optional/MeliaGUI/resources/js/components/TableCheckboxCell.vue
new file mode 100644
index 000000000..7d5d545ca
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/TableCheckboxCell.vue
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/TableItems.vue b/system/web-optional/MeliaGUI/resources/js/components/TableItems.vue
new file mode 100644
index 000000000..a5de85719
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/TableItems.vue
@@ -0,0 +1,212 @@
+
+
+
+
+
+ Do you want to remove the
+ {{ removingItem.name }} {{ removingItem.itemName }} from the {{ removingItem.characterName }} ?
+
+
+
+
+
+
+
+
+ {{ checkedRow.name }}
+
+
+
+
+
+
+
+
+ ItemName
+ ItemId
+ Amount
+
+
+
+
+
+
+
+
+
+
+ {{ item.itemName }}
+
+
+ {{ item.itemId }}
+
+
+ {{ item.amount }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Page {{ currentPageHuman }} of {{ numPages }}
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/TableProcesses.vue b/system/web-optional/MeliaGUI/resources/js/components/TableProcesses.vue
new file mode 100644
index 000000000..5c3562260
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/TableProcesses.vue
@@ -0,0 +1,168 @@
+
+
+
+
+
+ {{ checkedRow.name }}
+
+
+
+
+
+
The server is offline.
+
+
+
+
+
+
+
+
+ Process
+ CpuUsage
+ RamUsage
+ ServerIP
+
+
+
+
+
+
+
+
+
+
+ {{ process.ProcessName }} - ID: ({{ process.ProcessId }})
+
+ {{ process.CpuUsage }} %
+ {{ process.RamUsage }} %
+
+ {{ process.ServerIp }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Page {{ currentPageHuman }} of {{ numPages }}
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/TextInput.vue b/system/web-optional/MeliaGUI/resources/js/components/TextInput.vue
new file mode 100644
index 000000000..5048113bb
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/TextInput.vue
@@ -0,0 +1,31 @@
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/UserAvatar.vue b/system/web-optional/MeliaGUI/resources/js/components/UserAvatar.vue
new file mode 100644
index 000000000..aeae05376
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/UserAvatar.vue
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/UserAvatarCurrentUser.vue b/system/web-optional/MeliaGUI/resources/js/components/UserAvatarCurrentUser.vue
new file mode 100644
index 000000000..d541abecc
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/UserAvatarCurrentUser.vue
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/components/UserCard.vue b/system/web-optional/MeliaGUI/resources/js/components/UserCard.vue
new file mode 100644
index 000000000..080839205
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/components/UserCard.vue
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+ Hello, {{ userName }} !
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/resources/js/config.js b/system/web-optional/MeliaGUI/resources/js/config.js
new file mode 100644
index 000000000..b7d07511c
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/config.js
@@ -0,0 +1,5 @@
+export const darkModeKey = "darkMode";
+
+export const styleKey = "style";
+
+export const containerMaxW = "xl:max-w-6xl xl:mx-auto";
diff --git a/system/web-optional/MeliaGUI/resources/js/menuAside.js b/system/web-optional/MeliaGUI/resources/js/menuAside.js
new file mode 100644
index 000000000..47775feaa
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/menuAside.js
@@ -0,0 +1,42 @@
+import {
+ mdiAccountCircle,
+ mdiMonitor,
+ mdiGithub,
+ mdiViewDashboard,
+ mdiCogs,
+ mdiArchive,
+} from '@mdi/js'
+
+export default [
+ {
+ href: '/admin/dashboard',
+ icon: mdiMonitor,
+ label: 'Administration',
+ admin: true,
+ },
+ {
+ href: '/admin/configs',
+ icon: mdiCogs,
+ label: 'Configs',
+ admin: true,
+ },
+ {
+ href: '/admin/inventory/manager',
+ icon: mdiArchive,
+ label: 'Inventory',
+ admin: true,
+ },
+ {
+ href: '/profile',
+ label: 'Profile',
+ icon: mdiAccountCircle,
+ admin: false,
+ },
+ {
+ href: 'https://github.com/NoCode-NoLife/melia',
+ label: 'GitHub',
+ icon: mdiGithub,
+ target: '_blank',
+ admin: false,
+ },
+]
diff --git a/system/web-optional/MeliaGUI/resources/js/menuNavBar.js b/system/web-optional/MeliaGUI/resources/js/menuNavBar.js
new file mode 100644
index 000000000..fcf3d3515
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/menuNavBar.js
@@ -0,0 +1,48 @@
+import {
+ mdiAccount,
+ mdiCogOutline,
+ mdiEmail,
+ mdiLogout,
+ mdiThemeLightDark,
+} from "@mdi/js";
+
+export default [
+ {
+ isCurrentUser: true,
+ menu: [
+ {
+ icon: mdiAccount,
+ label: "Profile",
+ to: route('profile.edit'),
+ },
+ {
+ icon: mdiCogOutline,
+ label: "Settings",
+ },
+ {
+ icon: mdiEmail,
+ label: "Messages",
+ },
+ {
+ isDivider: true,
+ },
+ {
+ icon: mdiLogout,
+ label: "Log Out",
+ isLogout: true,
+ },
+ ],
+ },
+ {
+ icon: mdiThemeLightDark,
+ label: "Light/Dark",
+ isDesktopNoLabel: true,
+ isToggleLightDark: true,
+ },
+ {
+ icon: mdiLogout,
+ label: "Log out",
+ isDesktopNoLabel: true,
+ isLogout: true,
+ },
+];
diff --git a/system/web-optional/MeliaGUI/resources/js/mixins/aos.js b/system/web-optional/MeliaGUI/resources/js/mixins/aos.js
new file mode 100644
index 000000000..283cac2c3
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/mixins/aos.js
@@ -0,0 +1,9 @@
+// mixins/aos.js
+import AOS from 'aos'
+import 'aos/dist/aos.css'
+
+export default {
+ mounted() {
+ AOS.init({ disable: 'phone' })
+ },
+}
diff --git a/system/web-optional/MeliaGUI/resources/js/ssr.js b/system/web-optional/MeliaGUI/resources/js/ssr.js
new file mode 100644
index 000000000..5ca5e6997
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/ssr.js
@@ -0,0 +1,25 @@
+import { createSSRApp, h } from 'vue';
+import { renderToString } from '@vue/server-renderer';
+import { createInertiaApp } from '@inertiajs/vue3';
+import createServer from '@inertiajs/vue3/server';
+import { resolvePageComponent } from 'laravel-vite-plugin/inertia-helpers';
+import { ZiggyVue } from '../../vendor/tightenco/ziggy/dist/vue.m';
+
+const appName = import.meta.env.VITE_APP_NAME || 'Laravel';
+
+createServer((page) =>
+ createInertiaApp({
+ page,
+ render: renderToString,
+ title: (title) => `${title} - ${appName}`,
+ resolve: (name) => resolvePageComponent(`./Pages/${name}.vue`, import.meta.glob('./Pages/**/*.vue')),
+ setup({ App, props, plugin }) {
+ return createSSRApp({ render: () => h(App, props) })
+ .use(plugin)
+ .use(ZiggyVue, {
+ ...page.props.ziggy,
+ location: new URL(page.props.ziggy.location),
+ });
+ },
+ })
+);
diff --git a/system/web-optional/MeliaGUI/resources/js/static/favicon.ico b/system/web-optional/MeliaGUI/resources/js/static/favicon.ico
new file mode 100644
index 000000000..d751f60c6
Binary files /dev/null and b/system/web-optional/MeliaGUI/resources/js/static/favicon.ico differ
diff --git a/system/web-optional/MeliaGUI/resources/js/store.js b/system/web-optional/MeliaGUI/resources/js/store.js
new file mode 100644
index 000000000..b0b5de5ca
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/store.js
@@ -0,0 +1,81 @@
+import { createStore } from 'vuex';
+import * as styles from "@/styles.js";
+import { darkModeKey, styleKey } from "@/config";
+
+export const useStore = createStore({
+ state() {
+ return {
+ account: null,
+ IsServerOnline: false,
+
+ /* Styles */
+ asideStyle: "",
+ asideScrollbarsStyle: "",
+ asideBrandStyle: "",
+ asideMenuItemStyle: "",
+ asideMenuItemActiveStyle: "",
+ asideMenuDropdownStyle: "",
+ navBarItemLabelStyle: "",
+ navBarItemLabelHoverStyle: "",
+ navBarItemLabelActiveColorStyle: "",
+ overlayStyle: "",
+
+ /* Dark mode */
+ darkMode: false,
+ };
+ },
+ mutations: {
+ setAccount(state, newValue) {
+ state.account = newValue;
+ },
+ setIsServerOnline(state, newValue) {
+ state.IsServerOnline = newValue;
+ },
+ setAccountWithPayload(state, payload) {
+ if (payload.name) {
+ state.account.name = payload.name;
+ }
+ if (payload.email) {
+ state.account.email = payload.email;
+ }
+ },
+ setStyle(state, payload) {
+ if (!styles[payload]) {
+ return;
+ }
+
+ if (typeof localStorage !== "undefined") {
+ localStorage.setItem(styleKey, payload);
+ }
+
+ const style = styles[payload];
+
+ for (const key in style) {
+ state[`${key}Style`] = style[key];
+ }
+ },
+ setDarkMode(state, payload = null) {
+ state.darkMode = payload !== null ? payload : !state.darkMode;
+
+ if (typeof localStorage !== "undefined") {
+ localStorage.setItem(darkModeKey, state.darkMode ? "1" : "0");
+ }
+
+ if (typeof document !== "undefined") {
+ document.body.classList[state.darkMode ? "add" : "remove"](
+ "dark-scrollbars"
+ );
+
+ document.documentElement.classList[state.darkMode ? "add" : "remove"](
+ "dark-scrollbars-compat"
+ );
+ }
+ },
+ },
+ actions: {
+ // Your actions here
+ },
+ getters: {
+ // Your getters here
+ },
+});
diff --git a/system/web-optional/MeliaGUI/resources/js/styles.js b/system/web-optional/MeliaGUI/resources/js/styles.js
new file mode 100644
index 000000000..a4782ba57
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/js/styles.js
@@ -0,0 +1,25 @@
+export const basic = {
+ aside: "bg-gray-800",
+ asideScrollbars: "aside-scrollbars-gray",
+ asideBrand: "bg-gray-900 text-white",
+ asideMenuItem: "text-gray-300 hover:text-white",
+ asideMenuItemActive: "font-bold text-white",
+ asideMenuDropdown: "bg-gray-700/50",
+ navBarItemLabel: "text-black",
+ navBarItemLabelHover: "hover:text-blue-500",
+ navBarItemLabelActiveColor: "text-blue-600",
+ overlay: "from-gray-700 via-gray-900 to-gray-700",
+};
+
+export const white = {
+ aside: "bg-white",
+ asideScrollbars: "aside-scrollbars-light",
+ asideBrand: "",
+ asideMenuItem: "text-blue-600 hover:text-black dark:text-white",
+ asideMenuItemActive: "font-bold text-black dark:text-white",
+ asideMenuDropdown: "bg-gray-100/75",
+ navBarItemLabel: "text-blue-600",
+ navBarItemLabelHover: "hover:text-black",
+ navBarItemLabelActiveColor: "text-black",
+ overlay: "from-white via-gray-100 to-white",
+};
diff --git a/system/web-optional/MeliaGUI/resources/lang/en/auth.php b/system/web-optional/MeliaGUI/resources/lang/en/auth.php
new file mode 100644
index 000000000..97522c937
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/lang/en/auth.php
@@ -0,0 +1,20 @@
+ 'The account login cannot contain white spaces or special characters.',
+ 'login.exists' => 'An account with that name already exists.',
+ 'email.exists' => 'An account with that email already exists.',
+ 'incorrect.password' => 'The current Password is incorrect.',
+ 'incorrect.password.confirmation' => 'Wrong password confirmation.',
+];
diff --git a/system/web-optional/MeliaGUI/resources/lang/en/validation.php b/system/web-optional/MeliaGUI/resources/lang/en/validation.php
new file mode 100644
index 000000000..671c3d8dc
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/lang/en/validation.php
@@ -0,0 +1,36 @@
+ 'Backup created successful',
+ 'backup.do.not.exists' => 'The selected backup do not exists.',
+ 'backup.running.success' => 'The backup is being initialized.',
+ 'backup.delete.fail' => 'Backup could not be deleted.',
+ 'backup.delete.successful' => 'Backup was deleted successful.',
+ 'backup.restore.successful' => 'Backup restored successful.',
+ 'backup.restore.fail' => 'Backup restored failed.',
+ 'backup.restore.cant' => 'Could not restore the backup because the server is ONLINE.',
+ 'kick.all.players.fail' => 'Fail to kick all players',
+ 'kick.all.players.successful' => 'Successful kicked all players.',
+ 'configs.update.fail' => 'Configs could no be updated.',
+ 'configs.successful.updated' => 'Configs updated successful.',
+ 'message.broadcast.fail' => 'Message broadcasting has failed.',
+ 'message.broadcast.success' => 'Message broadcasted successful.',
+ 'close.zone.process.fail' => 'Closing zone process failed.',
+ 'close.zone.process.success' => 'Closing zone process successful!',
+ 'created.zone.fail' => 'Fail to create a new zone server.',
+ 'created.zone.success' => 'Successful created a new zone server.',
+ 'email.not.found' => 'No records of account associated with the email address.',
+ 'remove.item.successful' => 'Successful deleted the an item.',
+ 'remove.item.failed' => 'Failed to delete an item.',
+];
diff --git a/system/web-optional/MeliaGUI/resources/sass/_variables.scss b/system/web-optional/MeliaGUI/resources/sass/_variables.scss
new file mode 100644
index 000000000..172daaadb
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/sass/_variables.scss
@@ -0,0 +1,7 @@
+// Body
+$body-bg: #f8fafc;
+
+// Typography
+$font-family-sans-serif: 'Nunito', sans-serif;
+$font-size-base: 0.9rem;
+$line-height-base: 1.6;
diff --git a/system/web-optional/MeliaGUI/resources/sass/app.scss b/system/web-optional/MeliaGUI/resources/sass/app.scss
new file mode 100644
index 000000000..1026a0bfe
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/sass/app.scss
@@ -0,0 +1,8 @@
+// Fonts
+@import url('https://fonts.bunny.net/css?family=Nunito');
+
+// Variables
+@import 'variables';
+
+// Bootstrap
+@import 'bootstrap/scss/bootstrap';
diff --git a/system/web-optional/MeliaGUI/resources/views/app.blade.php b/system/web-optional/MeliaGUI/resources/views/app.blade.php
new file mode 100644
index 000000000..b622ba655
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/views/app.blade.php
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+ {{ config('app.name', 'Melia') }}
+
+
+
+
+
+
+ @routes
+ @vite(['resources/js/app.js', "resources/js/Pages/{$page['component']}.vue"])
+ @inertiaHead
+
+
+ @inertia
+
+
diff --git a/system/web-optional/MeliaGUI/resources/views/welcome.blade.php b/system/web-optional/MeliaGUI/resources/views/welcome.blade.php
new file mode 100644
index 000000000..638ec9606
--- /dev/null
+++ b/system/web-optional/MeliaGUI/resources/views/welcome.blade.php
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+ Laravel
+
+
+
+
+
+
+
+
+
+
+ @if (Route::has('login'))
+
+ @auth
+
Home
+ @else
+
Log in
+
+ @if (Route::has('register'))
+
Register
+ @endif
+ @endauth
+
+ @endif
+
+
+
+
+
+
+
+
+
+
+
Documentation
+
+
+ Laravel has wonderful documentation covering every aspect of the framework. Whether you are a newcomer or have prior experience with Laravel, we recommend reading our documentation from beginning to end.
+
+
+
+
+
+
+
+
+
+
+
+
+
Laracasts
+
+
+ Laracasts offers thousands of video tutorials on Laravel, PHP, and JavaScript development. Check them out, see for yourself, and massively level up your development skills in the process.
+
+
+
+
+
+
+
+
+
+
+
+
+
Laravel News
+
+
+ Laravel News is a community driven portal and newsletter aggregating all of the latest and most important news in the Laravel ecosystem, including new package releases and tutorials.
+
+
+
+
+
+
+
+
+
+
+
+
+
Vibrant Ecosystem
+
+
+ Laravel's robust library of first-party tools and libraries, such as Forge , Vapor , Nova , and Envoyer help you take your projects to the next level. Pair them with powerful open source libraries like Cashier , Dusk , Echo , Horizon , Sanctum , Telescope , and more.
+
+
+
+
+
+
+
+
+
+
+ Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }})
+
+
+
+
+
+
diff --git a/system/web-optional/MeliaGUI/routes/api.php b/system/web-optional/MeliaGUI/routes/api.php
new file mode 100644
index 000000000..5c08134af
--- /dev/null
+++ b/system/web-optional/MeliaGUI/routes/api.php
@@ -0,0 +1,21 @@
+group(function () {
+ Route::get('/user', function (Request $request) {
+ return $request->user();
+ });
+});
diff --git a/system/web-optional/MeliaGUI/routes/auth.php b/system/web-optional/MeliaGUI/routes/auth.php
new file mode 100644
index 000000000..e130b3070
--- /dev/null
+++ b/system/web-optional/MeliaGUI/routes/auth.php
@@ -0,0 +1,54 @@
+group(function () {
+ Route::get('login', [AuthenticatedSessionController::class, 'create'])
+ ->name('login');
+
+ Route::post('login', [AuthenticatedSessionController::class, 'store']);
+
+ Route::get('forgot-password', [PasswordResetLinkController::class, 'create'])
+ ->name('password.request');
+
+ Route::post('forgot-password', [PasswordResetLinkController::class, 'store'])
+ ->name('password.email');
+
+ Route::get('reset-password/{token}', [NewPasswordController::class, 'create'])
+ ->name('password.reset');
+
+ Route::post('reset-password', [NewPasswordController::class, 'store'])
+ ->name('password.store');
+});
+
+Route::middleware('auth')->group(function () {
+ Route::get('verify-email', EmailVerificationPromptController::class)
+ ->name('verification.notice');
+
+ Route::get('verify-email/{id}/{hash}', VerifyEmailController::class)
+ ->middleware(['signed', 'throttle:6,1'])
+ ->name('verification.verify');
+
+ Route::post('email/verification-notification', [EmailVerificationNotificationController::class, 'store'])
+ ->middleware('throttle:6,1')
+ ->name('verification.send');
+
+ Route::get('confirm-password', [ConfirmablePasswordController::class, 'show'])
+ ->name('password.confirm');
+
+ Route::post('confirm-password', [ConfirmablePasswordController::class, 'store']);
+
+ Route::put('password', [PasswordController::class, 'update'])->name('password.update');
+
+ Route::post('logout', [AuthenticatedSessionController::class, 'destroy'])
+ ->name('logout');
+});
diff --git a/system/web-optional/MeliaGUI/routes/channels.php b/system/web-optional/MeliaGUI/routes/channels.php
new file mode 100644
index 000000000..5d451e1fa
--- /dev/null
+++ b/system/web-optional/MeliaGUI/routes/channels.php
@@ -0,0 +1,18 @@
+id === (int) $id;
+});
diff --git a/system/web-optional/MeliaGUI/routes/console.php b/system/web-optional/MeliaGUI/routes/console.php
new file mode 100644
index 000000000..e05f4c9a1
--- /dev/null
+++ b/system/web-optional/MeliaGUI/routes/console.php
@@ -0,0 +1,19 @@
+comment(Inspiring::quote());
+})->purpose('Display an inspiring quote');
diff --git a/system/web-optional/MeliaGUI/routes/web.php b/system/web-optional/MeliaGUI/routes/web.php
new file mode 100644
index 000000000..47dfbe47c
--- /dev/null
+++ b/system/web-optional/MeliaGUI/routes/web.php
@@ -0,0 +1,71 @@
+name('home');
+
+Route::middleware(['auth', 'verified', 'authority:99'])->group(function () {
+ Route::get('/admin/dashboard', [AdminDashboardController::class, 'get'])
+ ->name('admin.dashboard');
+
+ Route::get('/admin/configs', [ConfigsController::class, 'get'])
+ ->name('admin.configs');
+
+ Route::post('/admin/configs', [ConfigsController::class, 'store'])
+ ->name('admin.configs.update');
+
+ Route::post('/admin/kick/all', [AdminDashboardController::class, 'kickAll'])
+ ->name('admin.kick.all.players');
+
+ Route::post('/admin/message/broadcast', [AdminDashboardController::class, 'broadcastMessage'])
+ ->name('admin.message.broadcast');
+
+ Route::post('/admin/backup', [BackupController::class, 'create'])
+ ->name('admin.backup.create');
+
+ Route::post('/admin/backup/restore', [BackupController::class, 'restore'])
+ ->name('admin.backup.restore');
+
+ Route::post('/admin/backup/delete', [BackupController::class, 'delete'])
+ ->name('admin.backup.delete');
+
+ Route::post('/admin/close/zone/process', [AdminDashboardController::class, 'closeZoneProcess'])
+ ->name('admin.close.zone.server.process');
+
+ Route::post('/admin/create/zone', [AdminDashboardController::class, 'createNewZone'])
+ ->name('admin.create.zone.server');
+
+ Route::get('/admin/inventory/manager', [InventoryController::class, 'get'])
+ ->name('admin.inventory.manager');
+
+ Route::post('/admin/inventory/manager', [InventoryController::class, 'search'])
+ ->name('admin.inventory.manager.search');
+
+ Route::post('/admin/inventory/remove/item', [InventoryController::class, 'removeItem'])
+ ->name('admin.inventory.manager.remove.item');
+});
+
+Route::middleware('auth', 'verified')->group(function () {
+ Route::get('/profile', [ProfileController::class, 'edit'])->name('profile.edit');
+ Route::patch('/profile', [ProfileController::class, 'update'])->name('profile.update');
+});
+
+require __DIR__.'/auth.php';
diff --git a/system/web-optional/MeliaGUI/storage/app/.gitignore b/system/web-optional/MeliaGUI/storage/app/.gitignore
new file mode 100644
index 000000000..28acdb9d7
--- /dev/null
+++ b/system/web-optional/MeliaGUI/storage/app/.gitignore
@@ -0,0 +1,2 @@
+/Melia/*
+!.gitignore
diff --git a/system/web-optional/MeliaGUI/storage/app/db/items.json b/system/web-optional/MeliaGUI/storage/app/db/items.json
new file mode 100644
index 000000000..1aaa0e6d0
--- /dev/null
+++ b/system/web-optional/MeliaGUI/storage/app/db/items.json
@@ -0,0 +1 @@
+[{"itemId":104126,"className":"SWD04_126","name":"Vaivora Vision - Echo","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":114023,"className":"DAG04_123","name":"Vaivora Vision - Cursed Dagger","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":124126,"className":"TSW04_126","name":"Vaivora Vision - Florescence","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":144127,"className":"STF04_127","name":"Vaivora Vision - Time Rush","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":164126,"className":"TBW04_126","name":"Vaivora Vision - Reinforced Bowstring","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":184126,"className":"BOW04_126","name":"Vaivora Vision - Double Marking","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":204129,"className":"MAC04_129","name":"Vaivora Vision - Mass Heal: Freeze","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":210418,"className":"TMAC04_118","name":"Vaivora Vision - Convict","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":224122,"className":"SHD04_122","name":"Vaivora Vision - Concentrated Defence","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Arcane","minLevel":430,"material":"Shield","script":{"strArg":"Vibora","numArg1":1}},{"itemId":244127,"className":"SPR04_127","name":"Vaivora Vision - Rete Shooter","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Spear","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":254128,"className":"TSP04_128","name":"Vaivora Vision - Halberd","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Spear","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":274129,"className":"TSF04_129","name":"Vaivora Vision - Stone-slinger","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":304122,"className":"PST04_122","name":"Vaivora Vision - Cryolite Bullet","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":314124,"className":"RAP04_124","name":"Vaivora Vision - Leventador","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":430,"aries":990,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":324118,"className":"CAN04_118","name":"Vaivora Vision - Air Burst","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":430,"addMinAtk":1780,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":334118,"className":"MUS04_118","name":"Vaivora Vision - Armor-piercing Shell","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":430,"addMaxAtk":1025,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":694011,"className":"TRK04_111","name":"Vaivora Vision - Coordination","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Arcane","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":10310090,"className":"EP13_Galimybe_SWD","name":"Vision - Galimive Weapon","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":430,"script":{"strArg":"EP13GALIMYBE"}},{"itemId":10310091,"className":"GrowthVision_Weapon","name":"[Growth]","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":460},{"itemId":11002001,"className":"SWD04_126_1","name":"Vaivora Vision - Escudo Espada","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002002,"className":"TSP04_128_1","name":"Vaivora Vision - Grind","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Spear","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002003,"className":"TSF04_129_1","name":"Vaivora Vision - Diffuse Reflection","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002004,"className":"DAG04_123_1","name":"Vaivora Vision - Shadow Clone","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002005,"className":"TSF04_129_2","name":"Vaivora Vision - Fire Bolt","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002006,"className":"STF04_127_1","name":"Vaivora Vision - Wicked Desire","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":430,"addMAtk":590,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002007,"className":"MAC04_129_1","name":"Vaivora Vision - Sacred Armor","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002008,"className":"TMAC04_118_1","name":"Vaivora Vision - Outrage","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002009,"className":"PST04_122_1","name":"Vaivora Vision - Renovate Trigger","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002027,"className":"DAG04_123_2","name":"Vaivora Vision - Carpet Bombing","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","minLevel":430,"strike":996,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002028,"className":"DAG04_123_3","name":"Vaivora Vision - Phantom Blade","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","minLevel":430,"aries":996,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002029,"className":"TBW04_126_1","name":"Vaivora Vision - Orbital Arrow","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002030,"className":"SWD04_126_2","name":"Vaivora Vision - Saber","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":430,"slash":992,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002031,"className":"STF04_127_2","name":"Vaivora Vision - Icy Snow Bubble","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002032,"className":"TSW04_126_1","name":"Vaivora Vision - Dual Sword","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002033,"className":"SPR04_127_1","name":"Vaivora Vision - Javelin","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Spear","minLevel":430,"aries":990,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002034,"className":"MUS04_118_1","name":"Vaivora Vision - Triple Steps Single Shot","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002035,"className":"TMAC04_118_2","name":"Vaivora Vision - Desition","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002036,"className":"SWD04_126_3","name":"Vaivora Vision - Coordination","type":"Etc","group":"Arcane","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":430,"script":{"function":"SCR_CONVERT_VIBORA_TO_VIBORA","strArg":"Vibora","numArg1":1}},{"itemId":11002037,"className":"DAG04_123_4","name":"Vaivora Vision - Coordination","type":"Etc","group":"Arcane","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Arcane","minLevel":430,"script":{"function":"SCR_CONVERT_VIBORA_TO_VIBORA","strArg":"Vibora","numArg1":1}},{"itemId":11002038,"className":"BOW04_126_1","name":"Vaivora Vision - Cluster Bomb","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002039,"className":"TSW04_126_2","name":"Vaivora Vision - Wedge Blast","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":430,"slash":986,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002040,"className":"TSP04_128_2","name":"Vaivora Vision - Matchless","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Spear","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002041,"className":"RAP04_124_1","name":"Vaivora Vision - Banderilla","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002042,"className":"PST04_122_2","name":"Vaivora Vision - Speedloader","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002043,"className":"CAN04_118_1","name":"Vaivora Vision - Centerfire","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002044,"className":"TSF04_129_3","name":"Vaivora Vision - Biased Gravity","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002045,"className":"TMAC04_118_3","name":"Vaivora Vision - Necrosis","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002046,"className":"STF04_127_3","name":"Vaivora Vision - Rune of Vigilance","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002047,"className":"SHD04_122_1","name":"Vaivora Vision - Coordination","type":"Etc","group":"Arcane","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Arcane","minLevel":430,"material":"Shield","script":{"function":"SCR_CONVERT_VIBORA_TO_VIBORA","strArg":"Vibora","numArg1":1}},{"itemId":11002048,"className":"TSF04_129_4","name":"Vaivora Vision - Lewa Advent","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002049,"className":"SWD04_126_4","name":"Vaivora Vision - Boreas","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":430,"strike":996,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002050,"className":"TMAC04_118_4","name":"Vaivora Vision - Agni","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002051,"className":"DAG04_123_5","name":"Vaivora Vision - Ecliptic Blades","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002052,"className":"MUS04_118_2","name":"Vaivora Vision - Lever Action","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002053,"className":"DAG04_123_6","name":"Vaivora Vision - Echo","type":"Etc","group":"Arcane","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Arcane","minLevel":430,"script":{"function":"SCR_CONVERT_VIBORA_TO_VIBORA","strArg":"Vibora","numArg1":1}},{"itemId":11002054,"className":"SHD04_122_2","name":"Vaivora Vision - Echo","type":"Etc","group":"Arcane","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Arcane","minLevel":430,"material":"Shield","script":{"function":"SCR_CONVERT_VIBORA_TO_VIBORA","strArg":"Vibora","numArg1":1}},{"itemId":11002055,"className":"TSF04_129_5","name":"Vaivora Vision - Red Tiger Claw","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002056,"className":"STF04_127_4","name":"Vaivora Vision - Distortion","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002057,"className":"TSF04_129_6","name":"Vaivora Vision - Annihilate","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002058,"className":"TMAC04_118_5","name":"Vaivora Vision - Thunder Kick","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":430,"strike":986,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002059,"className":"TMAC04_118_6","name":"Vaivora Vision - Sacred Lightning","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002060,"className":"PST04_122_3","name":"Vaivora Vision - Sabotage","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002061,"className":"DAG04_123_7","name":"Vaivora Vision - Gasp Up","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002062,"className":"TMAC04_118_7","name":"Vaivora Vision - Conviction","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":430,"strike":986,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002063,"className":"TSF04_129_8","name":"Vaivora Vision - Demonische","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002064,"className":"TSF04_129_7","name":"Vaivora Vision - Immortality","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002065,"className":"MAC04_129_2","name":"Vaivora Vision - Protecting Grace","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002066,"className":"PST04_122_4","name":"Vaivora Vision - Critical Edge","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002067,"className":"TBW04_126_2","name":"Vaivora Vision - Hawking","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002068,"className":"DAG04_123_8","name":"Vaivora Vision - Rapid Growth","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002069,"className":"SWD04_126_5","name":"Vaivora Vision - Serrated Shield","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":430,"strike":996,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002070,"className":"MAC04_129_3","name":"Vaivora Vision - Memory Leap","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002071,"className":"TRK04_111_1","name":"Vaivora Vision - Bloody Fight","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Arcane","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002072,"className":"TBW04_126_3","name":"Vaivora Vision - Shadowless Poison","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002073,"className":"SWD04_126_6","name":"Vaivora Vision - Doble Attaque","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002074,"className":"SWD04_126_7","name":"Vaivora Vision - Arena","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002075,"className":"TMAC04_118_8","name":"Vaivora Vision - Ema","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002076,"className":"TSF04_129_9","name":"Vaivora Vision - Electric Flow","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002077,"className":"TBW04_126_4","name":"Vaivora Vision - Jusalnegi","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002078,"className":"TSF04_129_10","name":"Vaivora Vision - Vigilant Charm","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002079,"className":"TBW04_126_5","name":"Vaivora Vision - Tempest","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002080,"className":"PST04_122_5","name":"Vaivora Vision - Carbine","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002081,"className":"DAG04_123_9","name":"Vaivora Vision - Superstring","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002082,"className":"TSF04_129_11","name":"Vaivora Vision - Blood Butterfly","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":430,"addMAtk":590,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002083,"className":"DAG04_123_10","name":"Vaivora Vision - Empowering","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002084,"className":"SWD04_126_8","name":"Vaivora Vision - Pounding Rage","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002085,"className":"TMAC04_118_9","name":"Vaivora Vision - Principle of Emptiness","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":430,"strike":986,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002086,"className":"TMAC04_118_10","name":"Vaivora Vision - Soul of Forest","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":430,"strike":986,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002087,"className":"MAC04_129_4","name":"Vaivora Vision - Aura","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002088,"className":"MAC04_129_5","name":"Vaivora Vision - Longing","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002089,"className":"SWD04_126_9","name":"Vaivora Vision - Assemble","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002090,"className":"DAG04_123_11","name":"Vaivora Vision - Law of the Jungle","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002091,"className":"BOW04_126_2","name":"Vaivora Vision - Obliterate","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002092,"className":"SHD04_122_3","name":"Vaivora Vision - Iron Wall","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Arcane","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002093,"className":"TBW04_126_6","name":"Vaivora Vision - Companion Lover","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002094,"className":"TSF04_129_4_Lv2","name":"[Lv2] Vaivora Vision - Lewa Advent","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002095,"className":"TSF04_129_4_Lv3","name":"[Lv3] Vaivora Vision - Lewa Advent","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002096,"className":"SWD04_126_4_Lv2","name":"[Lv2] Vaivora Vision - Boreas","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"strike":1095,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002097,"className":"SWD04_126_4_Lv3","name":"[Lv3] Vaivora Vision - Boreas","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"strike":1205,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002098,"className":"TMAC04_118_4_Lv2","name":"[Lv2] Vaivora Vision - Agni","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002099,"className":"TMAC04_118_4_Lv3","name":"[Lv3] Vaivora Vision - Agni","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002100,"className":"DAG04_123_5_Lv2","name":"[Lv2] Vaivora Vision - Ecliptic Blades","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002101,"className":"DAG04_123_5_Lv3","name":"[Lv3] Vaivora Vision - Ecliptic Blades","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002102,"className":"MUS04_118_2_Lv2","name":"[Lv2] Vaivora Vision - Lever Action","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002103,"className":"MUS04_118_2_Lv3","name":"[Lv3] Vaivora Vision - Lever Action","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002104,"className":"DAG04_123_6_Lv2","name":"[Lv2] Vaivora Vision - Echo","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002105,"className":"DAG04_123_6_Lv3","name":"[Lv3] Vaivora Vision - Echo","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002106,"className":"SHD04_122_2_Lv2","name":"[Lv2] Vaivora Vision - Echo","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"material":"Shield","script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002107,"className":"SHD04_122_2_Lv3","name":"[Lv3] Vaivora Vision - Echo","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"material":"Shield","script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002108,"className":"TSF04_129_5_Lv2","name":"[Lv2] Vaivora Vision - Red Tiger Claw","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002109,"className":"TSF04_129_5_Lv3","name":"[Lv3] Vaivora Vision - Red Tiger Claw","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002110,"className":"STF04_127_4_Lv2","name":"[Lv2] Vaivora Vision - Distortion","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002111,"className":"STF04_127_4_Lv3","name":"[Lv3] Vaivora Vision - Distortion","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002112,"className":"TSF04_129_6_Lv2","name":"[Lv2] Vaivora Vision - Annihilate","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002113,"className":"TSF04_129_6_Lv3","name":"[Lv3] Vaivora Vision - Annihilate","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002114,"className":"TMAC04_118_5_Lv2","name":"[Lv2] Vaivora Vision - Thunder Kick","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"strike":1084,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002115,"className":"TMAC04_118_5_Lv3","name":"[Lv3] Vaivora Vision - Thunder Kick","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"strike":1192,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002116,"className":"TMAC04_118_6_Lv2","name":"[Lv2] Vaivora Vision - Sacred Lightning","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002117,"className":"TMAC04_118_6_Lv3","name":"[Lv3] Vaivora Vision - Sacred Lightning","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002118,"className":"PST04_122_3_Lv2","name":"[Lv2] Vaivora Vision - Sabotage","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002119,"className":"PST04_122_3_Lv3","name":"[Lv3] Vaivora Vision - Sabotage","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002120,"className":"DAG04_123_7_Lv2","name":"[Lv2] Vaivora Vision - Gasp Up","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002121,"className":"DAG04_123_7_Lv3","name":"[Lv3] Vaivora Vision - Gasp Up","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002122,"className":"TMAC04_118_7_Lv2","name":"[Lv2] Vaivora Vision - Conviction","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"strike":1084,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002123,"className":"TMAC04_118_7_Lv3","name":"[Lv3] Vaivora Vision - Conviction","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"strike":1192,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002124,"className":"TSF04_129_8_Lv2","name":"[Lv2] Vaivora Vision - Demonische","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002125,"className":"TSF04_129_8_Lv3","name":"[Lv3] Vaivora Vision - Demonische","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002126,"className":"TSF04_129_7_Lv2","name":"[Lv2] Vaivora Vision - Immortality","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002127,"className":"TSF04_129_7_Lv3","name":"[Lv3] Vaivora Vision - Immortality","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002128,"className":"MAC04_129_2_Lv2","name":"[Lv2] Vaivora Vision - Protecting Grace","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002129,"className":"MAC04_129_2_Lv3","name":"[Lv3] Vaivora Vision - Protecting Grace","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002130,"className":"PST04_122_4_Lv2","name":"[Lv2] Vaivora Vision - Critical Edge","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002131,"className":"PST04_122_4_Lv3","name":"[Lv3] Vaivora Vision - Critical Edge","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002132,"className":"TBW04_126_2_Lv2","name":"[Lv2] Vaivora Vision - Hawking","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002133,"className":"TBW04_126_2_Lv3","name":"[Lv3] Vaivora Vision - Hawking","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002134,"className":"DAG04_123_8_Lv2","name":"[Lv2] Vaivora Vision - Rapid Growth","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002135,"className":"DAG04_123_8_Lv3","name":"[Lv3] Vaivora Vision - Rapid Growth","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002136,"className":"SWD04_126_5_Lv2","name":"[Lv2] Vaivora Vision - Serrated Shield","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"strike":1095,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002137,"className":"SWD04_126_5_Lv3","name":"[Lv3] Vaivora Vision - Serrated Shield","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"strike":1205,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002138,"className":"MAC04_129_3_Lv2","name":"[Lv2] Vaivora Vision - Memory Leap","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002139,"className":"MAC04_129_3_Lv3","name":"[Lv3] Vaivora Vision - Memory Leap","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002140,"className":"TRK04_111_1_Lv2","name":"[Lv2] Vaivora Vision - Bloody Fight","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002141,"className":"TRK04_111_1_Lv3","name":"[Lv3] Vaivora Vision - Bloody Fight","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002142,"className":"TBW04_126_3_Lv2","name":"[Lv2] Vaivora Vision - Shadowless Poison","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002143,"className":"TBW04_126_3_Lv3","name":"[Lv3] Vaivora Vision - Shadowless Poison","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002144,"className":"SWD04_126_6_Lv2","name":"[Lv2] Vaivora Vision - Doble Attaque","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002145,"className":"SWD04_126_6_Lv3","name":"[Lv3] Vaivora Vision - Doble Attaque","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002146,"className":"SWD04_126_7_Lv2","name":"[Lv2] Vaivora Vision - Arena","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002147,"className":"SWD04_126_7_Lv3","name":"[Lv3] Vaivora Vision - Arena","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002148,"className":"TMAC04_118_8_Lv2","name":"[Lv2] Vaivora Vision - Ema","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002149,"className":"TMAC04_118_8_Lv3","name":"[Lv3] Vaivora Vision - Ema","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002150,"className":"TSF04_129_9_Lv2","name":"[Lv2] Vaivora Vision - Electric Flow","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002151,"className":"TSF04_129_9_Lv3","name":"[Lv3] Vaivora Vision - Electric Flow","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002152,"className":"TBW04_126_4_Lv2","name":"[Lv2] Vaivora Vision - Jusalnegi","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002153,"className":"TBW04_126_4_Lv3","name":"[Lv3] Vaivora Vision - Jusalnegi","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002154,"className":"TSF04_129_10_Lv2","name":"[Lv2] Vaivora Vision - Vigilant Charm","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002155,"className":"TSF04_129_10_Lv3","name":"[Lv3] Vaivora Vision - Vigilant Charm","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002156,"className":"TBW04_126_5_Lv2","name":"[Lv2] Vaivora Vision - Tempest","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002157,"className":"TBW04_126_5_Lv3","name":"[Lv3] Vaivora Vision - Tempest","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002158,"className":"PST04_122_5_Lv2","name":"[Lv2] Vaivora Vision - Carbine","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002159,"className":"PST04_122_5_Lv3","name":"[Lv3] Vaivora Vision - Carbine","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002160,"className":"DAG04_123_9_Lv2","name":"[Lv2] Vaivora Vision - Superstring","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002161,"className":"DAG04_123_9_Lv3","name":"[Lv3] Vaivora Vision - Superstring","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002162,"className":"TSF04_129_11_Lv2","name":"[Lv2] Vaivora Vision - Blood Butterfly","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"addMAtk":649,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002163,"className":"TSF04_129_11_Lv3","name":"[Lv3] Vaivora Vision - Blood Butterfly","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"addMAtk":714,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002164,"className":"DAG04_123_10_Lv2","name":"[Lv2] Vaivora Vision - Empowering","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002165,"className":"DAG04_123_10_Lv3","name":"[Lv3] Vaivora Vision - Empowering","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002166,"className":"SWD04_126_8_Lv2","name":"[Lv2] Vaivora Vision - Pounding Rage","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002167,"className":"SWD04_126_8_Lv3","name":"[Lv3] Vaivora Vision - Pounding Rage","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002168,"className":"TMAC04_118_9_Lv2","name":"[Lv2] Vaivora Vision - Principle of Emptiness","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"strike":1084,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002169,"className":"TMAC04_118_9_Lv3","name":"[Lv3] Vaivora Vision - Principle of Emptiness","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"strike":1192,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002170,"className":"TMAC04_118_10_Lv2","name":"[Lv2] Vaivora Vision - Soul of Forest","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"strike":1084,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002171,"className":"TMAC04_118_10_Lv3","name":"[Lv3] Vaivora Vision - Soul of Forest","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"strike":1192,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002172,"className":"MAC04_129_4_Lv2","name":"[Lv2] Vaivora Vision - Aura","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002173,"className":"MAC04_129_4_Lv3","name":"[Lv3] Vaivora Vision - Aura","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002174,"className":"MAC04_129_5_Lv2","name":"[Lv2] Vaivora Vision - Longing","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002175,"className":"MAC04_129_5_Lv3","name":"[Lv3] Vaivora Vision - Longing","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002176,"className":"SWD04_126_9_Lv2","name":"[Lv2] Vaivora Vision - Assemble","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002177,"className":"SWD04_126_9_Lv3","name":"[Lv3] Vaivora Vision - Assemble","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002178,"className":"DAG04_123_11_Lv2","name":"[Lv2] Vaivora Vision - Law of the Jungle","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002179,"className":"DAG04_123_11_Lv3","name":"[Lv3] Vaivora Vision - Law of the Jungle","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002180,"className":"BOW04_126_2_Lv2","name":"[Lv2] Vaivora Vision - Obliterate","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002181,"className":"BOW04_126_2_Lv3","name":"[Lv3] Vaivora Vision - Obliterate","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002182,"className":"SHD04_122_3_Lv2","name":"[Lv2] Vaivora Vision - Iron Wall","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002183,"className":"SHD04_122_3_Lv3","name":"[Lv3] Vaivora Vision - Iron Wall","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002184,"className":"TBW04_126_6_Lv2","name":"[Lv2] Vaivora Vision - Companion Lover","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002185,"className":"TBW04_126_6_Lv3","name":"[Lv3] Vaivora Vision - Companion Lover","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002186,"className":"TSP04_128_3","name":"Vaivora Vision - The Dragon and the Tiger","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Spear","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002187,"className":"TSP04_128_3_Lv2","name":"[Lv2] Vaivora Vision - The Dragon and the Tiger","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Spear","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002188,"className":"TSP04_128_3_Lv3","name":"[Lv3] Vaivora Vision - The Dragon and the Tiger","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Spear","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11002189,"className":"TBW04_126_7","name":"Vaivora Vision - MAX Power","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":430,"script":{"strArg":"Vibora","numArg1":1}},{"itemId":11002190,"className":"TBW04_126_7_Lv2","name":"[Lv2] Vaivora Vision - MAX Power","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11002191,"className":"TBW04_126_7_Lv3","name":"[Lv3] Vaivora Vision - MAX Power","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11003061,"className":"EP13_Galimybe_TOP","name":"Vision - Galimive Armor","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Shirt","minLevel":430,"script":{"strArg":"EP13GALIMYBEARMOR"}},{"itemId":11003062,"className":"GrowthVision_Armor","name":"[Growth]","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Shirt","minLevel":460},{"itemId":11050000,"className":"SWD04_126_Lv2","name":"[Lv2] Vaivora Vision - Echo","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050001,"className":"SWD04_126_1_Lv2","name":"[Lv2] Vaivora Vision - Escudo Espada","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050002,"className":"SWD04_126_2_Lv2","name":"[Lv2] Vaivora Vision - Saber","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"slash":1091,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050003,"className":"SWD04_126_3_Lv2","name":"[Lv2] Vaivora Vision - Coordination","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050004,"className":"TSW04_126_Lv2","name":"[Lv2] Vaivora Vision - Florescence","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050005,"className":"TSW04_126_1_Lv2","name":"[Lv2] Vaivora Vision - Dual Sword","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050006,"className":"STF04_127_Lv2","name":"[Lv2] Vaivora Vision - Time Rush","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050007,"className":"STF04_127_1_Lv2","name":"[Lv2] Vaivora Vision - Wicked Desire","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"addMAtk":649,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050008,"className":"STF04_127_2_Lv2","name":"[Lv2] Vaivora Vision - Icy Snow Bubble","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050009,"className":"TBW04_126_Lv2","name":"[Lv2] Vaivora Vision - Reinforced Bowstring","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050010,"className":"TBW04_126_1_Lv2","name":"[Lv2] Vaivora Vision - Orbital Arrow","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050011,"className":"BOW04_126_Lv2","name":"[Lv2] Vaivora Vision - Double Marking","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050012,"className":"MAC04_129_Lv2","name":"[Lv2] Vaivora Vision - Mass Heal: Freeze","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050013,"className":"MAC04_129_1_Lv2","name":"[Lv2] Vaivora Vision - Sacred Armor","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050014,"className":"TMAC04_118_Lv2","name":"[Lv2] Vaivora Vision - Convict","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050015,"className":"TMAC04_118_1_Lv2","name":"[Lv2] Vaivora Vision - Outrage","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050016,"className":"TMAC04_118_2_Lv2","name":"[Lv2] Vaivora Vision - Desition","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050017,"className":"SPR04_127_Lv2","name":"[Lv2] Vaivora Vision - Rete Shooter","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Spear","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050018,"className":"SPR04_127_1_Lv2","name":"[Lv2] Vaivora Vision - Javelin","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Spear","minLevel":450,"aries":1089,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050019,"className":"TSP04_128_Lv2","name":"[Lv2] Vaivora Vision - Halberd","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Spear","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050020,"className":"TSP04_128_1_Lv2","name":"[Lv2] Vaivora Vision - Grind","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Spear","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050021,"className":"DAG04_123_Lv2","name":"[Lv2] Vaivora Vision - Cursed Dagger","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050022,"className":"DAG04_123_1_Lv2","name":"[Lv2] Vaivora Vision - Shadow Clone","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050023,"className":"DAG04_123_2_Lv2","name":"[Lv2] Vaivora Vision - Carpet Bombing","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"strike":1096,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050024,"className":"DAG04_123_3_Lv2","name":"[Lv2] Vaivora Vision - Phantom Blade","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"aries":1096,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050025,"className":"DAG04_123_4_Lv2","name":"[Lv2] Vaivora Vision - Coordination","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050026,"className":"TSF04_129_Lv2","name":"[Lv2] Vaivora Vision - Stone-slinger","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050027,"className":"TSF04_129_1_Lv2","name":"[Lv2] Vaivora Vision - Diffuse Reflection","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050028,"className":"TSF04_129_2_Lv2","name":"[Lv2] Vaivora Vision - Fire Bolt","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050029,"className":"PST04_122_Lv2","name":"[Lv2] Vaivora Vision - Cryolite Bullet","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050030,"className":"PST04_122_1_Lv2","name":"[Lv2] Vaivora Vision - Renovate Trigger","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050031,"className":"RAP04_124_Lv2","name":"[Lv2] Vaivora Vision - Leventador","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"aries":1089,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050032,"className":"CAN04_118_Lv2","name":"[Lv2] Vaivora Vision - Air Burst","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":450,"addMinAtk":1958,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050033,"className":"MUS04_118_Lv2","name":"[Lv2] Vaivora Vision - Armor-piercing Shell","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":450,"addMaxAtk":1128,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050034,"className":"MUS04_118_1_Lv2","name":"[Lv2] Vaivora Vision - Triple Steps Single Shot","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050035,"className":"TRK04_111_Lv2","name":"[Lv2] Vaivora Vision - Coordination","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050036,"className":"SHD04_122_Lv2","name":"[Lv2] Vaivora Vision - Concentrated Defense","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"material":"Shield","script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050037,"className":"BOW04_126_1_Lv2","name":"[Lv2] Vaivora Vision - Cluster Bomb","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050038,"className":"TSW04_126_2_Lv2","name":"[Lv2] Vaivora Vision - Wedge Blast","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"slash":1084,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050039,"className":"TSP04_128_2_Lv2","name":"[Lv2] Vaivora Vision - Matchless","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Spear","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050040,"className":"RAP04_124_1_Lv2","name":"[Lv2] Vaivora Vision - Banderilla","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050041,"className":"PST04_122_2_Lv2","name":"[Lv2] Vaivora Vision - Speedloader","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050042,"className":"CAN04_118_1_Lv2","name":"[Lv2] Vaivora Vision - Centerfire","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050043,"className":"TSF04_129_3_Lv2","name":"[Lv2] Vaivora Vision - Biased Gravity","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050044,"className":"TMAC04_118_3_Lv2","name":"[Lv2] Vaivora Vision - Necrosis","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050045,"className":"STF04_127_3_Lv2","name":"[Lv2] Vaivora Vision - Rune of Vigilance","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050046,"className":"SHD04_122_1_Lv2","name":"[Lv2] Vaivora Vision - Coordination","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"material":"Shield","script":{"strArg":"Vibora","numArg1":2}},{"itemId":11050047,"className":"SWD04_126_Lv3","name":"[Lv3] Vaivora Vision - Echo","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050048,"className":"SWD04_126_1_Lv3","name":"[Lv3] Vaivora Vision - Escudo Espada","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050049,"className":"SWD04_126_2_Lv3","name":"[Lv3] Vaivora Vision - Saber","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"slash":1200,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050050,"className":"SWD04_126_3_Lv3","name":"[Lv3] Vaivora Vision - Coordination","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050051,"className":"TSW04_126_Lv3","name":"[Lv3] Vaivora Vision - Florescence","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050052,"className":"TSW04_126_1_Lv3","name":"[Lv3] Vaivora Vision - Dual Sword","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050053,"className":"STF04_127_Lv3","name":"[Lv3] Vaivora Vision - Time Rush","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050054,"className":"STF04_127_1_Lv3","name":"[Lv3] Vaivora Vision - Wicked Desire","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"addMAtk":714,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050055,"className":"STF04_127_2_Lv3","name":"[Lv3] Vaivora Vision - Icy Snow Bubble","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050056,"className":"TBW04_126_Lv3","name":"[Lv3] Vaivora Vision - Reinforced Bowstring","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050057,"className":"TBW04_126_1_Lv3","name":"[Lv3] Vaivora Vision - Orbital Arrow","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050058,"className":"BOW04_126_Lv3","name":"[Lv3] Vaivora Vision - Double Marking","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050059,"className":"MAC04_129_Lv3","name":"[Lv3] Vaivora Vision - Mass Heal: Freeze","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050060,"className":"MAC04_129_1_Lv3","name":"[Lv3] Vaivora Vision - Sacred Armor","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050061,"className":"TMAC04_118_Lv3","name":"[Lv3] Vaivora Vision - Convict","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050062,"className":"TMAC04_118_1_Lv3","name":"[Lv3] Vaivora Vision - Outrage","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050063,"className":"TMAC04_118_2_Lv3","name":"[Lv3] Vaivora Vision - Desition","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050064,"className":"SPR04_127_Lv3","name":"[Lv3] Vaivora Vision - Rete Shooter","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Spear","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050065,"className":"SPR04_127_1_Lv3","name":"[Lv3] Vaivora Vision - Javelin","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Spear","minLevel":450,"aries":1198,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050066,"className":"TSP04_128_Lv3","name":"[Lv3] Vaivora Vision - Halberd","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Spear","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050067,"className":"TSP04_128_1_Lv3","name":"[Lv3] Vaivora Vision - Grind","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Spear","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050068,"className":"DAG04_123_Lv3","name":"[Lv3] Vaivora Vision - Cursed Dagger","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050069,"className":"DAG04_123_1_Lv3","name":"[Lv3] Vaivora Vision - Shadow Clone","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050070,"className":"DAG04_123_2_Lv3","name":"[Lv3] Vaivora Vision - Carpet Bombing","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"strike":1205,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050071,"className":"DAG04_123_3_Lv3","name":"[Lv3] Vaivora Vision - Phantom Blade","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"aries":1205,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050072,"className":"DAG04_123_4_Lv3","name":"[Lv3] Vaivora Vision - Coordination","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050073,"className":"TSF04_129_Lv3","name":"[Lv3] Vaivora Vision - Stone-slinger","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050074,"className":"TSF04_129_1_Lv3","name":"[Lv3] Vaivora Vision - Diffuse Reflection","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050075,"className":"TSF04_129_2_Lv3","name":"[Lv3] Vaivora Vision - Fire Bolt","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050076,"className":"PST04_122_Lv3","name":"[Lv3] Vaivora Vision - Cryolite Bullet","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050077,"className":"PST04_122_1_Lv3","name":"[Lv3] Vaivora Vision - Renovate Trigger","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050078,"className":"RAP04_124_Lv3","name":"[Lv3] Vaivora Vision - Leventador","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"aries":1198,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050079,"className":"CAN04_118_Lv3","name":"[Lv3] Vaivora Vision - Air Burst","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":450,"addMinAtk":2154,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050080,"className":"MUS04_118_Lv3","name":"[Lv3] Vaivora Vision - Armor-piercing Shell","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":450,"addMaxAtk":1240,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050081,"className":"MUS04_118_1_Lv3","name":"[Lv3] Vaivora Vision - Triple Steps Single Shot","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050082,"className":"TRK04_111_Lv3","name":"[Lv3] Vaivora Vision - Coordination","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050083,"className":"SHD04_122_Lv3","name":"[Lv3] Vaivora Vision - Concentrated Defense","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"material":"Shield","script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050084,"className":"BOW04_126_1_Lv3","name":"[Lv3] Vaivora Vision - Cluster Bomb","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050085,"className":"TSW04_126_2_Lv3","name":"[Lv3] Vaivora Vision - Wedge Blast","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"slash":1192,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050086,"className":"TSP04_128_2_Lv3","name":"[Lv3] Vaivora Vision - Matchless","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Spear","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050087,"className":"RAP04_124_1_Lv3","name":"[Lv3] Vaivora Vision - Banderilla","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050088,"className":"PST04_122_2_Lv3","name":"[Lv3] Vaivora Vision - Speedloader","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050089,"className":"CAN04_118_1_Lv3","name":"[Lv3] Vaivora Vision - Centerfire","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050090,"className":"TSF04_129_3_Lv3","name":"[Lv3] Vaivora Vision - Biased Gravity","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050091,"className":"TMAC04_118_3_Lv3","name":"[Lv3] Vaivora Vision - Necrosis","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050092,"className":"STF04_127_3_Lv3","name":"[Lv3] Vaivora Vision - Rune of Vigilance","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":450,"script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050093,"className":"SHD04_122_1_Lv3","name":"[Lv3] Vaivora Vision - Coordination","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Arcane","minLevel":450,"material":"Shield","script":{"strArg":"Vibora","numArg1":3}},{"itemId":11050094,"className":"SWD04_126_Lv4","name":"[Lv4] Vaivora Vision - Echo","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050095,"className":"SWD04_126_1_Lv4","name":"[Lv4] Vaivora Vision - Escudo Espada","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050096,"className":"SWD04_126_2_Lv4","name":"[Lv4] Vaivora Vision - Saber","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":460,"slash":1200,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050097,"className":"SWD04_126_3_Lv4","name":"[Lv4] Vaivora Vision - Coordination","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050098,"className":"TSW04_126_Lv4","name":"[Lv4] Vaivora Vision - Florescence","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050099,"className":"TSW04_126_1_Lv4","name":"[Lv4] Vaivora Vision - Dual Sword","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050100,"className":"STF04_127_Lv4","name":"[Lv4] Vaivora Vision - Time Rush","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050101,"className":"STF04_127_1_Lv4","name":"[Lv4] Vaivora Vision - Wicked Desire","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":460,"addMAtk":714,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050102,"className":"STF04_127_2_Lv4","name":"[Lv4] Vaivora Vision - Icy Snow Bubble","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050103,"className":"TBW04_126_Lv4","name":"[Lv4] Vaivora Vision - Reinforced Bowstring","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050104,"className":"TBW04_126_1_Lv4","name":"[Lv4] Vaivora Vision - Orbital Arrow","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050105,"className":"BOW04_126_Lv4","name":"[Lv4] Vaivora Vision - Double Marking","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050106,"className":"MAC04_129_Lv4","name":"[Lv4] Vaivora Vision - Mass Heal: Freeze","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050107,"className":"MAC04_129_1_Lv4","name":"[Lv4] Vaivora Vision - Sacred Armor","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050108,"className":"TMAC04_118_Lv4","name":"[Lv4] Vaivora Vision - Convict","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050109,"className":"TMAC04_118_1_Lv4","name":"[Lv4] Vaivora Vision - Outrage","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050110,"className":"TMAC04_118_2_Lv4","name":"[Lv4] Vaivora Vision - Desition","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050111,"className":"SPR04_127_Lv4","name":"[Lv4] Vaivora Vision - Rete Shooter","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Spear","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050112,"className":"SPR04_127_1_Lv4","name":"[Lv4] Vaivora Vision - Javelin","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Spear","minLevel":460,"aries":1198,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050113,"className":"TSP04_128_Lv4","name":"[Lv4] Vaivora Vision - Halberd","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Spear","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050114,"className":"TSP04_128_1_Lv4","name":"[Lv4] Vaivora Vision - Grind","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Spear","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050115,"className":"DAG04_123_Lv4","name":"[Lv4] Vaivora Vision - Cursed Dagger","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050116,"className":"DAG04_123_1_Lv4","name":"[Lv4] Vaivora Vision - Shadow Clone","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050117,"className":"DAG04_123_2_Lv4","name":"[Lv4] Vaivora Vision - Carpet Bombing","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":460,"strike":1205,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050118,"className":"DAG04_123_3_Lv4","name":"[Lv4] Vaivora Vision - Phantom Blade","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":460,"aries":1205,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050119,"className":"DAG04_123_4_Lv4","name":"[Lv4] Vaivora Vision - Coordination","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050120,"className":"TSF04_129_Lv4","name":"[Lv4] Vaivora Vision - Stone-slinger","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050121,"className":"TSF04_129_1_Lv4","name":"[Lv4] Vaivora Vision - Diffuse Reflection","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050122,"className":"TSF04_129_2_Lv4","name":"[Lv4] Vaivora Vision - Fire Bolt","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050123,"className":"PST04_122_Lv4","name":"[Lv4] Vaivora Vision - Cryolite Bullet","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050124,"className":"PST04_122_1_Lv4","name":"[Lv4] Vaivora Vision - Renovate Trigger","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050125,"className":"RAP04_124_Lv4","name":"[Lv4] Vaivora Vision - Leventador","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":460,"aries":1198,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050126,"className":"CAN04_118_Lv4","name":"[Lv4] Vaivora Vision - Air Burst","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":460,"addMinAtk":2154,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050127,"className":"MUS04_118_Lv4","name":"[Lv4] Vaivora Vision - Armor-piercing Shell","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":460,"addMaxAtk":1240,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050128,"className":"MUS04_118_1_Lv4","name":"[Lv4] Vaivora Vision - Triple Steps Single Shot","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050129,"className":"TRK04_111_Lv4","name":"[Lv4] Vaivora Vision - Coordination","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Arcane","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050130,"className":"SHD04_122_Lv4","name":"[Lv4] Vaivora Vision - Concentrated Defense","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Arcane","minLevel":460,"material":"Shield","script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050131,"className":"BOW04_126_1_Lv4","name":"[Lv4] Vaivora Vision - Cluster Bomb","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050132,"className":"TSW04_126_2_Lv4","name":"[Lv4] Vaivora Vision - Wedge Blast","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":460,"slash":1192,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050133,"className":"TSP04_128_2_Lv4","name":"[Lv4] Vaivora Vision - Matchless","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Spear","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050134,"className":"RAP04_124_1_Lv4","name":"[Lv4] Vaivora Vision - Banderilla","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050135,"className":"PST04_122_2_Lv4","name":"[Lv4] Vaivora Vision - Speedloader","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050136,"className":"CAN04_118_1_Lv4","name":"[Lv4] Vaivora Vision - Centerfire","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050137,"className":"TSF04_129_3_Lv4","name":"[Lv4] Vaivora Vision - Biased Gravity","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050138,"className":"TMAC04_118_3_Lv4","name":"[Lv4] Vaivora Vision - Necrosis","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050139,"className":"STF04_127_3_Lv4","name":"[Lv4] Vaivora Vision - Rune of Vigilance","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050140,"className":"SHD04_122_1_Lv4","name":"[Lv4] Vaivora Vision - Coordination","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Arcane","minLevel":460,"material":"Shield","script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050141,"className":"TSF04_129_4_Lv4","name":"[Lv4] Vaivora Vision - Lewa Advent","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050142,"className":"SWD04_126_4_Lv4","name":"[Lv4] Vaivora Vision - Boreas","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":460,"strike":1205,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050143,"className":"TMAC04_118_4_Lv4","name":"[Lv4] Vaivora Vision - Agni","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050144,"className":"DAG04_123_5_Lv4","name":"[Lv4] Vaivora Vision - Ecliptic Blades","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050145,"className":"MUS04_118_2_Lv4","name":"[Lv4] Vaivora Vision - Lever Action","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050146,"className":"DAG04_123_6_Lv4","name":"[Lv4] Vaivora Vision - Echo","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050147,"className":"SHD04_122_2_Lv4","name":"[Lv4] Vaivora Vision - Echo","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Arcane","minLevel":460,"material":"Shield","script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050148,"className":"TSF04_129_5_Lv4","name":"[Lv4] Vaivora Vision - Red Tiger Claw","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050149,"className":"STF04_127_4_Lv4","name":"[Lv4] Vaivora Vision - Distortion","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050150,"className":"TSF04_129_6_Lv4","name":"[Lv4] Vaivora Vision - Annihilate","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050151,"className":"TMAC04_118_5_Lv4","name":"[Lv4] Vaivora Vision - Thunder Kick","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":460,"strike":1192,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050152,"className":"TMAC04_118_6_Lv4","name":"[Lv4] Vaivora Vision - Sacred Lightning","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050153,"className":"PST04_122_3_Lv4","name":"[Lv4] Vaivora Vision - Sabotage","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050154,"className":"DAG04_123_7_Lv4","name":"[Lv4] Vaivora Vision - Gasp Up","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050155,"className":"TMAC04_118_7_Lv4","name":"[Lv4] Vaivora Vision - Conviction","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":460,"strike":1192,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050156,"className":"TSF04_129_8_Lv4","name":"[Lv4] Vaivora Vision - Demonische","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050157,"className":"TSF04_129_7_Lv4","name":"[Lv4] Vaivora Vision - Immortality","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050158,"className":"MAC04_129_2_Lv4","name":"[Lv4] Vaivora Vision - Protecting Grace","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050159,"className":"PST04_122_4_Lv4","name":"[Lv4] Vaivora Vision - Critical Edge","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050160,"className":"TBW04_126_2_Lv4","name":"[Lv4] Vaivora Vision - Hawking","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050161,"className":"DAG04_123_8_Lv4","name":"[Lv4] Vaivora Vision - Rapid Growth","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050162,"className":"SWD04_126_5_Lv4","name":"[Lv4] Vaivora Vision - Serrated Shield","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":460,"strike":1205,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050163,"className":"MAC04_129_3_Lv4","name":"[Lv4] Vaivora Vision - Memory Leap","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050164,"className":"TRK04_111_1_Lv4","name":"[Lv4] Vaivora Vision - Bloody Fight","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Arcane","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050165,"className":"TBW04_126_3_Lv4","name":"[Lv4] Vaivora Vision - Shadowless Poison","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050166,"className":"SWD04_126_6_Lv4","name":"[Lv4] Vaivora Vision - Doble Attaque","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050167,"className":"SWD04_126_7_Lv4","name":"[Lv4] Vaivora Vision - Arena","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050168,"className":"TMAC04_118_8_Lv4","name":"[Lv4] Vaivora Vision - Ema","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050169,"className":"TSF04_129_9_Lv4","name":"[Lv4] Vaivora Vision - Electric Flow","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050170,"className":"TBW04_126_4_Lv4","name":"[Lv4] Vaivora Vision - Jusalnegi","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050171,"className":"TSF04_129_10_Lv4","name":"[Lv4] Vaivora Vision - Vigilant Charm","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050172,"className":"TBW04_126_5_Lv4","name":"[Lv4] Vaivora Vision - Tempest","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050173,"className":"PST04_122_5_Lv4","name":"[Lv4] Vaivora Vision - Carbine","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Gun","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050174,"className":"DAG04_123_9_Lv4","name":"[Lv4] Vaivora Vision - Superstring","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050175,"className":"TSF04_129_11_Lv4","name":"[Lv4] Vaivora Vision - Blood Butterfly","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Staff","minLevel":460,"addMAtk":714,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050176,"className":"DAG04_123_10_Lv4","name":"[Lv4] Vaivora Vision - Empowering","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050177,"className":"SWD04_126_8_Lv4","name":"[Lv4] Vaivora Vision - Pounding Rage","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050178,"className":"TMAC04_118_9_Lv4","name":"[Lv4] Vaivora Vision - Principle of Emptiness","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":460,"strike":1192,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050179,"className":"TMAC04_118_10_Lv4","name":"[Lv4] Vaivora Vision - Soul of Forest","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":460,"strike":1192,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050180,"className":"MAC04_129_4_Lv4","name":"[Lv4] Vaivora Vision - Aura","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050181,"className":"MAC04_129_5_Lv4","name":"[Lv4] Vaivora Vision - Longing","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Mace","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050182,"className":"SWD04_126_9_Lv4","name":"[Lv4] Vaivora Vision - Assemble","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Sword","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050183,"className":"DAG04_123_11_Lv4","name":"[Lv4] Vaivora Vision - Law of the Jungle","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050184,"className":"BOW04_126_2_Lv4","name":"[Lv4] Vaivora Vision - Obliterate","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050185,"className":"SHD04_122_3_Lv4","name":"[Lv4] Vaivora Vision - Iron Wall","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Arcane","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050186,"className":"TBW04_126_6_Lv4","name":"[Lv4] Vaivora Vision - Companion Lover","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050187,"className":"TSP04_128_3_Lv4","name":"[Lv4] Vaivora Vision - The Dragon and the Tiger","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Spear","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":11050188,"className":"TBW04_126_7_Lv4","name":"[Lv4] Vaivora Vision - MAX Power","type":"Equip","group":"Arcane","weight":10,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Arcane","equipType2":"Bow","minLevel":460,"script":{"strArg":"Vibora","numArg1":4}},{"itemId":620001,"className":"Ark_str","name":"Ark - STR","type":"Equip","group":"Ark","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":420,"script":{"strArg":"Ark"}},{"itemId":620002,"className":"Ark_dex","name":"Ark - DEX","type":"Equip","group":"Ark","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":420,"script":{"strArg":"Ark"}},{"itemId":620003,"className":"Ark_int","name":"Ark - INT","type":"Equip","group":"Ark","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":420,"script":{"strArg":"Ark"}},{"itemId":620004,"className":"Ark_mna","name":"Ark - SPR","type":"Equip","group":"Ark","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":420,"script":{"strArg":"Ark"}},{"itemId":620005,"className":"Ark_wind","name":"Ark - Swift","type":"Equip","group":"Ark","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":420,"script":{"strArg":"Ark"}},{"itemId":620006,"className":"Ark_thunderbolt","name":"Ark - Thunder","type":"Equip","group":"Ark","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":420,"script":{"strArg":"Ark"}},{"itemId":620007,"className":"Ark_storm","name":"Ark - Storm","type":"Equip","group":"Ark","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":420,"script":{"strArg":"Ark"}},{"itemId":620009,"className":"Ark_dispersion","name":"Ark - Disperse","type":"Equip","group":"Ark","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":420,"script":{"strArg":"Ark"}},{"itemId":620010,"className":"Ark_punishment","name":"Ark - Divine Retribution","type":"Equip","group":"Ark","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":420,"script":{"strArg":"Ark"}},{"itemId":620011,"className":"Ark_overpower","name":"Ark - Suppress","type":"Equip","group":"Ark","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":420,"script":{"strArg":"Ark"}},{"itemId":620012,"className":"Ark_healingwave","name":"Ark - Healing Wave","type":"Equip","group":"Ark","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":420,"script":{"strArg":"Ark"}},{"itemId":636640,"className":"PVP_Ark_wind","name":"Ark - Swift (20 minutes)","type":"Equip","group":"Ark","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":1,"script":{"strArg":"pvp_Mine"}},{"itemId":636641,"className":"PVP_Ark_thunderbolt","name":"Ark - Thunder (20 minutes)","type":"Equip","group":"Ark","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":1,"script":{"strArg":"pvp_Mine"}},{"itemId":636642,"className":"PVP_Ark_storm","name":"Ark - Storm (20 minutes)","type":"Equip","group":"Ark","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":1,"script":{"strArg":"pvp_Mine"}},{"itemId":636643,"className":"PVP_Ark_dispersion","name":"Ark - Disperse (20 minutes)","type":"Equip","group":"Ark","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":1,"script":{"strArg":"pvp_Mine"}},{"itemId":636644,"className":"PVP_Ark_punishment","name":"Ark - Divine Retribution (20 minutes)","type":"Equip","group":"Ark","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":1,"script":{"strArg":"pvp_Mine"}},{"itemId":636645,"className":"PVP_Ark_overpower","name":"Ark - Suppress (20 minutes)","type":"Equip","group":"Ark","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":1,"script":{"strArg":"pvp_Mine"}},{"itemId":636698,"className":"PVP_Ark_healingwave","name":"Ark - Healing Wave (20 minutes)","type":"Equip","group":"Ark","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":1,"script":{"strArg":"pvp_Mine"}},{"itemId":10315001,"className":"Event_Ark_wind","name":"[Event] Ark - Swift","type":"Equip","group":"Ark","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":420,"script":{"strArg":"Ark"}},{"itemId":10315002,"className":"Event_Ark_thunderbolt","name":"[Event] Ark - Thunder","type":"Equip","group":"Ark","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":420,"script":{"strArg":"Ark"}},{"itemId":10315003,"className":"Event_Ark_storm","name":"[Event] Ark - Storm","type":"Equip","group":"Ark","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":420,"script":{"strArg":"Ark"}},{"itemId":10315004,"className":"Event_Ark_dispersion","name":"[Event] Ark - Disperse","type":"Equip","group":"Ark","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":420,"script":{"strArg":"Ark"}},{"itemId":10315005,"className":"Event_Ark_punishment","name":"[Event] Ark - Divine Retribution","type":"Equip","group":"Ark","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":420,"script":{"strArg":"Ark"}},{"itemId":10315006,"className":"Event_Ark_overpower","name":"[Event] Ark - Suppress","type":"Equip","group":"Ark","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":420,"script":{"strArg":"Ark"}},{"itemId":10315007,"className":"Event_Ark_healingwave","name":"[Event] Ark - Healing Wave","type":"Equip","group":"Ark","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":420,"script":{"strArg":"Ark"}},{"itemId":11040002,"className":"Ark_dummy","name":"Ark - Dummy","type":"Equip","group":"Ark","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Ark","minLevel":420,"script":{"strArg":"Ark"}},{"itemId":11000,"className":"NoArmband","name":"Empty_armband","type":"Equip","group":"Armband","weight":0,"maxStack":1,"price":0,"sellPrice":0},{"itemId":2,"className":"NoHat","name":"Empty_Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":4,"className":"NoOuter","name":"Empty_Outer","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":5,"className":"NoPants","name":"Empty_Pants","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Pants","minLevel":1},{"itemId":6,"className":"NoGloves","name":"Empty_Gloves","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Gloves","minLevel":1},{"itemId":7,"className":"NoBoots","name":"Empty_Boots","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Boots","minLevel":1},{"itemId":8,"className":"NoShirt","name":"NA_Shirt","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Shirt","minLevel":1},{"itemId":9,"className":"NoRing","name":"Empty_Ring","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":10000,"sellPrice":500},{"itemId":10,"className":"NoNeck","name":"Empty_Neck","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0},{"itemId":12101,"className":"NoHair","name":"No_hair","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0},{"itemId":12111,"className":"HAIR_M_101","name":"Terius","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"Terius"}},{"itemId":12112,"className":"HAIR_M_102","name":"Dandy Wave Curl","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"DandyWaveCurl"}},{"itemId":12113,"className":"HAIR_M_103","name":"Short Cut","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"Shortcut"}},{"itemId":12114,"className":"HAIR_M_104","name":"Asymmetrical Short Cut","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"UnbalancedShortcut"}},{"itemId":12115,"className":"HAIR_M_105","name":"Regent","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"Regent"}},{"itemId":12116,"className":"HAIR_M_106","name":"Short Shaggy","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"ShortShaggy"}},{"itemId":12117,"className":"HAIR_M_107","name":"Slicked-back Hair","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"SlickedBack"}},{"itemId":12118,"className":"HAIR_M_108","name":"Baby Perm","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"Baby"}},{"itemId":12119,"className":"HAIR_M_109","name":"Dandy","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"Dandy"}},{"itemId":12120,"className":"HAIR_M_110","name":"Short Ponytail","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"ShortPonyTail"}},{"itemId":12121,"className":"HAIR_M_111","name":"Noble Wave","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"NovelWave"}},{"itemId":12122,"className":"HAIR_M_112","name":"Shadow Perm","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"ShadowPerm"}},{"itemId":12123,"className":"HAIR_M_113","name":"Root Lifted Wave Hairstyle","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"LifterWaveCut"}},{"itemId":12124,"className":"HAIR_M_114","name":"Noble Ponytail","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"NovlePonyTail"}},{"itemId":12125,"className":"HAIR_M_116","name":"Cockatrice Head (Male)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"CockatriesM"}},{"itemId":12126,"className":"HAIR_M_117","name":"Quiff Style","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"Onmyoji"}},{"itemId":12127,"className":"HAIR_M_118","name":"Noble Dandy Cut","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"Necromancer"}},{"itemId":12128,"className":"HAIR_M_119","name":"Curling Back Perm","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"featherfoot"}},{"itemId":12129,"className":"HAIR_M_120","name":"Upper-bind Two-block","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"shinobi"}},{"itemId":12130,"className":"HAIR_M_121","name":"Twoblock","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"mergen"}},{"itemId":12131,"className":"HAIR_M_122","name":"Prince Waves","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"plaguedoctor"}},{"itemId":12132,"className":"HAIR_M_123","name":"Medium Cut","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"shortwave"}},{"itemId":12133,"className":"HAIR_M_124","name":"Asymmetric Long Cut","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"falconer"}},{"itemId":12134,"className":"HAIR_M_125","name":"Retro Layered","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"shepherd"}},{"itemId":12135,"className":"HAIR_M_126","name":"Fried Chicken Poodle Head (Male)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_poodle01"}},{"itemId":12136,"className":"HAIR_M_127","name":"Tuxedo Cat Head (Male)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_tiecat01"}},{"itemId":12137,"className":"HAIR_M_128","name":"Popolion Head (Male)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_poporion01"}},{"itemId":12138,"className":"HAIR_M_129","name":"Penguin Head (Male)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_penguin02"}},{"itemId":12139,"className":"HAIR_M_130","name":"Hanaming Head (Male)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_hanaming01"}},{"itemId":12140,"className":"HAIR_M_131","name":"Kepa Head (Male)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_kepa01"}},{"itemId":12141,"className":"HAIR_M_132","name":"Bunny Boy","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"bunnyboy"}},{"itemId":12142,"className":"HAIR_M_133","name":"Two-tone Dandy Cut","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"mintpink"}},{"itemId":12143,"className":"HAIR_M_134","name":"Noble Wave Ponytail ","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"redbridge"}},{"itemId":12144,"className":"HAIR_M_135","name":"Lamb Towel Hat (Male)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"sheeptowelM"}},{"itemId":12145,"className":"HAIR_M_136","name":"Bangs Cut","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"banghair"}},{"itemId":12146,"className":"HAIR_M_137","name":"Short Regent Hair","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"bulletmarker"}},{"itemId":12147,"className":"HAIR_M_138","name":"Two-block Ponytail","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"undercuttail"}},{"itemId":12148,"className":"HAIR_M_139","name":"Side Swept","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"sideswept"}},{"itemId":12149,"className":"HAIR_M_140","name":"Volume Wave","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"volumewavecurl"}},{"itemId":12150,"className":"HAIR_M_141","name":"Slight Wavy","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"slightwavy"}},{"itemId":12151,"className":"HAIR_M_142","name":"Wavy Ponytail","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"wavyponytail"}},{"itemId":12152,"className":"HAIR_M_143","name":"Bucket Iron Perm","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"hiphop_male_hair_cap"}},{"itemId":12153,"className":"HAIR_M_144","name":"Iron Perm","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"hiphop_male_hair_nocap"}},{"itemId":12154,"className":"HAIR_M_145","name":"Long Moisty Wave","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"20halloween_seaweed_hair"}},{"itemId":12155,"className":"HAIR_M_146","name":"Retro Long Quiff","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"retro_long_regent"}},{"itemId":12156,"className":"HAIR_M_147","name":"ITEM_20221219_028317","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"ep14furry01_m"}},{"itemId":12501,"className":"HAIR_F_101","name":"Curvy Wave Twintail","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"VolumeWaveTwinTail"}},{"itemId":12502,"className":"HAIR_F_102","name":"Curvy Wave","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"VolumeWave"}},{"itemId":12503,"className":"HAIR_F_103","name":"Short Cut","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"Shortcut"}},{"itemId":12504,"className":"HAIR_F_104","name":"Long Shaggy","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"LongShaggy"}},{"itemId":12505,"className":"HAIR_F_105","name":"Volume Curl","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"Volume"}},{"itemId":12506,"className":"HAIR_F_106","name":"Long Ponytail","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"LongPonyTail"}},{"itemId":12507,"className":"HAIR_F_107","name":"Twintail","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"TwinTail"}},{"itemId":12508,"className":"HAIR_F_108","name":"Reggae Ponytail","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"RPonyTail"}},{"itemId":12509,"className":"HAIR_F_109","name":"Double Bun","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"DoubleBurn"}},{"itemId":12510,"className":"HAIR_F_110","name":"Long Layered","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"LongLayered"}},{"itemId":12511,"className":"HAIR_F_111","name":"Short Twin Tail","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"ShortTwinTail"}},{"itemId":12512,"className":"HAIR_F_112","name":"Tied Long Wave","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"TiedLongWave"}},{"itemId":12513,"className":"HAIR_F_113","name":"Long Wave Twintail","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"LongWaveTwinTail"}},{"itemId":12514,"className":"HAIR_F_114","name":"Short Ponytail","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"ShortPonyTail"}},{"itemId":12515,"className":"HAIR_F_115","name":"Noble Long","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"NovleLong"}},{"itemId":12516,"className":"HAIR_F_116","name":"Short Cut Firm","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"ShortCutPerm"}},{"itemId":12517,"className":"HAIR_F_117","name":"Cockatrice Head (Female)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"CockatriesF"}},{"itemId":12518,"className":"HAIR_F_118","name":"Long-Wave Perm","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"Jullahair"}},{"itemId":12519,"className":"HAIR_F_119","name":"Braid Ponytail","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"zealot"}},{"itemId":12520,"className":"HAIR_F_120","name":"Natural Wave","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"silvia"}},{"itemId":12521,"className":"HAIR_F_121","name":"Noble Wave Perm","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"warrock2"}},{"itemId":12522,"className":"HAIR_F_122","name":"Ribbon-ornamented Double Buns","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"puppeteer"}},{"itemId":12523,"className":"HAIR_F_123","name":"Asymmetric Blend Cut","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"scout"}},{"itemId":12524,"className":"HAIR_F_124","name":"Upstyle Hair","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"ploana"}},{"itemId":12525,"className":"HAIR_F_125","name":"Natural Ponytail","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"tyurt"}},{"itemId":12526,"className":"HAIR_F_126","name":"Romantic Bun","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"nature_waveup"}},{"itemId":12527,"className":"HAIR_F_127","name":"Fried Chicken Poodle Head (Female)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_poodle"}},{"itemId":12528,"className":"HAIR_F_128","name":"Tuxedo Cat Head (Female)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_tiecat"}},{"itemId":12529,"className":"HAIR_F_129","name":"Popolion Head (Female)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_poporion"}},{"itemId":12530,"className":"HAIR_F_130","name":"Penguin Head (Female)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_penguin02"}},{"itemId":12531,"className":"HAIR_F_131","name":"Hanaming Head (Female)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_hanaming01"}},{"itemId":12532,"className":"HAIR_F_132","name":"Kepa Head (Female)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_kepa01"}},{"itemId":12533,"className":"HAIR_F_133","name":"Goth Loli","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"gothloli_hair"}},{"itemId":12534,"className":"HAIR_F_134","name":"Side Ponytail","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"waveponytail"}},{"itemId":12535,"className":"HAIR_F_135","name":"Choppy Bangs","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"pinkgradation"}},{"itemId":12536,"className":"HAIR_F_136","name":"Lamb Towel Hat (Female)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"sheeptowelF"}},{"itemId":12537,"className":"HAIR_F_137","name":"Shinobi","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"hunter"}},{"itemId":12538,"className":"HAIR_F_138","name":"Fishtail","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"braidtwin"}},{"itemId":12539,"className":"HAIR_F_139","name":"Twintail Chignon","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"twintailchignon"}},{"itemId":12540,"className":"HAIR_F_140","name":"French Bob","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"frenchbob"}},{"itemId":12541,"className":"HAIR_F_141","name":"Braid Long","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"braidlong"}},{"itemId":12542,"className":"HAIR_F_142","name":"Classic Bob","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"classicbob"}},{"itemId":12543,"className":"HAIR_F_143","name":"Twin Dumpling Long Wave","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"twindumplinglongwave"}},{"itemId":12547,"className":"HAIR_F_147","name":"Snapback Bridge Long","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"hair_hiphop_female_hair_cap"}},{"itemId":12548,"className":"HAIR_F_148","name":"Bridge Long","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"hair_hiphop_female_hair_nocap"}},{"itemId":12549,"className":"HAIR_F_149","name":"Tangle Up","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"20halloween_tangle_up_hair"}},{"itemId":12550,"className":"HAIR_F_150","name":"Semi Wave Long Perm","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"semi_wave_long"}},{"itemId":12551,"className":"HAIR_F_151","name":"ITEM_20221219_028318","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"ep14furry01_f"}},{"itemId":12552,"className":"HAIR_F_152","name":"ITEM_20230308_028371","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"ep15snowknight"}},{"itemId":18001,"className":"LENS01_001","name":"Yellow Contact Lenses","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye01_yellow"}},{"itemId":18002,"className":"LENS01_002","name":"Violet Contact Lenses","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye01_purple"}},{"itemId":18003,"className":"LENS01_003","name":"Crimson Contact Lenses","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye01_red"}},{"itemId":18004,"className":"LENS01_004","name":"Black Contact Lenses","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye01_black"}},{"itemId":18005,"className":"LENS01_005","name":"Pink Heart Contact Lenses","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye02_heart"}},{"itemId":18006,"className":"LENS01_006","name":"Shiny Contact Lenses","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye02_star"}},{"itemId":18007,"className":"LENS01_007","name":"Grey Contact Lenses","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye01_gray"}},{"itemId":18008,"className":"LENS01_008","name":"Orange Contact Lenses","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye01_orange"}},{"itemId":18009,"className":"LENS01_009","name":"Brown Contact Lenses","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye01_brown"}},{"itemId":18010,"className":"LENS01_010","name":"Blue Lense","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye01_blue"}},{"itemId":18011,"className":"LENS01_011","name":"Twinkle Purple Lenses","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye01_twinklePurple"}},{"itemId":18012,"className":"LENS01_012","name":"Twinkle Forest Lenses","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye01_twinkleForest"}},{"itemId":18013,"className":"LENS01_013","name":"Amber Cross Lenses","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye02_XCross"}},{"itemId":18014,"className":"LENS01_014","name":"Black Drop Lenses","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye01_blueDrop"}},{"itemId":18015,"className":"LENS01_015","name":"Scarlet Lens","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye01_scarlet"}},{"itemId":18016,"className":"LENS01_016","name":"Emerald Lens","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye01_emerald"}},{"itemId":18017,"className":"LENS01_017","name":"Cat Eye Blue Lense","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye01_cateye_blue"}},{"itemId":18018,"className":"LENS01_018","name":"Cat Eye Brown Lense","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye01_cateye_brown"}},{"itemId":18019,"className":"LENS01_015_30d","name":"Scarlet Lense - 30 Days","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye01_scarlet"}},{"itemId":18020,"className":"LENS01_016_30d","name":"Emerald Lense - 30 Days","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye01_emerald"}},{"itemId":18021,"className":"LENS01_017_30d","name":"Cat Eye Blue Lense - 30 Days","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye01_cateye_blue"}},{"itemId":18022,"className":"LENS01_018_30d","name":"Cat Eye Brown Lense - 30 Days","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye01_cateye_brown"}},{"itemId":18023,"className":"LENS01_019","name":"Fenrir Lense","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye01_wolf"}},{"itemId":18024,"className":"LENS01_010_KOR","name":"Blue Lense","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye01_blue2"}},{"itemId":18025,"className":"LENS01_020","name":"Holy Pink Lense","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Lens","equipType2":"Premium","script":{"strArg":"eye01_angel"}},{"itemId":19003,"className":"Gold_Armor","name":"Golden Dog Warrior Helmet","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_goldarmor"}},{"itemId":221101,"className":"SHD01_101","name":"Wooden Shield","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":240,"sellPrice":48,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield"},{"itemId":221102,"className":"SHD01_102","name":"Wooden Buckler","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Shield","minLevel":15,"def":172,"mDef":172,"material":"Shield"},{"itemId":221103,"className":"SHD01_103","name":"Wooden Kite Shield","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Shield","minLevel":15,"def":172,"mDef":172,"material":"Shield"},{"itemId":221104,"className":"SHD01_104","name":"Kite Shield","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":1728,"sellPrice":907,"equipType1":"Shield","minLevel":15,"def":172,"mDef":172,"material":"Shield"},{"itemId":221105,"className":"SHD01_105","name":"Round Shield","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":2184,"sellPrice":907,"equipType1":"Shield","minLevel":40,"def":388,"mDef":388,"material":"Shield"},{"itemId":221106,"className":"SHD01_106","name":"Steel Kite Shield","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2184,"sellPrice":907,"equipType1":"Shield","minLevel":40,"def":388,"mDef":388,"material":"Shield"},{"itemId":221107,"className":"SHD01_107","name":"Steel Buckler","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":2184,"sellPrice":1102,"equipType1":"Shield","minLevel":40,"def":388,"mDef":388,"material":"Shield"},{"itemId":221108,"className":"SHD01_108","name":"Machinery Shield","type":"Equip","group":"Armor","weight":160,"maxStack":1,"price":2184,"sellPrice":1621,"equipType1":"Shield","minLevel":40,"def":388,"mDef":388,"material":"Shield"},{"itemId":221109,"className":"SHD01_109","name":"Old Wooden Buckler","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Shield","minLevel":15,"def":172,"mDef":172,"material":"Shield"},{"itemId":221110,"className":"SHD01_110","name":"Old Wooden Kite shield","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Shield","minLevel":15,"def":172,"mDef":172,"material":"Shield"},{"itemId":221111,"className":"SHD01_111","name":"Dunkel Wooden Shield","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":240,"sellPrice":48,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield"},{"itemId":221112,"className":"SHD01_112","name":"Dunkel Wooden Buckler","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Shield","minLevel":15,"def":172,"mDef":172,"material":"Shield"},{"itemId":221113,"className":"SHD01_113","name":"Scallop Shield","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Shield","minLevel":75,"def":691,"mDef":691,"material":"Shield"},{"itemId":221114,"className":"SHD01_114","name":"Pelta Shield","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":9312,"sellPrice":1862,"equipType1":"Shield","minLevel":120,"def":1080,"mDef":1080,"material":"Shield"},{"itemId":221115,"className":"SHD01_115","name":"Fedimian Shield","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":9312,"sellPrice":2582,"equipType1":"Shield","minLevel":120,"def":1080,"mDef":1080,"material":"Shield"},{"itemId":221116,"className":"SHD01_116","name":"Kalkan","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":9312,"sellPrice":2601,"equipType1":"Shield","minLevel":120,"def":1080,"mDef":1080,"material":"Shield"},{"itemId":221117,"className":"SHD01_117","name":"Cavalry Shield","type":"Equip","group":"Armor","weight":90,"maxStack":1,"price":14551,"sellPrice":2930,"equipType1":"Shield","minLevel":170,"def":1512,"mDef":1512,"material":"Shield"},{"itemId":221118,"className":"SHD01_118","name":"Knight Shield","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":14551,"sellPrice":3900,"equipType1":"Shield","minLevel":170,"def":1512,"mDef":1512,"material":"Shield"},{"itemId":221119,"className":"SHD01_119","name":"Tower Shield","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":14551,"sellPrice":3920,"equipType1":"Shield","minLevel":170,"def":1512,"mDef":1512,"material":"Shield"},{"itemId":221120,"className":"SHD01_120","name":"Guardsman Shield","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":19603,"sellPrice":3955,"equipType1":"Shield","minLevel":220,"def":1944,"mDef":1944,"material":"Shield"},{"itemId":221121,"className":"SHD01_121","name":"Claria Shield","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":19603,"sellPrice":4780,"equipType1":"Shield","minLevel":220,"def":1944,"mDef":1944,"material":"Shield"},{"itemId":221122,"className":"SHD01_122","name":"(Faded) Replica Migantis Shield","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":64000,"sellPrice":5000,"equipType1":"Shield","minLevel":270,"def":2376,"mDef":2376,"material":"Shield"},{"itemId":221123,"className":"SHD01_123","name":"(Faded) Replica Pevordimas Shield","type":"Equip","group":"Armor","weight":90,"maxStack":1,"price":96000,"sellPrice":5000,"equipType1":"Shield","minLevel":315,"def":2764,"mDef":2764,"material":"Shield"},{"itemId":221124,"className":"SHD01_124","name":"Practice Shield","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":1728,"sellPrice":0,"equipType1":"Shield","minLevel":15,"def":172,"mDef":172,"material":"Shield"},{"itemId":221125,"className":"SHD01_125","name":"Practice Shield","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":5149,"sellPrice":0,"equipType1":"Shield","minLevel":75,"def":691,"mDef":691,"material":"Shield"},{"itemId":221481,"className":"SHD01_481","name":"Royal Shield","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":907,"equipType1":"Shield","minLevel":1,"def":72,"mDef":72,"material":"Shield","fireRes":30,"iceRes":30,"poisonRes":30,"holyRes":30,"darkRes":30},{"itemId":222101,"className":"SHD02_101","name":"Black Wooden Shield","type":"Equip","group":"Armor","weight":90,"maxStack":1,"price":240,"sellPrice":345,"equipType1":"Shield","minLevel":1,"def":57,"mDef":57,"material":"Shield","poisonRes":9},{"itemId":222102,"className":"SHD02_102","name":"Oak Shield","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Shield","minLevel":15,"def":192,"mDef":192,"material":"Shield"},{"itemId":222103,"className":"SHD02_103","name":"Savage Shield","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":2184,"sellPrice":436,"equipType1":"Shield","minLevel":40,"def":432,"mDef":432,"material":"Shield","fireRes":10},{"itemId":222104,"className":"SHD02_104","name":"Zalia Kite Shield","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":2184,"sellPrice":907,"equipType1":"Shield","minLevel":40,"def":432,"mDef":432,"addMDef":40,"material":"Shield"},{"itemId":222105,"className":"SHD02_105","name":"Superior Kite Shield","type":"Equip","group":"Armor","weight":140,"maxStack":1,"price":2184,"sellPrice":907,"equipType1":"Shield","minLevel":40,"def":432,"mDef":432,"material":"Shield"},{"itemId":222106,"className":"SHD02_106","name":"Bead Shield","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":2184,"sellPrice":907,"equipType1":"Shield","minLevel":40,"def":432,"mDef":432,"material":"Shield","lightningRes":17},{"itemId":222107,"className":"SHD02_107","name":"Circle Guard","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Shield","minLevel":75,"def":768,"mDef":768,"material":"Shield","iceRes":17},{"itemId":222108,"className":"SHD02_108","name":"Ludas Shield","type":"Equip","group":"Armor","weight":160,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Shield","minLevel":75,"def":768,"mDef":768,"material":"Shield"},{"itemId":222109,"className":"SHD02_109","name":"Minotaur Shield","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Shield","minLevel":15,"def":192,"mDef":192,"material":"Shield"},{"itemId":222110,"className":"SHD02_110","name":"Dio Shield","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":1728,"sellPrice":103,"equipType1":"Shield","minLevel":15,"def":192,"mDef":192,"material":"Shield"},{"itemId":222111,"className":"SHD02_111","name":"Thresh Shield","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Shield","minLevel":15,"def":192,"mDef":192,"material":"Shield"},{"itemId":222112,"className":"SHD02_112","name":"Sestas Shield","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Shield","minLevel":15,"def":192,"mDef":192,"material":"Shield"},{"itemId":222113,"className":"SHD02_113","name":"Dratt Shield","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":1728,"sellPrice":907,"equipType1":"Shield","minLevel":15,"def":192,"mDef":192,"material":"Shield"},{"itemId":222114,"className":"SHD02_114","name":"Aston Shield","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":1728,"sellPrice":907,"equipType1":"Shield","minLevel":15,"def":192,"mDef":192,"material":"Shield"},{"itemId":222115,"className":"SHD02_115","name":"Devi Shield","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Shield","minLevel":75,"def":768,"mDef":768,"material":"Shield"},{"itemId":222116,"className":"SHD02_116","name":"Prima Shield","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":1728,"sellPrice":1638,"equipType1":"Shield","minLevel":15,"def":192,"mDef":192,"material":"Shield"},{"itemId":222117,"className":"SHD02_117","name":"Ferret Marauder Shield","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":5149,"sellPrice":1638,"equipType1":"Shield","minLevel":75,"def":768,"mDef":768,"material":"Shield"},{"itemId":222118,"className":"SHD02_118","name":"Alemeth Tower Shield","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":19603,"sellPrice":3920,"equipType1":"Shield","minLevel":220,"def":2160,"mDef":2160,"material":"Shield"},{"itemId":222119,"className":"SHD02_119","name":"Didel Tower Shield","type":"Equip","group":"Armor","weight":115,"maxStack":1,"price":19603,"sellPrice":4780,"equipType1":"Shield","minLevel":220,"def":2160,"mDef":2160,"addMDef":96,"material":"Shield"},{"itemId":222120,"className":"SHD02_120","name":"(Faded) Migantis Shield","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":24000,"sellPrice":5000,"equipType1":"Shield","minLevel":270,"def":2640,"mDef":2640,"material":"Shield"},{"itemId":222121,"className":"SHD02_121","name":"(Faded) Pevordimas Shield","type":"Equip","group":"Armor","weight":90,"maxStack":1,"price":29280,"sellPrice":5000,"equipType1":"Shield","minLevel":315,"def":3072,"mDef":3072,"material":"Shield"},{"itemId":222122,"className":"SHD02_122","name":"Spike Kindl","type":"Equip","group":"Armor","weight":88,"maxStack":1,"price":9312,"sellPrice":0,"equipType1":"Shield","minLevel":120,"def":1200,"mDef":1200,"material":"Shield"},{"itemId":222123,"className":"SHD02_123","name":"Rodeleine Shield","type":"Equip","group":"Armor","weight":112,"maxStack":1,"price":14551,"sellPrice":0,"equipType1":"Shield","minLevel":170,"def":1680,"mDef":1680,"material":"Shield"},{"itemId":222124,"className":"SHD02_124","name":"Sketis Shield","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":5149,"sellPrice":0,"equipType1":"Shield","minLevel":75,"def":768,"mDef":768,"material":"Shield"},{"itemId":222125,"className":"SHD02_125","name":"Pajoritas Shield","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":19603,"sellPrice":0,"equipType1":"Shield","minLevel":220,"def":2160,"mDef":2160,"material":"Shield"},{"itemId":222126,"className":"SHD02_126","name":"Migantis Shield","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":24000,"sellPrice":0,"equipType1":"Shield","minLevel":270,"def":2640,"mDef":2640,"material":"Shield"},{"itemId":222127,"className":"SHD02_127","name":"Pevordimas Shield","type":"Equip","group":"Armor","weight":90,"maxStack":1,"price":29280,"sellPrice":0,"equipType1":"Shield","minLevel":315,"def":3072,"mDef":3072,"material":"Shield"},{"itemId":222128,"className":"SHD02_128","name":"Raffye Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":33279,"sellPrice":0,"equipType1":"Shield","minLevel":350,"def":3408,"mDef":3408,"material":"Shield"},{"itemId":222129,"className":"SHD02_129","name":"Zvaigzde Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Shield","minLevel":380,"def":3696,"mDef":3696,"material":"Shield"},{"itemId":222130,"className":"SHD02_130","name":"Legva Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Shield","minLevel":400,"def":3888,"mDef":3888,"material":"Shield"},{"itemId":222481,"className":"SHD02_481","name":"Emperor Shield","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":2184,"sellPrice":1621,"equipType1":"Shield","minLevel":40,"def":540,"mDef":540,"material":"Shield","fireRes":60,"iceRes":60,"poisonRes":60,"holyRes":60,"darkRes":60},{"itemId":222482,"className":"SHD02_482","name":"Test Shield","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":48,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield"},{"itemId":222483,"className":"SHD02_483","name":"Jigglebone Mercenary Shield","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":48,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield"},{"itemId":222484,"className":"SHD02_484","name":"Jigglebone Sippar","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":48,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield"},{"itemId":222485,"className":"SHD02_485","name":"Jigglebone Sippar 2","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":48,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield"},{"itemId":223101,"className":"SHD03_101","name":"Wall Guard","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":14551,"sellPrice":3900,"equipType1":"Shield","minLevel":170,"def":1848,"mDef":1848,"material":"Shield"},{"itemId":223102,"className":"SHD03_102","name":"Fortress","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":5149,"sellPrice":1138,"equipType1":"Shield","minLevel":75,"def":844,"mDef":844,"material":"Shield","fireRes":20,"earthRes":35},{"itemId":223103,"className":"SHD03_103","name":"Beetleback","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Shield","minLevel":75,"def":844,"mDef":844,"material":"Shield","poisonRes":62},{"itemId":223104,"className":"SHD03_104","name":"Meteor","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":240,"sellPrice":147,"equipType1":"Shield","minLevel":1,"def":63,"mDef":63,"material":"Shield"},{"itemId":223105,"className":"SHD03_105","name":"Pavaisa Shield","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":9312,"sellPrice":2601,"equipType1":"Shield","minLevel":120,"def":1320,"mDef":1320,"material":"Shield"},{"itemId":223106,"className":"SHD03_106","name":"Ledas Shield","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":9312,"sellPrice":2910,"equipType1":"Shield","minLevel":120,"def":1320,"mDef":1320,"material":"Shield","fireRes":17,"lightningRes":-27},{"itemId":223107,"className":"SHD03_107","name":"Otrava Shield","type":"Equip","group":"Armor","weight":90,"maxStack":1,"price":14551,"sellPrice":2991,"equipType1":"Shield","minLevel":170,"def":1848,"mDef":1848,"material":"Shield","poisonRes":19},{"itemId":223110,"className":"SHD03_110","name":"Lionhead Shield","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":29280,"sellPrice":7753,"equipType1":"Shield","minLevel":315,"def":3379,"mDef":3379,"addDef":15,"addMDef":325,"material":"Shield"},{"itemId":223301,"className":"SHD03_301","name":"(Faded) Spike Kindl","type":"Equip","group":"Armor","weight":88,"maxStack":1,"price":9312,"sellPrice":2582,"equipType1":"Shield","minLevel":120,"def":1320,"mDef":1320,"addMDef":45,"material":"Shield"},{"itemId":223302,"className":"SHD03_302","name":"(Faded) Rodeleine Shield","type":"Equip","group":"Armor","weight":112,"maxStack":1,"price":14551,"sellPrice":2991,"equipType1":"Shield","minLevel":170,"def":1848,"mDef":1848,"addDef":81,"material":"Shield"},{"itemId":223303,"className":"SHD03_303","name":"(Faded) Sketis Shield","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":5149,"sellPrice":907,"equipType1":"Shield","minLevel":75,"def":844,"mDef":844,"addDef":30,"material":"Shield"},{"itemId":223304,"className":"SHD03_304","name":"(Faded) Pajoritas Shield","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":19603,"sellPrice":3920,"equipType1":"Shield","minLevel":220,"def":2376,"mDef":2376,"addDef":90,"material":"Shield"},{"itemId":223305,"className":"SHD03_305","name":"(Faded) Purine Migantis Shield","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":24000,"sellPrice":5000,"equipType1":"Shield","minLevel":270,"def":2904,"mDef":2904,"addMDef":115,"material":"Shield"},{"itemId":223306,"className":"SHD03_306","name":"(Faded) Purine Pevordimas Shield","type":"Equip","group":"Armor","weight":90,"maxStack":1,"price":29280,"sellPrice":5000,"equipType1":"Shield","minLevel":315,"def":3379,"mDef":3379,"addMDef":138,"material":"Shield"},{"itemId":223307,"className":"SHD03_307","name":"Berthas Spike Kindl","type":"Equip","group":"Armor","weight":88,"maxStack":1,"price":9312,"sellPrice":0,"equipType1":"Shield","minLevel":120,"def":1320,"mDef":1320,"material":"Shield"},{"itemId":223308,"className":"SHD03_308","name":"Berthas Rodeleine Shield","type":"Equip","group":"Armor","weight":112,"maxStack":1,"price":14551,"sellPrice":0,"equipType1":"Shield","minLevel":170,"def":1848,"mDef":1848,"material":"Shield"},{"itemId":223309,"className":"SHD03_309","name":"Berthas Sketis Shield","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":5149,"sellPrice":0,"equipType1":"Shield","minLevel":75,"def":844,"mDef":844,"material":"Shield"},{"itemId":223310,"className":"SHD03_310","name":"Berthas Pajoritas Shield","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":19603,"sellPrice":0,"equipType1":"Shield","minLevel":220,"def":2376,"mDef":2376,"material":"Shield"},{"itemId":223311,"className":"SHD03_311","name":"Berthas Migantis Shield","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":24000,"sellPrice":0,"equipType1":"Shield","minLevel":270,"def":2904,"mDef":2904,"material":"Shield"},{"itemId":223312,"className":"SHD03_312","name":"Berthas Pevordimas Shield","type":"Equip","group":"Armor","weight":90,"maxStack":1,"price":29280,"sellPrice":0,"equipType1":"Shield","minLevel":315,"def":3379,"mDef":3379,"material":"Shield"},{"itemId":223313,"className":"SHD03_313","name":"Berthas Raffye Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":33279,"sellPrice":0,"equipType1":"Shield","minLevel":350,"def":3748,"mDef":3748,"material":"Shield"},{"itemId":223314,"className":"SHD03_314","name":"Berthas Zvaigzde Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Shield","minLevel":380,"def":4065,"mDef":4065,"material":"Shield"},{"itemId":223315,"className":"SHD03_315","name":"Berthas Legva Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Shield","minLevel":400,"def":4276,"mDef":4276,"material":"Shield"},{"itemId":223316,"className":"SHD03_316","name":"Berthas Dysnai Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Shield","minLevel":430,"def":4593,"mDef":4593,"material":"Shield"},{"itemId":224101,"className":"SHD04_101","name":"Sage Wall","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Shield","minLevel":75,"def":960,"mDef":960,"addMDef":99,"material":"Shield","holyRes":46},{"itemId":224102,"className":"SHD04_102","name":"Aias","type":"Equip","group":"Armor","weight":140,"maxStack":1,"price":14551,"sellPrice":3920,"equipType1":"Shield","minLevel":170,"def":2100,"mDef":2100,"material":"Shield"},{"itemId":224103,"className":"SHD04_103","name":"Lolopanther Shield","type":"Equip","group":"Armor","weight":140,"maxStack":1,"price":24000,"sellPrice":5856,"equipType1":"Shield","minLevel":270,"def":4224,"mDef":4224,"addMDef":86,"material":"Shield","earthRes":42},{"itemId":224104,"className":"SHD04_104","name":"Solmiki Shield","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":29280,"sellPrice":7771,"equipType1":"Shield","minLevel":330,"def":5145,"mDef":5145,"addMDef":345,"material":"Shield","holyRes":56},{"itemId":224105,"className":"SHD04_105","name":"Emengard Shield","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":29280,"sellPrice":8868,"equipType1":"Shield","minLevel":315,"def":3840,"mDef":3840,"addDef":22,"addMDef":440,"material":"Shield"},{"itemId":224106,"className":"SHD04_106","name":"Primus Spike Kindl","type":"Equip","group":"Armor","weight":88,"maxStack":1,"price":9312,"sellPrice":0,"equipType1":"Shield","minLevel":120,"def":1500,"mDef":1500,"material":"Shield"},{"itemId":224107,"className":"SHD04_107","name":"Primus Rodeleine Shield","type":"Equip","group":"Armor","weight":112,"maxStack":1,"price":14551,"sellPrice":0,"equipType1":"Shield","minLevel":170,"def":2100,"mDef":2100,"material":"Shield"},{"itemId":224108,"className":"SHD04_108","name":"Primus Sketis Shield","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":5149,"sellPrice":0,"equipType1":"Shield","minLevel":75,"def":960,"mDef":960,"material":"Shield"},{"itemId":224109,"className":"SHD04_109","name":"Primus Pajoritas Shield","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":19603,"sellPrice":0,"equipType1":"Shield","minLevel":220,"def":2700,"mDef":2700,"material":"Shield"},{"itemId":224110,"className":"SHD04_110","name":"Primus Migantis Shield","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":24000,"sellPrice":0,"equipType1":"Shield","minLevel":270,"def":3300,"mDef":3300,"material":"Shield"},{"itemId":224111,"className":"SHD04_111","name":"Primus Pevordimas Shield","type":"Equip","group":"Armor","weight":90,"maxStack":1,"price":29280,"sellPrice":0,"equipType1":"Shield","minLevel":315,"def":3840,"mDef":3840,"material":"Shield"},{"itemId":224112,"className":"SHD04_112","name":"Primus Raffye Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":33279,"sellPrice":0,"equipType1":"Shield","minLevel":350,"def":4260,"mDef":4260,"material":"Shield"},{"itemId":224113,"className":"SHD04_113","name":"Masinios Shield","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":33279,"sellPrice":0,"equipType1":"Shield","minLevel":350,"def":4260,"mDef":4260,"addMDef":437,"material":"Shield","strike":234},{"itemId":224114,"className":"SHD04_114","name":"Primus Zvaigzde Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Shield","minLevel":380,"def":4620,"mDef":4620,"material":"Shield"},{"itemId":224115,"className":"SHD04_115","name":"Wastrel Zvaigzde Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Shield","minLevel":380,"def":4620,"mDef":4620,"addMDef":358,"material":"Shield"},{"itemId":224116,"className":"SHD04_116","name":"Asio Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Shield","minLevel":380,"def":4620,"mDef":4620,"addMDef":357,"material":"Shield"},{"itemId":224117,"className":"SHD04_117","name":"Primus Legva Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Shield","minLevel":400,"def":4860,"mDef":4860,"material":"Shield"},{"itemId":224118,"className":"SHD04_118","name":"Skiaclipse Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Shield","minLevel":400,"def":4860,"mDef":4860,"addMDef":675,"material":"Shield"},{"itemId":224119,"className":"SHD04_119","name":"Moringponia Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Shield","minLevel":400,"def":4860,"mDef":4860,"material":"Shield"},{"itemId":224120,"className":"SHD04_120","name":"Misrus Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Shield","minLevel":400,"def":4860,"mDef":4860,"material":"Shield"},{"itemId":224121,"className":"SHD04_121","name":"Primus Dysnai Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Shield","minLevel":430,"def":5220,"mDef":5220,"material":"Shield"},{"itemId":225101,"className":"SHD05_101","name":"Velcoffer Shield","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":33279,"sellPrice":0,"equipType1":"Shield","minLevel":360,"def":5606,"mDef":5606,"material":"Shield"},{"itemId":225102,"className":"SHD05_102","name":"Velcoffer Shield","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":33279,"sellPrice":0,"equipType1":"Shield","minLevel":360,"def":5606,"mDef":5606,"material":"Shield"},{"itemId":225103,"className":"SHD05_103","name":"Savinose Legva Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Shield","minLevel":400,"def":6220,"mDef":6220,"material":"Shield"},{"itemId":225104,"className":"SHD05_104","name":"Skiaclipse Varna Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Shield","minLevel":400,"def":6220,"mDef":6220,"material":"Shield"},{"itemId":501101,"className":"HAND01_101","name":"Light Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":180,"sellPrice":36,"equipType1":"Gloves","minLevel":1,"def":12,"mDef":12,"material":"Leather"},{"itemId":501102,"className":"HAND01_102","name":"Quilted Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":180,"sellPrice":36,"equipType1":"Gloves","minLevel":1,"def":12,"mDef":12,"material":"Leather"},{"itemId":501103,"className":"HAND01_103","name":"Leather Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":180,"sellPrice":47,"equipType1":"Gloves","minLevel":1,"def":12,"mDef":12,"material":"Leather"},{"itemId":501104,"className":"HAND01_104","name":"Hard Leather Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"def":43,"mDef":43,"material":"Leather"},{"itemId":501105,"className":"HAND01_105","name":"Chain Gloves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"def":57,"mDef":28,"material":"Iron"},{"itemId":501106,"className":"HAND01_106","name":"Mark Gloves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1638,"sellPrice":327,"equipType1":"Gloves","minLevel":40,"def":97,"mDef":97,"material":"Leather"},{"itemId":501107,"className":"HAND01_107","name":"Forest Leather Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Gloves","minLevel":40,"def":97,"mDef":97,"material":"Leather"},{"itemId":501108,"className":"HAND01_108","name":"Grima Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Gloves","minLevel":40,"def":64,"mDef":129,"material":"Cloth"},{"itemId":501109,"className":"HAND01_109","name":"Veris Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Gloves","minLevel":40,"def":97,"mDef":97,"material":"Leather"},{"itemId":501110,"className":"HAND01_110","name":"Scale Gloves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Gloves","minLevel":40,"def":129,"mDef":64,"material":"Iron"},{"itemId":501111,"className":"HAND01_111","name":"Forest Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Gloves","minLevel":40,"def":64,"mDef":129,"material":"Cloth"},{"itemId":501112,"className":"HAND01_112","name":"Klaida Gauntlets","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Gloves","minLevel":40,"def":129,"mDef":64,"material":"Iron"},{"itemId":501113,"className":"HAND01_113","name":"Hard Veris Gloves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":3862,"sellPrice":680,"equipType1":"Gloves","minLevel":75,"def":172,"mDef":172,"material":"Leather"},{"itemId":501114,"className":"HAND01_114","name":"Superior Scale Gloves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":3862,"sellPrice":680,"equipType1":"Gloves","minLevel":75,"def":230,"mDef":115,"material":"Iron"},{"itemId":501115,"className":"HAND01_115","name":"Regal Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Gloves","minLevel":75,"def":115,"mDef":230,"material":"Cloth"},{"itemId":501117,"className":"HAND01_117","name":"Miner's Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":180,"sellPrice":36,"equipType1":"Gloves","minLevel":1,"def":12,"mDef":12,"material":"Leather"},{"itemId":501118,"className":"HAND01_118","name":"Old Hard Leather Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"def":43,"mDef":43,"material":"Leather"},{"itemId":501119,"className":"HAND01_119","name":"Old Chain Gloves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"def":57,"mDef":28,"material":"Iron"},{"itemId":501120,"className":"HAND01_120","name":"Old Steel Chain Gloves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1638,"sellPrice":259,"equipType1":"Gloves","minLevel":40,"def":129,"mDef":64,"material":"Iron"},{"itemId":501121,"className":"HAND01_121","name":"Brigandine Gloves","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Gloves","minLevel":75,"def":172,"mDef":172,"material":"Leather"},{"itemId":501122,"className":"HAND01_122","name":"Plate Gauntlets","type":"Equip","group":"Armor","weight":66,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Gloves","minLevel":75,"def":230,"mDef":115,"material":"Iron"},{"itemId":501126,"className":"HAND01_126","name":"Acolyte Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1638,"sellPrice":327,"equipType1":"Gloves","minLevel":40,"def":64,"mDef":129,"material":"Cloth"},{"itemId":501127,"className":"HAND01_127","name":"Steel Chain Gloves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1638,"sellPrice":327,"equipType1":"Gloves","minLevel":40,"def":129,"mDef":64,"material":"Iron"},{"itemId":501129,"className":"HAND01_129","name":"Dunkel Quilted Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":180,"sellPrice":36,"equipType1":"Gloves","minLevel":1,"def":12,"mDef":12,"material":"Leather"},{"itemId":501130,"className":"HAND01_130","name":"Dunkel Cotton Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"def":28,"mDef":57,"material":"Cloth"},{"itemId":501131,"className":"HAND01_131","name":"Dunkel Hard Leather Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"def":43,"mDef":43,"material":"Leather"},{"itemId":501132,"className":"HAND01_132","name":"Dunkel Ring Gloves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"def":57,"mDef":28,"material":"Iron"},{"itemId":501133,"className":"HAND01_133","name":"Cotton Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"def":28,"mDef":57,"material":"Cloth"},{"itemId":501134,"className":"HAND01_134","name":"Ring Gloves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"def":57,"mDef":28,"material":"Iron"},{"itemId":501135,"className":"HAND01_135","name":"Superior Regal Gloves","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Gloves","minLevel":75,"def":115,"mDef":230,"material":"Cloth"},{"itemId":501136,"className":"HAND01_136","name":"Superior Brigandine Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Gloves","minLevel":75,"def":172,"mDef":172,"material":"Leather"},{"itemId":501137,"className":"HAND01_137","name":"Full Plate Gauntlets","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Gloves","minLevel":75,"def":230,"mDef":115,"material":"Iron"},{"itemId":501138,"className":"HAND01_138","name":"Fedimian Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":6984,"sellPrice":1396,"equipType1":"Gloves","minLevel":120,"def":180,"mDef":360,"material":"Cloth"},{"itemId":501139,"className":"HAND01_139","name":"Fedimian Leather Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":6984,"sellPrice":1396,"equipType1":"Gloves","minLevel":120,"def":270,"mDef":270,"material":"Leather"},{"itemId":501140,"className":"HAND01_140","name":"Fedimian Gauntlets","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":6984,"sellPrice":1396,"equipType1":"Gloves","minLevel":120,"def":360,"mDef":180,"material":"Iron"},{"itemId":501141,"className":"HAND01_141","name":"Magician Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":6984,"sellPrice":1425,"equipType1":"Gloves","minLevel":120,"def":180,"mDef":360,"material":"Cloth"},{"itemId":501142,"className":"HAND01_142","name":"Hunting Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":6984,"sellPrice":1425,"equipType1":"Gloves","minLevel":120,"def":270,"mDef":270,"material":"Leather"},{"itemId":501143,"className":"HAND01_143","name":"Guard Gauntlets","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":6984,"sellPrice":1228,"equipType1":"Gloves","minLevel":120,"def":360,"mDef":180,"material":"Iron"},{"itemId":501144,"className":"HAND01_144","name":"Mage Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":6984,"sellPrice":1937,"equipType1":"Gloves","minLevel":120,"def":180,"mDef":360,"material":"Cloth"},{"itemId":501145,"className":"HAND01_145","name":"Skirmisher Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":6984,"sellPrice":1937,"equipType1":"Gloves","minLevel":120,"def":270,"mDef":270,"material":"Leather"},{"itemId":501146,"className":"HAND01_146","name":"Infantry Gauntlets","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":6984,"sellPrice":1937,"equipType1":"Gloves","minLevel":120,"def":360,"mDef":180,"material":"Iron"},{"itemId":501147,"className":"HAND01_147","name":"Archmage Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":10913,"sellPrice":2182,"equipType1":"Gloves","minLevel":170,"def":252,"mDef":504,"material":"Cloth"},{"itemId":501148,"className":"HAND01_148","name":"Superior Skirmisher Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":10913,"sellPrice":2182,"equipType1":"Gloves","minLevel":170,"def":378,"mDef":378,"material":"Leather"},{"itemId":501149,"className":"HAND01_149","name":"Superior Infantry Gauntlets","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":10913,"sellPrice":2182,"equipType1":"Gloves","minLevel":170,"def":504,"mDef":252,"material":"Iron"},{"itemId":501150,"className":"HAND01_150","name":"Librarian Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":10913,"sellPrice":2940,"equipType1":"Gloves","minLevel":170,"def":252,"mDef":504,"material":"Cloth"},{"itemId":501151,"className":"HAND01_151","name":"Veteran Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":10913,"sellPrice":2940,"equipType1":"Gloves","minLevel":170,"def":378,"mDef":378,"material":"Leather"},{"itemId":501152,"className":"HAND01_152","name":"Knight Gauntlets","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":10913,"sellPrice":2940,"equipType1":"Gloves","minLevel":170,"def":504,"mDef":252,"material":"Iron"},{"itemId":501153,"className":"HAND01_153","name":"Superior Grima Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":3862,"sellPrice":680,"equipType1":"Gloves","minLevel":75,"def":115,"mDef":230,"material":"Cloth"},{"itemId":501154,"className":"HAND01_154","name":"Royal Mage Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":14702,"sellPrice":2940,"equipType1":"Gloves","minLevel":220,"def":324,"mDef":648,"material":"Cloth"},{"itemId":501155,"className":"HAND01_155","name":"Bandit Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":14702,"sellPrice":2940,"equipType1":"Gloves","minLevel":220,"def":486,"mDef":486,"material":"Leather"},{"itemId":501156,"className":"HAND01_156","name":"Royal Guard Gloves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":14702,"sellPrice":2940,"equipType1":"Gloves","minLevel":220,"def":648,"mDef":324,"material":"Iron"},{"itemId":501157,"className":"HAND01_157","name":"Superior Royal Mage Gauntlets","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":14702,"sellPrice":3571,"equipType1":"Gloves","minLevel":220,"def":324,"mDef":648,"material":"Cloth"},{"itemId":501158,"className":"HAND01_158","name":"Superior Bandit Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":14702,"sellPrice":3571,"equipType1":"Gloves","minLevel":220,"def":486,"mDef":486,"material":"Leather"},{"itemId":501159,"className":"HAND01_159","name":"Superior Royal Guard Gauntlets","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":14702,"sellPrice":3571,"equipType1":"Gloves","minLevel":220,"def":648,"mDef":324,"material":"Iron"},{"itemId":501201,"className":"HAND01_201","name":"Smash Gauntlets","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":14702,"sellPrice":3571,"equipType1":"Gloves","minLevel":220,"def":648,"mDef":324,"material":"Iron"},{"itemId":501202,"className":"HAND01_202","name":"Slash Gauntlets","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":14702,"sellPrice":3571,"equipType1":"Gloves","minLevel":220,"def":648,"mDef":324,"material":"Iron"},{"itemId":501203,"className":"HAND01_203","name":"Blint Greaves","type":"Equip","group":"Armor","weight":18,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Gloves","minLevel":270,"def":396,"mDef":792,"material":"Cloth"},{"itemId":501204,"className":"HAND01_204","name":"Blint Leather Greaves","type":"Equip","group":"Armor","weight":27,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Gloves","minLevel":270,"def":594,"mDef":594,"material":"Leather"},{"itemId":501205,"className":"HAND01_205","name":"Blint Plate Gauntlets","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Gloves","minLevel":270,"def":792,"mDef":396,"material":"Iron"},{"itemId":501206,"className":"HAND01_206","name":"(Faded) Replica Kalinis Gloves","type":"Equip","group":"Armor","weight":25,"maxStack":1,"price":50000,"sellPrice":5000,"equipType1":"Gloves","minLevel":270,"def":396,"mDef":792,"material":"Cloth"},{"itemId":501207,"className":"HAND01_207","name":"(Faded) Replica Albinosas Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":50000,"sellPrice":5000,"equipType1":"Gloves","minLevel":270,"def":594,"mDef":594,"material":"Leather"},{"itemId":501208,"className":"HAND01_208","name":"(Faded) Replica Tajtanas Gauntlets","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":50000,"sellPrice":5000,"equipType1":"Gloves","minLevel":270,"def":792,"mDef":396,"material":"Iron"},{"itemId":501209,"className":"HAND01_209","name":"(Faded) Replica Oksinis Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":75000,"sellPrice":5000,"equipType1":"Gloves","minLevel":315,"def":460,"mDef":921,"material":"Cloth"},{"itemId":501210,"className":"HAND01_210","name":"(Faded) Replica Kaulas Leather Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":75000,"sellPrice":5000,"equipType1":"Gloves","minLevel":315,"def":691,"mDef":691,"material":"Leather"},{"itemId":501211,"className":"HAND01_211","name":"(Faded) Replica Krisius Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":75000,"sellPrice":5000,"equipType1":"Gloves","minLevel":315,"def":921,"mDef":460,"material":"Iron"},{"itemId":501999,"className":"HAND01_999","name":"Finger","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Gloves","minLevel":1,"def":12,"mDef":12,"material":"Leather"},{"itemId":502101,"className":"HAND02_101","name":"Carpenter Gloves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"def":48,"mDef":48,"material":"Leather"},{"itemId":502104,"className":"HAND02_104","name":"Zalia Leather Gloves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1638,"sellPrice":453,"equipType1":"Gloves","minLevel":40,"def":108,"mDef":108,"material":"Leather"},{"itemId":502105,"className":"HAND02_105","name":"Prova Gloves","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Gloves","minLevel":40,"addMAtk":5,"def":72,"mDef":144,"material":"Cloth"},{"itemId":502106,"className":"HAND02_106","name":"Studded Gloves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Gloves","minLevel":40,"pAtk":5,"def":108,"mDef":108,"material":"Leather"},{"itemId":502107,"className":"HAND02_107","name":"Insect Gauntlets","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Gloves","minLevel":40,"def":144,"mDef":72,"material":"Iron"},{"itemId":502109,"className":"HAND02_109","name":"Red Veris Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Gloves","minLevel":40,"def":108,"mDef":108,"material":"Leather"},{"itemId":502111,"className":"HAND02_111","name":"Magnus Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":3862,"sellPrice":786,"equipType1":"Gloves","minLevel":75,"addMAtk":8,"def":128,"mDef":256,"material":"Cloth"},{"itemId":502113,"className":"HAND02_113","name":"Drake Leather Gloves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Gloves","minLevel":75,"def":192,"mDef":192,"material":"Leather"},{"itemId":502114,"className":"HAND02_114","name":"Silver Plate Gauntlets","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":3862,"sellPrice":772,"equipType1":"Gloves","minLevel":75,"def":256,"mDef":128,"material":"Iron","darkRes":10},{"itemId":502115,"className":"HAND02_115","name":"Wild Leather Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":180,"sellPrice":110,"equipType1":"Gloves","minLevel":1,"def":14,"mDef":14,"material":"Leather"},{"itemId":502116,"className":"FOOT02_115","name":"Superior Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":180,"sellPrice":259,"equipType1":"Boots","minLevel":1,"def":14,"mDef":14,"material":"Leather"},{"itemId":502117,"className":"HAND02_117","name":"Capria Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"def":48,"mDef":48,"material":"Leather"},{"itemId":502121,"className":"HAND02_121","name":"Archon Hands","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Gloves","minLevel":40,"def":108,"mDef":108,"material":"Leather"},{"itemId":502122,"className":"HAND02_122","name":"Nepenthes Gloves","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"def":32,"mDef":64,"material":"Cloth"},{"itemId":502123,"className":"HAND02_123","name":"Cafrisun Gloves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"def":48,"mDef":48,"material":"Leather"},{"itemId":502124,"className":"HAND02_124","name":"Dio Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":180,"sellPrice":110,"equipType1":"Gloves","minLevel":1,"addMAtk":1,"def":9,"mDef":19,"material":"Cloth"},{"itemId":502125,"className":"HAND02_125","name":"Dio Leather Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":180,"sellPrice":110,"equipType1":"Gloves","minLevel":1,"def":14,"mDef":14,"material":"Leather"},{"itemId":502126,"className":"HAND02_126","name":"Dio Chain Gauntlets","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":180,"sellPrice":55,"equipType1":"Gloves","minLevel":1,"def":19,"mDef":9,"material":"Iron"},{"itemId":502127,"className":"HAND02_127","name":"Thresh Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"addMAtk":2,"def":32,"mDef":64,"material":"Cloth"},{"itemId":502128,"className":"HAND02_128","name":"Thresh Leather Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"def":48,"mDef":48,"material":"Leather"},{"itemId":502129,"className":"HAND02_129","name":"Thresh Chain Gloves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"def":64,"mDef":32,"material":"Iron"},{"itemId":502130,"className":"HAND02_130","name":"Sestas Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"addMAtk":3,"def":32,"mDef":64,"material":"Cloth"},{"itemId":502131,"className":"HAND02_131","name":"Sestas Leather Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"def":48,"mDef":48,"material":"Leather"},{"itemId":502132,"className":"HAND02_132","name":"Sestas Chain Gloves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"def":64,"mDef":32,"material":"Iron"},{"itemId":502133,"className":"HAND02_133","name":"Dratt Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Gloves","minLevel":40,"addMAtk":5,"def":72,"mDef":144,"material":"Cloth"},{"itemId":502134,"className":"HAND02_134","name":"Dratt Leather Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Gloves","minLevel":40,"def":108,"mDef":108,"material":"Leather"},{"itemId":502135,"className":"HAND02_135","name":"Dratt Gauntlets","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Gloves","minLevel":40,"def":144,"mDef":72,"material":"Iron"},{"itemId":502136,"className":"HAND02_136","name":"Aston Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Gloves","minLevel":40,"addMAtk":6,"def":72,"mDef":144,"material":"Cloth"},{"itemId":502137,"className":"HAND02_137","name":"Aston Leather Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Gloves","minLevel":40,"def":108,"mDef":108,"material":"Leather"},{"itemId":502138,"className":"HAND02_138","name":"Aston Gauntlets","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Gloves","minLevel":40,"def":144,"mDef":72,"material":"Iron"},{"itemId":502139,"className":"HAND02_139","name":"Devi Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Gloves","minLevel":75,"addMAtk":8,"def":128,"mDef":256,"material":"Cloth"},{"itemId":502140,"className":"HAND02_140","name":"Devi Leather Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Gloves","minLevel":75,"def":192,"mDef":192,"material":"Leather"},{"itemId":502141,"className":"HAND02_141","name":"Devi Gauntlets","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":3862,"sellPrice":826,"equipType1":"Gloves","minLevel":75,"def":256,"mDef":128,"material":"Iron"},{"itemId":502142,"className":"HAND02_142","name":"Prima Gloves","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":3862,"sellPrice":1228,"equipType1":"Gloves","minLevel":75,"addMAtk":11,"def":128,"mDef":256,"material":"Cloth"},{"itemId":502143,"className":"HAND02_143","name":"Prima Leather Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":3862,"sellPrice":1228,"equipType1":"Gloves","minLevel":75,"def":192,"mDef":192,"material":"Leather"},{"itemId":502144,"className":"HAND02_144","name":"Prima Gauntlets","type":"Equip","group":"Armor","weight":66,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Gloves","minLevel":75,"def":256,"mDef":128,"material":"Iron"},{"itemId":502145,"className":"HAND02_145","name":"Tomb Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Gloves","minLevel":75,"addMAtk":10,"def":128,"mDef":256,"material":"Cloth"},{"itemId":502146,"className":"HAND02_146","name":"Tomb Leather Gloves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Gloves","minLevel":75,"def":192,"mDef":192,"material":"Leather"},{"itemId":502147,"className":"HAND02_147","name":"Tomb Gauntlets","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Gloves","minLevel":75,"def":256,"mDef":128,"material":"Iron"},{"itemId":502153,"className":"HAND02_153","name":"Watcher Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1296,"sellPrice":327,"equipType1":"Gloves","minLevel":15,"def":48,"mDef":48,"material":"Leather"},{"itemId":502154,"className":"HAND02_154","name":"Earth Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":1638,"sellPrice":772,"equipType1":"Gloves","minLevel":40,"addMAtk":6,"def":72,"mDef":144,"material":"Cloth"},{"itemId":502155,"className":"HAND02_155","name":"Leather Earth Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":1638,"sellPrice":772,"equipType1":"Gloves","minLevel":40,"addMinAtk":4,"def":108,"mDef":108,"material":"Leather"},{"itemId":502156,"className":"HAND02_156","name":"Earth Plate Gauntlets","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1638,"sellPrice":772,"equipType1":"Gloves","minLevel":40,"def":144,"mDef":72,"material":"Iron"},{"itemId":502157,"className":"HAND02_157","name":"Legwyn Family Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":6984,"sellPrice":1937,"equipType1":"Gloves","minLevel":120,"def":200,"mDef":400,"material":"Cloth"},{"itemId":502158,"className":"HAND02_158","name":"Legwyn Family Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":6984,"sellPrice":1937,"equipType1":"Gloves","minLevel":120,"def":300,"mDef":300,"material":"Leather"},{"itemId":502159,"className":"HAND02_159","name":"Legwyn Family Plate Gauntlets","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":6984,"sellPrice":1937,"equipType1":"Gloves","minLevel":120,"pAtk":5,"def":400,"mDef":200,"material":"Iron"},{"itemId":502160,"className":"HAND02_160","name":"Ogva Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"def":32,"mDef":64,"material":"Cloth"},{"itemId":502161,"className":"HAND02_161","name":"Ogva Leather Gloves","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"def":48,"mDef":48,"material":"Leather"},{"itemId":502162,"className":"HAND02_162","name":"Ogva Chain Gloves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"def":64,"mDef":32,"material":"Iron"},{"itemId":502163,"className":"HAND02_163","name":"Partis Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"def":32,"mDef":64,"material":"Cloth"},{"itemId":502164,"className":"HAND02_164","name":"Partis Leather Gloves","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"def":48,"mDef":48,"material":"Leather"},{"itemId":502165,"className":"HAND02_165","name":"Partis Ring Gloves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"def":64,"mDef":32,"material":"Iron"},{"itemId":502166,"className":"HAND02_166","name":"Sirdgela Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Gloves","minLevel":40,"def":72,"mDef":144,"material":"Cloth"},{"itemId":502167,"className":"HAND02_167","name":"Sirdgela Leather Gloves","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Gloves","minLevel":40,"def":108,"mDef":108,"material":"Leather"},{"itemId":502168,"className":"HAND02_168","name":"Sirdgela Scale Gloves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Gloves","minLevel":40,"def":144,"mDef":72,"material":"Iron"},{"itemId":502169,"className":"HAND02_169","name":"Philis Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Gloves","minLevel":40,"def":72,"mDef":144,"material":"Cloth"},{"itemId":502170,"className":"HAND02_170","name":"Philis Leather Gloves","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Gloves","minLevel":40,"def":108,"mDef":108,"material":"Leather"},{"itemId":502171,"className":"HAND02_171","name":"Philis Scale Gloves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Gloves","minLevel":40,"def":144,"mDef":72,"material":"Iron"},{"itemId":502172,"className":"HAND02_172","name":"Allerno Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":3862,"sellPrice":680,"equipType1":"Gloves","minLevel":75,"def":128,"mDef":256,"material":"Cloth"},{"itemId":502173,"className":"HAND02_173","name":"Allerno Leather Gloves","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":3862,"sellPrice":680,"equipType1":"Gloves","minLevel":75,"def":192,"mDef":192,"material":"Leather"},{"itemId":502174,"className":"HAND02_174","name":"Allerno Plate Gauntlets","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":3862,"sellPrice":680,"equipType1":"Gloves","minLevel":75,"def":256,"mDef":128,"material":"Iron"},{"itemId":502175,"className":"HAND02_175","name":"Perelin Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":3862,"sellPrice":680,"equipType1":"Gloves","minLevel":75,"def":128,"mDef":256,"material":"Cloth"},{"itemId":502176,"className":"HAND02_176","name":"Perelin Leather Gloves","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":3862,"sellPrice":680,"equipType1":"Gloves","minLevel":75,"def":192,"mDef":192,"material":"Leather"},{"itemId":502177,"className":"HAND02_177","name":"Perelin Plate Gauntlets","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":3862,"sellPrice":680,"equipType1":"Gloves","minLevel":75,"def":256,"mDef":128,"material":"Iron"},{"itemId":502178,"className":"HAND02_178","name":"Turn Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":6984,"sellPrice":1215,"equipType1":"Gloves","minLevel":120,"def":200,"mDef":400,"material":"Cloth"},{"itemId":502179,"className":"HAND02_179","name":"Turn Leather Gloves","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":6984,"sellPrice":1215,"equipType1":"Gloves","minLevel":120,"def":300,"mDef":300,"material":"Leather"},{"itemId":502180,"className":"HAND02_180","name":"Turn Plate Gauntlets","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":6984,"sellPrice":1215,"equipType1":"Gloves","minLevel":120,"def":400,"mDef":200,"material":"Iron"},{"itemId":502181,"className":"HAND02_181","name":"Shaton Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":6984,"sellPrice":1228,"equipType1":"Gloves","minLevel":120,"def":200,"mDef":400,"material":"Cloth"},{"itemId":502182,"className":"HAND02_182","name":"Shaton Leather Gloves","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":6984,"sellPrice":1228,"equipType1":"Gloves","minLevel":120,"def":300,"mDef":300,"material":"Leather"},{"itemId":502183,"className":"HAND02_183","name":"Shaton Plate Gauntlets","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":6984,"sellPrice":1228,"equipType1":"Gloves","minLevel":120,"def":400,"mDef":200,"material":"Iron"},{"itemId":502184,"className":"HAND02_184","name":"Tyla Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":10913,"sellPrice":1937,"equipType1":"Gloves","minLevel":170,"def":280,"mDef":560,"material":"Cloth"},{"itemId":502185,"className":"HAND02_185","name":"Tyla Leather Gloves","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":10913,"sellPrice":1937,"equipType1":"Gloves","minLevel":170,"def":420,"mDef":420,"material":"Leather"},{"itemId":502186,"className":"HAND02_186","name":"Tyla Plate Gauntlets","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":10913,"sellPrice":1937,"equipType1":"Gloves","minLevel":170,"def":560,"mDef":280,"material":"Iron"},{"itemId":502188,"className":"HAND02_188","name":"Elkosh Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":14702,"sellPrice":2940,"equipType1":"Gloves","minLevel":220,"def":360,"mDef":720,"material":"Cloth"},{"itemId":502189,"className":"HAND02_189","name":"Ibre Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":14702,"sellPrice":3571,"equipType1":"Gloves","minLevel":220,"def":540,"mDef":540,"material":"Leather"},{"itemId":502190,"className":"HAND02_190","name":"Grynas Gauntlets","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":14702,"sellPrice":3571,"equipType1":"Gloves","minLevel":220,"def":720,"mDef":360,"material":"Iron"},{"itemId":502200,"className":"HAND02_200","name":"Valtas Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":14702,"sellPrice":2940,"equipType1":"Gloves","minLevel":220,"def":360,"mDef":720,"material":"Cloth"},{"itemId":502201,"className":"HAND02_201","name":"Valtas Leather Gloves","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":14702,"sellPrice":2940,"equipType1":"Gloves","minLevel":220,"def":540,"mDef":540,"material":"Leather"},{"itemId":502202,"className":"HAND02_202","name":"Valtas Plate Gauntlents","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":14702,"sellPrice":2940,"equipType1":"Gloves","minLevel":220,"def":720,"mDef":360,"material":"Iron"},{"itemId":502203,"className":"HAND02_203","name":"Oghma Gauntlets","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":14702,"sellPrice":2940,"equipType1":"Gloves","minLevel":220,"def":720,"mDef":360,"material":"Iron"},{"itemId":502204,"className":"HAND02_204","name":"Demonas Gauntlets","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":14702,"sellPrice":2940,"equipType1":"Gloves","minLevel":220,"def":720,"mDef":360,"material":"Iron"},{"itemId":502205,"className":"HAND02_205","name":"Hasta Gloves","type":"Equip","group":"Armor","weight":25,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Gloves","minLevel":270,"def":440,"mDef":880,"material":"Cloth"},{"itemId":502206,"className":"HAND02_206","name":"Hasta Leather Gloves","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Gloves","minLevel":270,"def":660,"mDef":660,"material":"Leather"},{"itemId":502207,"className":"HAND02_207","name":"Hasta Plate Gauntlets","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Gloves","minLevel":270,"def":880,"mDef":440,"material":"Iron"},{"itemId":502208,"className":"HAND02_208","name":"Manahas Gloves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Gloves","minLevel":270,"def":660,"mDef":660,"material":"Leather","iceRes":15},{"itemId":502209,"className":"HAND02_209","name":"(Faded) Kalinis Gloves","type":"Equip","group":"Armor","weight":25,"maxStack":1,"price":18000,"sellPrice":5000,"equipType1":"Gloves","minLevel":270,"def":440,"mDef":880,"material":"Cloth"},{"itemId":502210,"className":"HAND02_210","name":"(Faded) Albinosas Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":18000,"sellPrice":5000,"equipType1":"Gloves","minLevel":270,"def":660,"mDef":660,"material":"Leather"},{"itemId":502211,"className":"HAND02_211","name":"(Faded) Tajtanas Gauntlets","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":18000,"sellPrice":5000,"equipType1":"Gloves","minLevel":270,"def":880,"mDef":440,"material":"Iron"},{"itemId":502212,"className":"HAND02_212","name":"(Faded) Oksinis Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":21960,"sellPrice":5000,"equipType1":"Gloves","minLevel":315,"def":512,"mDef":1024,"material":"Cloth"},{"itemId":502213,"className":"HAND02_213","name":"(Faded) Kaulas Leather Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":21960,"sellPrice":5000,"equipType1":"Gloves","minLevel":315,"def":768,"mDef":768,"material":"Leather"},{"itemId":502214,"className":"HAND02_214","name":"(Faded) Krisius Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":21960,"sellPrice":5000,"equipType1":"Gloves","minLevel":315,"def":1024,"mDef":512,"material":"Iron"},{"itemId":502215,"className":"HAND02_215","name":"Alpra Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Gloves","minLevel":120,"def":200,"mDef":400,"material":"Cloth"},{"itemId":502216,"className":"HAND02_216","name":"Eastern Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Gloves","minLevel":120,"def":300,"mDef":300,"material":"Leather"},{"itemId":502217,"className":"HAND02_217","name":"Pangle Plate Gloves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Gloves","minLevel":120,"def":400,"mDef":200,"material":"Iron"},{"itemId":502218,"className":"HAND02_218","name":"War Mage Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":10913,"sellPrice":0,"equipType1":"Gloves","minLevel":170,"def":280,"mDef":560,"material":"Cloth"},{"itemId":502219,"className":"HAND02_219","name":"Eaglestar Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":10913,"sellPrice":0,"equipType1":"Gloves","minLevel":170,"def":420,"mDef":420,"material":"Leather"},{"itemId":502220,"className":"HAND02_220","name":"Nyx Knight Gloves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":10913,"sellPrice":0,"equipType1":"Gloves","minLevel":170,"def":560,"mDef":280,"material":"Iron"},{"itemId":502221,"className":"HAND02_221","name":"Marone Gloves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Gloves","minLevel":75,"def":128,"mDef":256,"material":"Cloth"},{"itemId":502222,"className":"HAND02_222","name":"Prakeh Gloves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":0,"equipType1":"Gloves","minLevel":220,"def":360,"mDef":720,"material":"Cloth"},{"itemId":502223,"className":"HAND02_223","name":"Razna Leather Gloves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Gloves","minLevel":75,"def":192,"mDef":192,"material":"Leather"},{"itemId":502224,"className":"HAND02_224","name":"Keyarc Leather Gloves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":0,"equipType1":"Gloves","minLevel":220,"def":540,"mDef":540,"material":"Leather"},{"itemId":502225,"className":"HAND02_225","name":"Barghar Plate Gauntlets","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Gloves","minLevel":75,"def":256,"mDef":128,"material":"Iron"},{"itemId":502226,"className":"HAND02_226","name":"Suurit Plate Gauntlets","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":0,"equipType1":"Gloves","minLevel":220,"def":720,"mDef":360,"material":"Iron"},{"itemId":502227,"className":"HAND02_227","name":"Kalinis Gloves","type":"Equip","group":"Armor","weight":25,"maxStack":1,"price":18000,"sellPrice":0,"equipType1":"Gloves","minLevel":270,"def":440,"mDef":880,"material":"Cloth"},{"itemId":502228,"className":"HAND02_228","name":"Albinosas Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":18000,"sellPrice":0,"equipType1":"Gloves","minLevel":270,"def":660,"mDef":660,"material":"Leather"},{"itemId":502229,"className":"HAND02_229","name":"Tajtanas Gauntlets","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":18000,"sellPrice":0,"equipType1":"Gloves","minLevel":270,"def":880,"mDef":440,"material":"Iron"},{"itemId":502230,"className":"HAND02_230","name":"Oksinis Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Gloves","minLevel":315,"def":512,"mDef":1024,"material":"Cloth"},{"itemId":502231,"className":"HAND02_231","name":"Kaulas Leather Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Gloves","minLevel":315,"def":768,"mDef":768,"material":"Leather"},{"itemId":502232,"className":"HAND02_232","name":"Krisius Gauntlets","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Gloves","minLevel":315,"def":1024,"mDef":512,"material":"Iron"},{"itemId":502233,"className":"HAND02_233","name":"Irellis Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":350,"def":568,"mDef":1136,"material":"Cloth"},{"itemId":502234,"className":"HAND02_234","name":"Jevenellis Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":350,"def":852,"mDef":852,"material":"Leather"},{"itemId":502235,"className":"HAND02_235","name":"Basticle Gauntlets","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":350,"def":1136,"mDef":568,"material":"Iron"},{"itemId":502236,"className":"HAND02_236","name":"Planeta Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Gloves","minLevel":380,"def":616,"mDef":1232,"material":"Cloth"},{"itemId":502237,"className":"HAND02_237","name":"Ukas Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Gloves","minLevel":380,"def":924,"mDef":924,"material":"Leather"},{"itemId":502238,"className":"HAND02_238","name":"Galaktikos Gauntlets","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Gloves","minLevel":380,"def":1232,"mDef":616,"material":"Iron"},{"itemId":502239,"className":"HAND02_239","name":"Pilgriste Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":648,"mDef":1296,"material":"Cloth"},{"itemId":502240,"className":"HAND02_240","name":"Vymedzai Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":972,"mDef":972,"material":"Leather"},{"itemId":502241,"className":"HAND02_241","name":"Akmo Gauntlet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1296,"mDef":648,"material":"Iron"},{"itemId":503101,"className":"HAND03_101","name":"Vubbe Fighter Gauntlets","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Gloves","minLevel":15,"def":52,"mDef":52,"material":"Leather"},{"itemId":503102,"className":"HAND03_102","name":"Shield Crasher","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Gloves","minLevel":40,"def":118,"mDef":118,"material":"Leather"},{"itemId":503103,"className":"HAND03_103","name":"Vine Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":3862,"sellPrice":786,"equipType1":"Gloves","minLevel":75,"def":140,"mDef":281,"material":"Cloth"},{"itemId":503105,"className":"HAND03_105","name":"Soul Chaser Gloves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":3862,"sellPrice":1203,"equipType1":"Gloves","minLevel":75,"addMinAtk":16,"def":211,"mDef":211,"material":"Leather"},{"itemId":503106,"className":"HAND03_106","name":"Bone Gauntlets","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":3862,"sellPrice":680,"equipType1":"Gloves","minLevel":75,"def":281,"mDef":140,"material":"Iron"},{"itemId":503107,"className":"HAND03_107","name":"Shade Hands","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Gloves","minLevel":75,"def":211,"mDef":211,"material":"Leather","holyRes":-26},{"itemId":503111,"className":"HAND03_111","name":"Roxona Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":10913,"sellPrice":2243,"equipType1":"Gloves","minLevel":170,"pAtk":5,"def":308,"mDef":616,"material":"Cloth"},{"itemId":503112,"className":"HAND03_112","name":"Roxona Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":10913,"sellPrice":2243,"equipType1":"Gloves","minLevel":170,"def":462,"mDef":462,"material":"Leather"},{"itemId":503113,"className":"HAND03_113","name":"Roxona Plate Gauntlets","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":10913,"sellPrice":2243,"equipType1":"Gloves","minLevel":170,"def":616,"mDef":308,"material":"Iron"},{"itemId":503114,"className":"HAND03_114","name":"Virtov Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":14702,"sellPrice":3571,"equipType1":"Gloves","minLevel":220,"def":396,"mDef":792,"material":"Cloth"},{"itemId":503115,"className":"HAND03_115","name":"Virtov Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":14702,"sellPrice":3571,"equipType1":"Gloves","minLevel":220,"pAtk":19,"def":594,"mDef":594,"material":"Leather"},{"itemId":503116,"className":"HAND03_116","name":"Virtov Plate Gloves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":14702,"sellPrice":3571,"equipType1":"Gloves","minLevel":220,"def":792,"mDef":396,"material":"Iron"},{"itemId":503130,"className":"HAND03_130","name":"Newt Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Gloves","minLevel":270,"def":484,"mDef":968,"material":"Cloth"},{"itemId":503131,"className":"HAND03_131","name":"Newt Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Gloves","minLevel":270,"pAtk":19,"def":726,"mDef":726,"material":"Leather"},{"itemId":503132,"className":"HAND03_132","name":"Newt Plate Gauntlets","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Gloves","minLevel":270,"def":968,"mDef":484,"material":"Iron"},{"itemId":503201,"className":"HAND03_201","name":"Swift Oghma Gauntlets","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":18000,"sellPrice":3672,"equipType1":"Gloves","minLevel":270,"def":968,"mDef":484,"material":"Iron"},{"itemId":503202,"className":"HAND03_202","name":"Dehvlin Gauntlets","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":18000,"sellPrice":3672,"equipType1":"Gloves","minLevel":270,"def":968,"mDef":484,"material":"Iron"},{"itemId":503301,"className":"HAND03_301","name":"(Faded) Alpra Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":6984,"sellPrice":1425,"equipType1":"Gloves","minLevel":120,"def":220,"mDef":440,"material":"Cloth"},{"itemId":503302,"className":"HAND03_302","name":"(Faded) Eastern Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":6984,"sellPrice":1425,"equipType1":"Gloves","minLevel":120,"addMinAtk":27,"addMaxAtk":52,"def":330,"mDef":330,"material":"Leather"},{"itemId":503303,"className":"HAND03_303","name":"(Faded) Pangle Plate Gloves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":6984,"sellPrice":1425,"equipType1":"Gloves","minLevel":120,"addMinAtk":20,"addMaxAtk":43,"def":440,"mDef":220,"material":"Iron"},{"itemId":503304,"className":"HAND03_304","name":"(Faded) War Mage Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":10913,"sellPrice":2243,"equipType1":"Gloves","minLevel":170,"def":308,"mDef":616,"material":"Cloth"},{"itemId":503305,"className":"HAND03_305","name":"(Faded) Eaglestar Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":10913,"sellPrice":2243,"equipType1":"Gloves","minLevel":170,"def":462,"mDef":462,"material":"Leather"},{"itemId":503306,"className":"HAND03_306","name":"(Faded) Nyx Knight Gloves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":10913,"sellPrice":2243,"equipType1":"Gloves","minLevel":170,"def":616,"mDef":308,"material":"Iron"},{"itemId":503307,"className":"HAND03_307","name":"(Faded) Marone Gloves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":680,"equipType1":"Gloves","minLevel":75,"def":140,"mDef":281,"material":"Cloth"},{"itemId":503308,"className":"HAND03_308","name":"(Faded) Prakeh Gloves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":2940,"equipType1":"Gloves","minLevel":220,"def":396,"mDef":792,"material":"Cloth"},{"itemId":503309,"className":"HAND03_309","name":"(Faded) Razna Leather Gloves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":680,"equipType1":"Gloves","minLevel":75,"def":211,"mDef":211,"material":"Leather","darkRes":20},{"itemId":503310,"className":"HAND03_310","name":"(Faded) Keyarc Leather Gloves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":2940,"equipType1":"Gloves","minLevel":220,"def":594,"mDef":594,"material":"Leather"},{"itemId":503311,"className":"HAND03_311","name":"(Faded) Barghar Plate Gauntlets","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":680,"equipType1":"Gloves","minLevel":75,"def":281,"mDef":140,"material":"Iron"},{"itemId":503312,"className":"HAND03_312","name":"(Faded) Suurit Plate Gauntlets","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":2940,"equipType1":"Gloves","minLevel":220,"def":792,"mDef":396,"material":"Iron"},{"itemId":503313,"className":"HAND03_313","name":"(Faded) Vienti Kalinis Gloves","type":"Equip","group":"Armor","weight":25,"maxStack":1,"price":18000,"sellPrice":5000,"equipType1":"Gloves","minLevel":270,"def":484,"mDef":968,"material":"Cloth"},{"itemId":503314,"className":"HAND03_314","name":"(Faded) Vienti Albinosas Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":18000,"sellPrice":5000,"equipType1":"Gloves","minLevel":270,"def":726,"mDef":726,"material":"Leather"},{"itemId":503315,"className":"HAND03_315","name":"(Faded) Vienti Tajtanas Gauntlets","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":18000,"sellPrice":5000,"equipType1":"Gloves","minLevel":270,"def":968,"mDef":484,"material":"Iron"},{"itemId":503316,"className":"HAND03_316","name":"(Faded) Vienti Oksinis Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":21960,"sellPrice":5000,"equipType1":"Gloves","minLevel":315,"def":563,"mDef":1126,"material":"Cloth"},{"itemId":503317,"className":"HAND03_317","name":"(Faded) Vienti Kaulas Leather Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":21960,"sellPrice":5000,"equipType1":"Gloves","minLevel":315,"def":844,"mDef":844,"material":"Leather"},{"itemId":503318,"className":"HAND03_318","name":"(Faded) Vienti Krisius Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":21960,"sellPrice":5000,"equipType1":"Gloves","minLevel":315,"def":1126,"mDef":563,"material":"Iron"},{"itemId":503319,"className":"HAND03_319","name":"Berthas Alpra Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Gloves","minLevel":120,"def":220,"mDef":440,"material":"Cloth"},{"itemId":503320,"className":"HAND03_320","name":"Berthas Eastern Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Gloves","minLevel":120,"def":330,"mDef":330,"material":"Leather"},{"itemId":503321,"className":"HAND03_321","name":"Berthas Pangle Plate Gloves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Gloves","minLevel":120,"def":440,"mDef":220,"material":"Iron"},{"itemId":503322,"className":"HAND03_322","name":"Berthas Warmage Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":10913,"sellPrice":0,"equipType1":"Gloves","minLevel":170,"def":308,"mDef":616,"material":"Cloth"},{"itemId":503323,"className":"HAND03_323","name":"Berthas Eaglestar Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":10913,"sellPrice":0,"equipType1":"Gloves","minLevel":170,"def":462,"mDef":462,"material":"Leather"},{"itemId":503324,"className":"HAND03_324","name":"Berthas Nyx Knight Gloves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":10913,"sellPrice":0,"equipType1":"Gloves","minLevel":170,"def":616,"mDef":308,"material":"Iron"},{"itemId":503325,"className":"HAND03_325","name":"Berthas Marone Gloves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Gloves","minLevel":75,"def":140,"mDef":281,"material":"Cloth"},{"itemId":503326,"className":"HAND03_326","name":"Berthas Prakeh Gloves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":0,"equipType1":"Gloves","minLevel":220,"def":396,"mDef":792,"material":"Cloth"},{"itemId":503327,"className":"HAND03_327","name":"Berthas Razna Leather Gloves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Gloves","minLevel":75,"def":211,"mDef":211,"material":"Leather"},{"itemId":503328,"className":"HAND03_328","name":"Berthas Keyarc Leather Gloves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":0,"equipType1":"Gloves","minLevel":220,"def":594,"mDef":594,"material":"Leather"},{"itemId":503329,"className":"HAND03_329","name":"Berthas Barghar Plate Gauntlets","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Gloves","minLevel":75,"def":281,"mDef":140,"material":"Iron"},{"itemId":503330,"className":"HAND03_330","name":"Berthas Suurit Plate Gauntlets","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":0,"equipType1":"Gloves","minLevel":220,"def":792,"mDef":396,"material":"Iron"},{"itemId":503331,"className":"HAND03_331","name":"Berthas Kalinis Gloves","type":"Equip","group":"Armor","weight":25,"maxStack":1,"price":18000,"sellPrice":0,"equipType1":"Gloves","minLevel":270,"def":484,"mDef":968,"material":"Cloth"},{"itemId":503332,"className":"HAND03_332","name":"Berthas Albinosas Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":18000,"sellPrice":0,"equipType1":"Gloves","minLevel":270,"def":726,"mDef":726,"material":"Leather"},{"itemId":503333,"className":"HAND03_333","name":"Berthas Tajtanas Gauntlets","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":18000,"sellPrice":0,"equipType1":"Gloves","minLevel":270,"def":968,"mDef":484,"material":"Iron"},{"itemId":503334,"className":"HAND03_334","name":"Berthas Oksinis Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Gloves","minLevel":315,"def":563,"mDef":1126,"material":"Cloth"},{"itemId":503335,"className":"HAND03_335","name":"Berthas Kaulas Leather Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Gloves","minLevel":315,"def":844,"mDef":844,"material":"Leather"},{"itemId":503336,"className":"HAND03_336","name":"Berthas Krisius Gauntlets","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Gloves","minLevel":315,"def":1126,"mDef":563,"material":"Iron"},{"itemId":503337,"className":"HAND03_337","name":"Berthas Irellis Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":350,"def":624,"mDef":1249,"material":"Cloth"},{"itemId":503338,"className":"HAND03_338","name":"Berthas Jevenellis Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":350,"def":937,"mDef":937,"material":"Leather"},{"itemId":503339,"className":"HAND03_339","name":"Berthas Basticle Gauntlets","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":350,"def":1249,"mDef":624,"material":"Iron"},{"itemId":503340,"className":"HAND03_340","name":"Berthas Planeta Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Gloves","minLevel":380,"def":677,"mDef":1355,"material":"Cloth"},{"itemId":503341,"className":"HAND03_341","name":"Berthas Ukas Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Gloves","minLevel":380,"def":1016,"mDef":1016,"material":"Leather"},{"itemId":503342,"className":"HAND03_342","name":"Berthas Galaktikos Gauntlets","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Gloves","minLevel":380,"def":1355,"mDef":677,"material":"Iron"},{"itemId":503343,"className":"HAND03_343","name":"Berthas Pilgriste Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":712,"mDef":1425,"material":"Cloth"},{"itemId":503344,"className":"HAND03_344","name":"Berthas Vymedzai Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1069,"mDef":1069,"material":"Leather"},{"itemId":503345,"className":"HAND03_345","name":"Berthas Akmo Gauntlet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1425,"mDef":712,"material":"Iron"},{"itemId":503346,"className":"HAND03_346","name":"Berthas Dysnai Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Gloves","minLevel":430,"def":765,"mDef":1531,"material":"Cloth"},{"itemId":503347,"className":"HAND03_347","name":"Berthas Dysnai Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Gloves","minLevel":430,"def":1148,"mDef":1148,"material":"Leather"},{"itemId":503348,"className":"HAND03_348","name":"Berthas Dysnai Gauntlets","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Gloves","minLevel":430,"def":1531,"mDef":765,"material":"Iron"},{"itemId":504106,"className":"HAND04_106","name":"Lolopanther Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Gloves","minLevel":270,"addMAtk":24,"def":704,"mDef":1408,"material":"Cloth"},{"itemId":504107,"className":"HAND04_107","name":"Lolopanther Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Gloves","minLevel":270,"def":1056,"mDef":1056,"material":"Leather"},{"itemId":504108,"className":"HAND04_108","name":"Lolopanther Plate Gauntlets","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Gloves","minLevel":270,"pAtk":21,"def":1408,"mDef":704,"material":"Iron"},{"itemId":504109,"className":"HAND04_109","name":"Solmiki Gloves","type":"Equip","group":"Armor","weight":25,"maxStack":1,"price":21960,"sellPrice":5828,"equipType1":"Gloves","minLevel":330,"addMAtk":36,"def":857,"mDef":1715,"material":"Cloth"},{"itemId":504110,"className":"HAND04_110","name":"Solmiki Leather Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":21960,"sellPrice":5828,"equipType1":"Gloves","minLevel":330,"def":1286,"mDef":1286,"material":"Leather"},{"itemId":504111,"className":"HAND04_111","name":"Solmiki Plate Gauntlets","type":"Equip","group":"Armor","weight":65,"maxStack":1,"price":21960,"sellPrice":5828,"equipType1":"Gloves","minLevel":330,"pAtk":31,"def":1715,"mDef":857,"material":"Iron"},{"itemId":504112,"className":"HAND04_112","name":"Sausis Gloves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":350,"pAtk":57,"def":1420,"mDef":710,"material":"Iron"},{"itemId":504113,"className":"HAND04_113","name":"Primus Alpra Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Gloves","minLevel":120,"def":250,"mDef":500,"material":"Cloth"},{"itemId":504114,"className":"HAND04_114","name":"Primus Eastern Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Gloves","minLevel":120,"def":375,"mDef":375,"material":"Leather"},{"itemId":504115,"className":"HAND04_115","name":"Primus Pangle Plate Gloves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Gloves","minLevel":120,"def":500,"mDef":250,"material":"Iron"},{"itemId":504116,"className":"HAND04_116","name":"Primus Warmage Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":10913,"sellPrice":0,"equipType1":"Gloves","minLevel":170,"def":350,"mDef":700,"material":"Cloth"},{"itemId":504117,"className":"HAND03_117","name":"Intasurta Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":14702,"sellPrice":3571,"equipType1":"Gloves","minLevel":220,"def":396,"mDef":792,"material":"Cloth","holyRes":-144},{"itemId":504118,"className":"HAND04_118","name":"Primus Nyx Knight Gloves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":10913,"sellPrice":0,"equipType1":"Gloves","minLevel":170,"def":700,"mDef":350,"material":"Iron"},{"itemId":504119,"className":"HAND04_119","name":"Primus Marone Gloves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Gloves","minLevel":75,"def":160,"mDef":320,"material":"Cloth"},{"itemId":504120,"className":"HAND04_120","name":"Primus Prakeh Gloves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":0,"equipType1":"Gloves","minLevel":220,"def":450,"mDef":900,"material":"Cloth"},{"itemId":504121,"className":"HAND04_121","name":"Primus Razna Leather Gloves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Gloves","minLevel":75,"def":240,"mDef":240,"material":"Leather"},{"itemId":504122,"className":"HAND04_122","name":"Primus Keyarc Leather Gloves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":0,"equipType1":"Gloves","minLevel":220,"def":675,"mDef":675,"material":"Leather"},{"itemId":504123,"className":"HAND04_123","name":"Primus Barghar Plate Gauntlets","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Gloves","minLevel":75,"def":320,"mDef":160,"material":"Iron"},{"itemId":504124,"className":"HAND04_124","name":"Primus Suurit Plate Gauntlets","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":0,"equipType1":"Gloves","minLevel":220,"def":900,"mDef":450,"material":"Iron"},{"itemId":504125,"className":"HAND04_125","name":"Primus Kalinis Gloves","type":"Equip","group":"Armor","weight":25,"maxStack":1,"price":18000,"sellPrice":0,"equipType1":"Gloves","minLevel":270,"def":550,"mDef":1100,"material":"Cloth"},{"itemId":504126,"className":"HAND04_126","name":"Primus Albinosas Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":18000,"sellPrice":0,"equipType1":"Gloves","minLevel":270,"def":825,"mDef":825,"material":"Leather"},{"itemId":504127,"className":"HAND04_127","name":"Primus Tajtanas Gauntlets","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":18000,"sellPrice":0,"equipType1":"Gloves","minLevel":270,"def":1100,"mDef":550,"material":"Iron"},{"itemId":504128,"className":"HAND04_128","name":"Primus Oksinis Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Gloves","minLevel":315,"def":640,"mDef":1280,"material":"Cloth"},{"itemId":504129,"className":"HAND04_129","name":"Primus Kaulas Leather Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Gloves","minLevel":315,"def":960,"mDef":960,"material":"Leather"},{"itemId":504130,"className":"HAND04_130","name":"Primus Krisius Gauntlets","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Gloves","minLevel":315,"def":1280,"mDef":640,"material":"Iron"},{"itemId":504131,"className":"HAND04_131","name":"Primus Irellis Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":350,"def":710,"mDef":1420,"material":"Cloth"},{"itemId":504132,"className":"HAND04_132","name":"Primus Jevenellis Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":350,"def":1065,"mDef":1065,"material":"Leather"},{"itemId":504133,"className":"HAND04_133","name":"Primus Basticle Gauntlets","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":350,"def":1420,"mDef":710,"material":"Iron"},{"itemId":504134,"className":"HAND04_134","name":"Laitas Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":350,"addMAtk":78,"def":710,"mDef":1420,"material":"Cloth"},{"itemId":504135,"className":"HAND04_135","name":"Fietas Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":350,"def":1065,"mDef":1065,"material":"Leather"},{"itemId":504136,"className":"HAND04_136","name":"Ausura Gauntlets","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":350,"def":1420,"mDef":710,"material":"Iron"},{"itemId":504137,"className":"HAND04_117","name":"Primus Eaglestar Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":10913,"sellPrice":0,"equipType1":"Gloves","minLevel":170,"def":525,"mDef":525,"material":"Leather"},{"itemId":504138,"className":"HAND04_137","name":"Primus Planeta Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Gloves","minLevel":380,"def":770,"mDef":1540,"material":"Cloth"},{"itemId":504139,"className":"HAND04_138","name":"Primus Ukas Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Gloves","minLevel":380,"def":1155,"mDef":1155,"material":"Leather"},{"itemId":504140,"className":"HAND04_139","name":"Primus Galaktikos Gauntlets","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Gloves","minLevel":380,"def":1540,"mDef":770,"material":"Iron"},{"itemId":504141,"className":"HAND04_140","name":"Ignas Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Gloves","minLevel":380,"def":770,"mDef":1540,"material":"Cloth"},{"itemId":504142,"className":"HAND04_141","name":"Ignas Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Gloves","minLevel":380,"def":1155,"mDef":1155,"material":"Leather"},{"itemId":504143,"className":"HAND04_142","name":"Ignas Plate Gauntlets","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Gloves","minLevel":380,"def":1540,"mDef":770,"material":"Iron"},{"itemId":504144,"className":"HAND04_144","name":"Primus Pilgriste Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":810,"mDef":1620,"material":"Cloth"},{"itemId":504145,"className":"HAND04_145","name":"Primus Vymedzai Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1215,"mDef":1215,"material":"Leather"},{"itemId":504146,"className":"HAND04_146","name":"Primus Akmo Gauntlet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1620,"mDef":810,"material":"Iron"},{"itemId":504147,"className":"HAND04_147","name":"Skiaclipse Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"addMAtk":145,"def":810,"mDef":1620,"material":"Cloth"},{"itemId":504148,"className":"HAND04_148","name":"Skiaclipse Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1215,"mDef":1215,"material":"Leather"},{"itemId":504149,"className":"HAND04_149","name":"Skiaclipse Plate Gauntlet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1620,"mDef":810,"material":"Iron","slashDef":596},{"itemId":504150,"className":"HAND04_150","name":"Skiaclipse Gloves - Compassion","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":810,"mDef":1620,"addMDef":160,"material":"Cloth"},{"itemId":504151,"className":"HAND04_151","name":"Skiaclipse Leather Gloves - Assault","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"pAtk":145,"addMAtk":145,"def":1215,"mDef":1215,"material":"Leather"},{"itemId":504152,"className":"HAND04_152","name":"Skiaclipse Plate Gauntlet - Iron Wall","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1620,"mDef":810,"material":"Iron"},{"itemId":504153,"className":"HAND04_153","name":"Moringponia Plate Gauntlet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1620,"mDef":810,"material":"Iron"},{"itemId":504154,"className":"HAND04_154","name":"Moringponia Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":810,"mDef":1620,"material":"Cloth"},{"itemId":504155,"className":"HAND04_155","name":"Moringponia Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1215,"mDef":1215,"material":"Leather"},{"itemId":504156,"className":"HAND04_156","name":"Misrus Plate Gauntlet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1620,"mDef":810,"material":"Iron"},{"itemId":504157,"className":"HAND04_157","name":"Misrus Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":810,"mDef":1620,"material":"Cloth"},{"itemId":504158,"className":"HAND04_158","name":"Misrus Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1215,"mDef":1215,"material":"Leather"},{"itemId":504159,"className":"HAND04_159","name":"Primus Dysnai Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Gloves","minLevel":430,"def":870,"mDef":1740,"material":"Cloth"},{"itemId":504160,"className":"HAND04_160","name":"Primus Dysnai Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Gloves","minLevel":430,"def":1305,"mDef":1305,"material":"Leather"},{"itemId":504161,"className":"HAND04_161","name":"Primus Dysnai Gauntlets","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Gloves","minLevel":430,"def":1740,"mDef":870,"material":"Iron"},{"itemId":505101,"className":"HAND05_101","name":"Velcoffer Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":360,"def":934,"mDef":1868,"material":"Cloth"},{"itemId":505102,"className":"HAND05_102","name":"Velcoffer Leather Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":360,"def":1401,"mDef":1401,"material":"Leather"},{"itemId":505103,"className":"HAND05_103","name":"Velcoffer Plate Gauntlets","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":360,"def":1868,"mDef":934,"material":"Iron"},{"itemId":505104,"className":"HAND05_104","name":"Velcoffer Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":360,"def":934,"mDef":1868,"material":"Cloth"},{"itemId":505105,"className":"HAND05_105","name":"Velcoffer Leather Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":360,"def":1401,"mDef":1401,"material":"Leather"},{"itemId":505106,"className":"HAND05_106","name":"Velcoffer Plate Gauntlets","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":360,"def":1868,"mDef":934,"material":"Iron"},{"itemId":505107,"className":"HAND05_107","name":"Savinose Pilgriste Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1036,"mDef":2073,"material":"Cloth"},{"itemId":505108,"className":"HAND05_108","name":"Savinose Vymedzai Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1555,"mDef":1555,"material":"Leather"},{"itemId":505109,"className":"HAND05_109","name":"Savinose Akmo Gauntlets","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":2073,"mDef":1036,"material":"Iron"},{"itemId":505110,"className":"HAND05_110","name":"Skiaclipse Varna Plate Gauntlet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":2073,"mDef":1036,"material":"Iron"},{"itemId":505111,"className":"HAND05_111","name":"Skiaclipse Varna Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1555,"mDef":1555,"material":"Leather"},{"itemId":505112,"className":"HAND05_112","name":"Skiaclipse Varna Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1036,"mDef":2073,"material":"Cloth"},{"itemId":511101,"className":"FOOT01_101","name":"Light Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":180,"sellPrice":36,"equipType1":"Boots","minLevel":1,"def":12,"mDef":12,"material":"Leather"},{"itemId":511102,"className":"FOOT01_102","name":"Quilted Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":180,"sellPrice":36,"equipType1":"Boots","minLevel":1,"def":12,"mDef":12,"material":"Leather"},{"itemId":511103,"className":"FOOT01_103","name":"Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":180,"sellPrice":110,"equipType1":"Boots","minLevel":1,"def":12,"mDef":12,"material":"Leather"},{"itemId":511104,"className":"FOOT01_104","name":"Hard Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Boots","minLevel":15,"def":43,"mDef":43,"material":"Leather"},{"itemId":511105,"className":"FOOT01_105","name":"Chain Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Boots","minLevel":15,"def":57,"mDef":28,"material":"Iron"},{"itemId":511106,"className":"FOOT01_106","name":"Mark Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1638,"sellPrice":453,"equipType1":"Boots","minLevel":40,"def":97,"mDef":97,"material":"Leather"},{"itemId":511107,"className":"FOOT01_107","name":"Forest Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Boots","minLevel":40,"def":97,"mDef":97,"material":"Leather"},{"itemId":511108,"className":"FOOT01_108","name":"Grima Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Boots","minLevel":40,"def":64,"mDef":129,"material":"Cloth"},{"itemId":511109,"className":"FOOT01_109","name":"Veris Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Boots","minLevel":40,"def":97,"mDef":97,"material":"Leather"},{"itemId":511110,"className":"FOOT01_110","name":"Scale Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Boots","minLevel":40,"def":129,"mDef":64,"material":"Iron"},{"itemId":511111,"className":"FOOT01_111","name":"Forest Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Boots","minLevel":40,"def":64,"mDef":129,"material":"Cloth"},{"itemId":511112,"className":"FOOT01_112","name":"Klaida Greaves","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Boots","minLevel":40,"def":129,"mDef":64,"material":"Iron"},{"itemId":511113,"className":"FOOT01_113","name":"Hard Veris Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":3862,"sellPrice":786,"equipType1":"Boots","minLevel":75,"def":172,"mDef":172,"material":"Leather"},{"itemId":511114,"className":"FOOT01_114","name":"Superior Scale Boots","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":3862,"sellPrice":786,"equipType1":"Boots","minLevel":75,"def":230,"mDef":115,"material":"Iron"},{"itemId":511115,"className":"FOOT01_115","name":"Regal Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Boots","minLevel":75,"def":115,"mDef":230,"material":"Cloth"},{"itemId":511117,"className":"FOOT01_117","name":"Miner's Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":180,"sellPrice":36,"equipType1":"Boots","minLevel":1,"def":12,"mDef":12,"material":"Leather"},{"itemId":511118,"className":"FOOT01_118","name":"Old Hard Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Boots","minLevel":15,"def":43,"mDef":43,"material":"Leather"},{"itemId":511119,"className":"FOOT01_119","name":"Old Chain Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Boots","minLevel":15,"def":57,"mDef":28,"material":"Iron"},{"itemId":511120,"className":"FOOT01_120","name":"Old Steel Chain Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1638,"sellPrice":270,"equipType1":"Boots","minLevel":40,"def":129,"mDef":64,"material":"Iron"},{"itemId":511121,"className":"FOOT01_121","name":"Brigandine Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Boots","minLevel":75,"def":172,"mDef":172,"material":"Leather"},{"itemId":511122,"className":"FOOT01_122","name":"Plate Greaves","type":"Equip","group":"Armor","weight":66,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Boots","minLevel":75,"def":230,"mDef":115,"material":"Iron"},{"itemId":511126,"className":"FOOT01_126","name":"Acolyte Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1638,"sellPrice":453,"equipType1":"Boots","minLevel":40,"def":64,"mDef":129,"material":"Cloth"},{"itemId":511127,"className":"FOOT01_127","name":"Steel Chain Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1638,"sellPrice":453,"equipType1":"Boots","minLevel":40,"def":129,"mDef":64,"material":"Iron"},{"itemId":511129,"className":"FOOT01_129","name":"Dunkel Quilted Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":180,"sellPrice":36,"equipType1":"Boots","minLevel":1,"def":12,"mDef":12,"material":"Leather"},{"itemId":511130,"className":"FOOT01_130","name":"Dunkel Cotton Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Boots","minLevel":15,"def":28,"mDef":57,"material":"Cloth"},{"itemId":511131,"className":"FOOT01_131","name":"Dunkel Hard Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Boots","minLevel":15,"def":43,"mDef":43,"material":"Leather"},{"itemId":511132,"className":"FOOT01_132","name":"Dunkel Ring Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Boots","minLevel":15,"def":57,"mDef":28,"material":"Iron"},{"itemId":511133,"className":"FOOT01_133","name":"Cotton Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Boots","minLevel":15,"def":28,"mDef":57,"material":"Cloth"},{"itemId":511134,"className":"FOOT01_134","name":"Ring Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Boots","minLevel":15,"def":57,"mDef":28,"material":"Iron"},{"itemId":511135,"className":"FOOT01_135","name":"Superior Regal Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Boots","minLevel":75,"def":115,"mDef":230,"material":"Cloth"},{"itemId":511136,"className":"FOOT01_136","name":"Superior Brigandine Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Boots","minLevel":75,"def":172,"mDef":172,"material":"Leather"},{"itemId":511137,"className":"FOOT01_137","name":"Full Plate Greaves","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Boots","minLevel":75,"def":230,"mDef":115,"material":"Iron"},{"itemId":511138,"className":"FOOT01_138","name":"Fedimian Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":6984,"sellPrice":1425,"equipType1":"Boots","minLevel":120,"def":180,"mDef":360,"material":"Cloth"},{"itemId":511139,"className":"FOOT01_139","name":"Fedimian Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":6984,"sellPrice":1425,"equipType1":"Boots","minLevel":120,"def":270,"mDef":270,"material":"Leather"},{"itemId":511140,"className":"FOOT01_140","name":"Fedimian Greaves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":6984,"sellPrice":1425,"equipType1":"Boots","minLevel":120,"def":360,"mDef":180,"material":"Iron"},{"itemId":511141,"className":"FOOT01_141","name":"Magician Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":6984,"sellPrice":1396,"equipType1":"Boots","minLevel":120,"def":180,"mDef":360,"material":"Cloth"},{"itemId":511142,"className":"FOOT01_142","name":"Hunting Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":6984,"sellPrice":1937,"equipType1":"Boots","minLevel":120,"def":270,"mDef":270,"material":"Leather"},{"itemId":511143,"className":"FOOT01_143","name":"Guard Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":6984,"sellPrice":1396,"equipType1":"Boots","minLevel":120,"def":360,"mDef":180,"material":"Iron"},{"itemId":511144,"className":"FOOT01_144","name":"Mage Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":6984,"sellPrice":1937,"equipType1":"Boots","minLevel":120,"def":180,"mDef":360,"material":"Cloth"},{"itemId":511145,"className":"FOOT01_145","name":"Skirmisher Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":6984,"sellPrice":1937,"equipType1":"Boots","minLevel":120,"def":270,"mDef":270,"material":"Leather"},{"itemId":511146,"className":"FOOT01_146","name":"Infantry Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":6984,"sellPrice":1937,"equipType1":"Boots","minLevel":120,"def":360,"mDef":180,"material":"Iron"},{"itemId":511147,"className":"FOOT01_147","name":"Archmage Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":10913,"sellPrice":2213,"equipType1":"Boots","minLevel":170,"def":252,"mDef":504,"material":"Cloth"},{"itemId":511148,"className":"FOOT01_148","name":"Superior Skirmisher Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":10913,"sellPrice":2213,"equipType1":"Boots","minLevel":170,"def":378,"mDef":378,"material":"Leather"},{"itemId":511149,"className":"FOOT01_149","name":"Superior Infantry Greaves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":10913,"sellPrice":2213,"equipType1":"Boots","minLevel":170,"def":504,"mDef":252,"material":"Iron"},{"itemId":511150,"className":"FOOT01_150","name":"Librarian Boots","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":10913,"sellPrice":2940,"equipType1":"Boots","minLevel":170,"def":252,"mDef":504,"material":"Cloth"},{"itemId":511151,"className":"FOOT01_151","name":"Veteran Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":10913,"sellPrice":2940,"equipType1":"Boots","minLevel":170,"def":378,"mDef":378,"material":"Leather"},{"itemId":511152,"className":"FOOT01_152","name":"Knight Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":10913,"sellPrice":2940,"equipType1":"Boots","minLevel":170,"def":504,"mDef":252,"material":"Iron"},{"itemId":511153,"className":"FOOT01_153","name":"Superior Grima Boots","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":3862,"sellPrice":786,"equipType1":"Boots","minLevel":75,"def":115,"mDef":230,"material":"Cloth"},{"itemId":511154,"className":"FOOT01_154","name":"Royal Mage Boots","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":14702,"sellPrice":2940,"equipType1":"Boots","minLevel":220,"def":324,"mDef":648,"material":"Cloth"},{"itemId":511155,"className":"FOOT01_155","name":"Bandit Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":14702,"sellPrice":2940,"equipType1":"Boots","minLevel":220,"def":486,"mDef":486,"material":"Leather"},{"itemId":511156,"className":"FOOT01_156","name":"Royal Guard Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":14702,"sellPrice":2940,"equipType1":"Boots","minLevel":220,"def":648,"mDef":324,"material":"Iron"},{"itemId":511157,"className":"FOOT01_157","name":"Superior Royal Mage Boots","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":14702,"sellPrice":3571,"equipType1":"Boots","minLevel":220,"def":324,"mDef":648,"material":"Cloth"},{"itemId":511158,"className":"FOOT01_158","name":"Superior Bandit Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":14702,"sellPrice":3571,"equipType1":"Boots","minLevel":220,"def":486,"mDef":486,"material":"Leather"},{"itemId":511159,"className":"FOOT01_159","name":"Superior Royal Guard Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":14702,"sellPrice":3571,"equipType1":"Boots","minLevel":220,"def":648,"mDef":324,"material":"Iron"},{"itemId":511201,"className":"FOOT01_201","name":"Greytis Greaves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":10913,"sellPrice":1950,"equipType1":"Boots","minLevel":170,"def":504,"mDef":252,"material":"Iron"},{"itemId":511202,"className":"FOOT01_202","name":"Kovos Greaves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":10913,"sellPrice":1950,"equipType1":"Boots","minLevel":170,"def":504,"mDef":252,"material":"Iron"},{"itemId":511203,"className":"FOOT01_203","name":"Blint Shoes","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Boots","minLevel":270,"def":396,"mDef":792,"material":"Cloth"},{"itemId":511204,"className":"FOOT01_204","name":"Blint Leather Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Boots","minLevel":270,"def":594,"mDef":594,"material":"Leather"},{"itemId":511205,"className":"FOOT01_205","name":"Blint Plate Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Boots","minLevel":270,"def":792,"mDef":396,"material":"Iron"},{"itemId":511206,"className":"FOOT01_206","name":"(Faded) Replica Kalinis Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":50000,"sellPrice":5000,"equipType1":"Boots","minLevel":270,"def":396,"mDef":792,"material":"Cloth"},{"itemId":511207,"className":"FOOT01_207","name":"(Faded) Replica Albinosas Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":50000,"sellPrice":5000,"equipType1":"Boots","minLevel":270,"def":594,"mDef":594,"material":"Leather"},{"itemId":511208,"className":"FOOT01_208","name":"(Faded) Replica Tajtanas Greaves","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":50000,"sellPrice":5000,"equipType1":"Boots","minLevel":270,"def":792,"mDef":396,"material":"Iron"},{"itemId":511209,"className":"FOOT01_209","name":"(Faded) Replica Oksinis Boots","type":"Equip","group":"Armor","weight":25,"maxStack":1,"price":75000,"sellPrice":5000,"equipType1":"Boots","minLevel":315,"def":460,"mDef":921,"material":"Cloth"},{"itemId":511210,"className":"FOOT01_210","name":"(Faded) Replica Kaulas Leather Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":75000,"sellPrice":5000,"equipType1":"Boots","minLevel":315,"def":691,"mDef":691,"material":"Leather"},{"itemId":511211,"className":"FOOT01_211","name":"(Faded) Replica Krisius Greaves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":75000,"sellPrice":5000,"equipType1":"Boots","minLevel":315,"def":921,"mDef":460,"material":"Iron"},{"itemId":512101,"className":"FOOT02_101","name":"Kabra Boots","type":"Equip","group":"Armor","weight":25,"maxStack":1,"price":180,"sellPrice":259,"equipType1":"Boots","minLevel":1,"def":14,"mDef":14,"material":"Leather"},{"itemId":512104,"className":"FOOT02_104","name":"Zalia Leather Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Boots","minLevel":40,"def":108,"mDef":108,"material":"Leather"},{"itemId":512106,"className":"FOOT02_106","name":"Studded Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Boots","minLevel":40,"def":108,"mDef":108,"material":"Leather"},{"itemId":512107,"className":"FOOT02_107","name":"Insect Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Boots","minLevel":40,"def":144,"mDef":72,"material":"Iron"},{"itemId":512108,"className":"FOOT02_108","name":"Protas Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Boots","minLevel":40,"def":72,"mDef":144,"material":"Cloth"},{"itemId":512111,"className":"FOOT02_111","name":"Magnus Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":3862,"sellPrice":853,"equipType1":"Boots","minLevel":75,"def":128,"mDef":256,"material":"Cloth"},{"itemId":512113,"className":"FOOT02_113","name":"Drake Leather Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Boots","minLevel":75,"def":192,"mDef":192,"material":"Leather"},{"itemId":512114,"className":"FOOT02_114","name":"Silver Plate Greaves","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":3862,"sellPrice":826,"equipType1":"Boots","minLevel":75,"def":256,"mDef":128,"material":"Iron","darkRes":13},{"itemId":512119,"className":"FOOT02_119","name":"Veyo Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1638,"sellPrice":453,"equipType1":"Boots","minLevel":40,"def":108,"mDef":108,"material":"Leather"},{"itemId":512120,"className":"FOOT02_120","name":"Mien Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Boots","minLevel":15,"def":48,"mDef":48,"material":"Leather"},{"itemId":512121,"className":"FOOT02_121","name":"Ravinepede Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Boots","minLevel":40,"def":72,"mDef":144,"material":"Cloth"},{"itemId":512122,"className":"FOOT02_122","name":"Shnayim Greaves","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Boots","minLevel":75,"def":256,"mDef":128,"material":"Iron","lightningRes":18,"earthRes":-14},{"itemId":512123,"className":"FOOT02_123","name":"Cafrisun Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Boots","minLevel":15,"def":48,"mDef":48,"material":"Leather"},{"itemId":512124,"className":"FOOT02_124","name":"Dio Sandals","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":180,"sellPrice":55,"equipType1":"Boots","minLevel":1,"addMAtk":1,"def":9,"mDef":19,"material":"Cloth"},{"itemId":512125,"className":"FOOT02_125","name":"Dio Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":180,"sellPrice":110,"equipType1":"Boots","minLevel":1,"def":14,"mDef":14,"material":"Leather"},{"itemId":512126,"className":"FOOT02_126","name":"Dio Chain Boots","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":180,"sellPrice":55,"equipType1":"Boots","minLevel":1,"def":19,"mDef":9,"material":"Iron"},{"itemId":512127,"className":"FOOT02_127","name":"Thresh Sandals","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Boots","minLevel":15,"addMAtk":2,"def":32,"mDef":64,"material":"Cloth"},{"itemId":512128,"className":"FOOT02_128","name":"Thresh Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Boots","minLevel":15,"def":48,"mDef":48,"material":"Leather"},{"itemId":512129,"className":"FOOT02_129","name":"Thresh Chain Boots","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Boots","minLevel":15,"def":64,"mDef":32,"material":"Iron"},{"itemId":512130,"className":"FOOT02_130","name":"Sestas Sandals","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Boots","minLevel":15,"addMAtk":3,"def":32,"mDef":64,"material":"Cloth"},{"itemId":512131,"className":"FOOT02_131","name":"Sestas Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Boots","minLevel":15,"def":48,"mDef":48,"material":"Leather"},{"itemId":512132,"className":"FOOT02_132","name":"Sestas Chain Boots","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Boots","minLevel":15,"def":64,"mDef":32,"material":"Iron"},{"itemId":512133,"className":"FOOT02_133","name":"Dratt Sandals","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Boots","minLevel":40,"addMAtk":5,"def":72,"mDef":144,"material":"Cloth"},{"itemId":512134,"className":"FOOT02_134","name":"Dratt Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Boots","minLevel":40,"def":108,"mDef":108,"material":"Leather"},{"itemId":512135,"className":"FOOT02_135","name":"Dratt Greaves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Boots","minLevel":40,"def":144,"mDef":72,"material":"Iron"},{"itemId":512136,"className":"FOOT02_136","name":"Aston Sandals","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Boots","minLevel":40,"addMAtk":6,"def":72,"mDef":144,"material":"Cloth"},{"itemId":512137,"className":"FOOT02_137","name":"Aston Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Boots","minLevel":40,"def":108,"mDef":108,"material":"Leather"},{"itemId":512138,"className":"FOOT02_138","name":"Aston Greaves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Boots","minLevel":40,"def":144,"mDef":72,"material":"Iron"},{"itemId":512139,"className":"FOOT02_139","name":"Devi Sandals","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":3862,"sellPrice":826,"equipType1":"Boots","minLevel":75,"addMAtk":8,"def":128,"mDef":256,"material":"Cloth"},{"itemId":512140,"className":"FOOT02_140","name":"Devi Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Boots","minLevel":75,"def":192,"mDef":192,"material":"Leather"},{"itemId":512141,"className":"FOOT02_141","name":"Devi Greaves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":3862,"sellPrice":826,"equipType1":"Boots","minLevel":75,"def":256,"mDef":128,"material":"Iron"},{"itemId":512142,"className":"FOOT02_142","name":"Prima Sandals","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Boots","minLevel":75,"addMAtk":11,"def":128,"mDef":256,"material":"Cloth"},{"itemId":512143,"className":"FOOT02_143","name":"Prima Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":3862,"sellPrice":1228,"equipType1":"Boots","minLevel":75,"def":192,"mDef":192,"material":"Leather"},{"itemId":512144,"className":"FOOT02_144","name":"Prima Greaves","type":"Equip","group":"Armor","weight":66,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Boots","minLevel":75,"def":256,"mDef":128,"material":"Iron"},{"itemId":512148,"className":"FOOT02_148","name":"Walker","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":180,"sellPrice":110,"equipType1":"Boots","minLevel":1,"def":9,"mDef":19,"material":"Cloth"},{"itemId":512153,"className":"FOOT02_153","name":"Watcher Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1296,"sellPrice":327,"equipType1":"Boots","minLevel":15,"def":48,"mDef":48,"material":"Leather"},{"itemId":512154,"className":"FOOT02_154","name":"Earth Boots","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":1638,"sellPrice":772,"equipType1":"Boots","minLevel":40,"def":72,"mDef":144,"material":"Cloth"},{"itemId":512155,"className":"FOOT02_155","name":"Leather Earth Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":1638,"sellPrice":772,"equipType1":"Boots","minLevel":40,"def":108,"mDef":108,"material":"Leather"},{"itemId":512156,"className":"FOOT02_156","name":"Earth Plate Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1638,"sellPrice":772,"equipType1":"Boots","minLevel":40,"def":144,"mDef":72,"material":"Iron"},{"itemId":512157,"className":"FOOT02_157","name":"Legwyn Family Boots","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":6984,"sellPrice":1937,"equipType1":"Boots","minLevel":120,"def":200,"mDef":400,"material":"Cloth"},{"itemId":512158,"className":"FOOT02_158","name":"Legwyn Family Leather Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":6984,"sellPrice":1937,"equipType1":"Boots","minLevel":120,"def":300,"mDef":300,"material":"Leather"},{"itemId":512159,"className":"FOOT02_159","name":"Legwyn Family Plate Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":6984,"sellPrice":1937,"equipType1":"Boots","minLevel":120,"def":400,"mDef":200,"material":"Iron"},{"itemId":512160,"className":"FOOT02_160","name":"Ogva Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Boots","minLevel":15,"def":32,"mDef":64,"material":"Cloth"},{"itemId":512161,"className":"FOOT02_161","name":"Ogva Leather Boots","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Boots","minLevel":15,"def":48,"mDef":48,"material":"Leather"},{"itemId":512162,"className":"FOOT02_162","name":"Ogva Chain Boots","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Boots","minLevel":15,"def":64,"mDef":32,"material":"Iron"},{"itemId":512163,"className":"FOOT02_163","name":"Partis Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Boots","minLevel":15,"def":32,"mDef":64,"material":"Cloth"},{"itemId":512164,"className":"FOOT02_164","name":"Partis Leather Boots","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Boots","minLevel":15,"def":48,"mDef":48,"material":"Leather"},{"itemId":512165,"className":"FOOT02_165","name":"Partis Ring Boots","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":1296,"sellPrice":259,"equipType1":"Boots","minLevel":15,"def":64,"mDef":32,"material":"Iron"},{"itemId":512166,"className":"FOOT02_166","name":"Sirdgela Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Boots","minLevel":40,"def":72,"mDef":144,"material":"Cloth"},{"itemId":512167,"className":"FOOT02_167","name":"Sirdgela Leather Boots","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Boots","minLevel":40,"def":108,"mDef":108,"material":"Leather"},{"itemId":512168,"className":"FOOT02_168","name":"Sirdgela Scale Boots","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Boots","minLevel":40,"def":144,"mDef":72,"material":"Iron"},{"itemId":512169,"className":"FOOT02_169","name":"Philis Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Boots","minLevel":40,"def":72,"mDef":144,"material":"Cloth"},{"itemId":512170,"className":"FOOT02_170","name":"Philis Leather Boots","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Boots","minLevel":40,"def":108,"mDef":108,"material":"Leather"},{"itemId":512171,"className":"FOOT02_171","name":"Philis Scale Boots","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":1638,"sellPrice":680,"equipType1":"Boots","minLevel":40,"def":144,"mDef":72,"material":"Iron"},{"itemId":512172,"className":"FOOT02_172","name":"Allerno Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":3862,"sellPrice":772,"equipType1":"Boots","minLevel":75,"def":128,"mDef":256,"material":"Cloth"},{"itemId":512173,"className":"FOOT02_173","name":"Allerno Leather Boots","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":3862,"sellPrice":772,"equipType1":"Boots","minLevel":75,"def":192,"mDef":192,"material":"Leather"},{"itemId":512174,"className":"FOOT02_174","name":"Allerno Plate Greaves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":3862,"sellPrice":772,"equipType1":"Boots","minLevel":75,"def":256,"mDef":128,"material":"Iron"},{"itemId":512175,"className":"FOOT02_175","name":"Perelin Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":3862,"sellPrice":772,"equipType1":"Boots","minLevel":75,"def":128,"mDef":256,"material":"Cloth"},{"itemId":512176,"className":"FOOT02_176","name":"Perelin Leather Boots","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":3862,"sellPrice":772,"equipType1":"Boots","minLevel":75,"def":192,"mDef":192,"material":"Leather"},{"itemId":512177,"className":"FOOT02_177","name":"Perelin Plate Greaves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":3862,"sellPrice":772,"equipType1":"Boots","minLevel":75,"def":256,"mDef":128,"material":"Iron"},{"itemId":512178,"className":"FOOT02_178","name":"Turn Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":6984,"sellPrice":1215,"equipType1":"Boots","minLevel":120,"def":200,"mDef":400,"material":"Cloth"},{"itemId":512179,"className":"FOOT02_179","name":"Turn Leather Boots","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":6984,"sellPrice":1215,"equipType1":"Boots","minLevel":120,"def":300,"mDef":300,"material":"Leather"},{"itemId":512180,"className":"FOOT02_180","name":"Turn Plate Greaves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":6984,"sellPrice":1215,"equipType1":"Boots","minLevel":120,"def":400,"mDef":200,"material":"Iron"},{"itemId":512181,"className":"FOOT02_181","name":"Shaton Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":6984,"sellPrice":1228,"equipType1":"Boots","minLevel":120,"def":200,"mDef":400,"material":"Cloth"},{"itemId":512182,"className":"FOOT02_182","name":"Shaton Leather Boots","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":6984,"sellPrice":1228,"equipType1":"Boots","minLevel":120,"def":300,"mDef":300,"material":"Leather"},{"itemId":512183,"className":"FOOT02_183","name":"Shaton Plate Greaves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":6984,"sellPrice":1228,"equipType1":"Boots","minLevel":120,"def":400,"mDef":200,"material":"Iron"},{"itemId":512184,"className":"FOOT02_184","name":"Tyla Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":10913,"sellPrice":1950,"equipType1":"Boots","minLevel":170,"def":280,"mDef":560,"material":"Cloth"},{"itemId":512185,"className":"FOOT02_185","name":"Tyla Leather Boots","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":10913,"sellPrice":1950,"equipType1":"Boots","minLevel":170,"def":420,"mDef":420,"material":"Leather"},{"itemId":512186,"className":"FOOT02_186","name":"Tyla Plate Greaves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":10913,"sellPrice":1950,"equipType1":"Boots","minLevel":170,"def":560,"mDef":280,"material":"Iron"},{"itemId":512188,"className":"FOOT02_188","name":"Elkosh Boots","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":14702,"sellPrice":2940,"equipType1":"Boots","minLevel":220,"def":360,"mDef":720,"material":"Cloth"},{"itemId":512189,"className":"FOOT02_189","name":"Ibre Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":14702,"sellPrice":3571,"equipType1":"Boots","minLevel":220,"def":540,"mDef":540,"material":"Leather","iceRes":11},{"itemId":512190,"className":"FOOT02_190","name":"Grynas Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":14702,"sellPrice":3571,"equipType1":"Boots","minLevel":220,"def":720,"mDef":360,"material":"Iron"},{"itemId":512200,"className":"FOOT02_200","name":"Valtas Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":14702,"sellPrice":2940,"equipType1":"Boots","minLevel":220,"def":360,"mDef":720,"material":"Cloth"},{"itemId":512201,"className":"FOOT02_201","name":"Valtas Leather Boots","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":14702,"sellPrice":2940,"equipType1":"Boots","minLevel":220,"def":540,"mDef":540,"material":"Leather"},{"itemId":512202,"className":"FOOT02_202","name":"Valtas Plate Greaves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":14702,"sellPrice":2940,"equipType1":"Boots","minLevel":220,"def":720,"mDef":360,"material":"Iron"},{"itemId":512203,"className":"FOOT02_203","name":"Superior Greytis Greaves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":2940,"equipType1":"Boots","minLevel":220,"def":720,"mDef":360,"material":"Iron"},{"itemId":512204,"className":"FOOT02_204","name":"Superior Kovos Greaves","type":"Equip","group":"Armor","weight":65,"maxStack":1,"price":14702,"sellPrice":2940,"equipType1":"Boots","minLevel":220,"def":720,"mDef":360,"material":"Iron","fireRes":5},{"itemId":512205,"className":"FOOT02_205","name":"Hasta Shoes","type":"Equip","group":"Armor","weight":25,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Boots","minLevel":270,"def":440,"mDef":880,"material":"Cloth"},{"itemId":512206,"className":"FOOT02_206","name":"Hasta Leather Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Boots","minLevel":270,"def":660,"mDef":660,"material":"Leather"},{"itemId":512207,"className":"FOOT02_207","name":"Hasta Plate Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Boots","minLevel":270,"def":880,"mDef":440,"material":"Iron"},{"itemId":512208,"className":"FOOT02_208","name":"Manahas Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Boots","minLevel":270,"def":660,"mDef":660,"material":"Leather","iceRes":15},{"itemId":512209,"className":"FOOT02_209","name":"(Faded) Kalinis Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":18000,"sellPrice":5000,"equipType1":"Boots","minLevel":270,"def":440,"mDef":880,"material":"Cloth"},{"itemId":512210,"className":"FOOT02_210","name":"(Faded) Albinosas Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":18000,"sellPrice":5000,"equipType1":"Boots","minLevel":270,"def":660,"mDef":660,"material":"Leather"},{"itemId":512211,"className":"FOOT02_211","name":"(Faded) Tajtanas Greaves","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":18000,"sellPrice":5000,"equipType1":"Boots","minLevel":270,"def":880,"mDef":440,"material":"Iron"},{"itemId":512212,"className":"FOOT02_212","name":"(Faded) Oksinis Boots","type":"Equip","group":"Armor","weight":25,"maxStack":1,"price":21960,"sellPrice":5000,"equipType1":"Boots","minLevel":315,"def":512,"mDef":1024,"material":"Cloth"},{"itemId":512213,"className":"FOOT02_213","name":"(Faded) Kaulas Leather Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":21960,"sellPrice":5000,"equipType1":"Boots","minLevel":315,"def":768,"mDef":768,"material":"Leather"},{"itemId":512214,"className":"FOOT02_214","name":"(Faded) Krisius Greaves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":21960,"sellPrice":5000,"equipType1":"Boots","minLevel":315,"def":1024,"mDef":512,"material":"Iron"},{"itemId":512215,"className":"FOOT02_215","name":"Alpra Boots","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Boots","minLevel":120,"def":200,"mDef":400,"material":"Cloth"},{"itemId":512216,"className":"FOOT02_216","name":"Eastern Leather Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Boots","minLevel":120,"def":300,"mDef":300,"material":"Leather"},{"itemId":512217,"className":"FOOT02_217","name":"Pangle Plate Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Boots","minLevel":120,"def":400,"mDef":200,"material":"Iron"},{"itemId":512218,"className":"FOOT02_218","name":"War Mage Boots","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":10913,"sellPrice":0,"equipType1":"Boots","minLevel":170,"def":280,"mDef":560,"material":"Cloth"},{"itemId":512219,"className":"FOOT02_219","name":"Eaglestar Leather Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":10913,"sellPrice":0,"equipType1":"Boots","minLevel":170,"def":420,"mDef":420,"material":"Leather"},{"itemId":512220,"className":"FOOT02_220","name":"Nyx Knight Greaves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":10913,"sellPrice":0,"equipType1":"Boots","minLevel":170,"def":560,"mDef":280,"material":"Iron"},{"itemId":512221,"className":"FOOT02_221","name":"Marone Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Boots","minLevel":75,"def":128,"mDef":256,"material":"Cloth"},{"itemId":512222,"className":"FOOT02_222","name":"Prakeh Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":0,"equipType1":"Boots","minLevel":220,"def":360,"mDef":720,"material":"Cloth"},{"itemId":512223,"className":"FOOT02_223","name":"Razna Leather Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Boots","minLevel":75,"def":192,"mDef":192,"material":"Leather"},{"itemId":512224,"className":"FOOT02_224","name":"Keyarc Leather Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":0,"equipType1":"Boots","minLevel":220,"def":540,"mDef":540,"material":"Leather"},{"itemId":512225,"className":"FOOT02_225","name":"Barghar Plate Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Boots","minLevel":75,"def":256,"mDef":128,"material":"Iron"},{"itemId":512226,"className":"FOOT02_226","name":"Suurit Plate Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":0,"equipType1":"Boots","minLevel":220,"def":720,"mDef":360,"material":"Iron"},{"itemId":512227,"className":"FOOT02_227","name":"Kalinis Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":18000,"sellPrice":0,"equipType1":"Boots","minLevel":270,"def":440,"mDef":880,"material":"Cloth"},{"itemId":512228,"className":"FOOT02_228","name":"Albinosas Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":18000,"sellPrice":0,"equipType1":"Boots","minLevel":270,"def":660,"mDef":660,"material":"Leather"},{"itemId":512229,"className":"FOOT02_229","name":"Tajtanas Greaves","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":18000,"sellPrice":0,"equipType1":"Boots","minLevel":270,"def":880,"mDef":440,"material":"Iron"},{"itemId":512230,"className":"FOOT02_230","name":"Oksinis Boots","type":"Equip","group":"Armor","weight":25,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Boots","minLevel":315,"def":512,"mDef":1024,"material":"Cloth"},{"itemId":512231,"className":"FOOT02_231","name":"Kaulas Leather Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Boots","minLevel":315,"def":768,"mDef":768,"material":"Leather"},{"itemId":512232,"className":"FOOT02_232","name":"Krisius Greaves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Boots","minLevel":315,"def":1024,"mDef":512,"material":"Iron"},{"itemId":512233,"className":"FOOT02_233","name":"Irellis Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Boots","minLevel":350,"def":568,"mDef":1136,"material":"Cloth"},{"itemId":512234,"className":"FOOT02_234","name":"Jevenellis Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Boots","minLevel":350,"def":852,"mDef":852,"material":"Leather"},{"itemId":512235,"className":"FOOT02_235","name":"Basticle Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Boots","minLevel":350,"def":1136,"mDef":568,"material":"Iron"},{"itemId":512236,"className":"FOOT02_236","name":"Planeta Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Boots","minLevel":380,"def":616,"mDef":1232,"material":"Cloth"},{"itemId":512237,"className":"FOOT02_237","name":"Ukas Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Boots","minLevel":380,"def":924,"mDef":924,"material":"Leather"},{"itemId":512238,"className":"FOOT02_238","name":"Galaktikos Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Boots","minLevel":380,"def":1232,"mDef":616,"material":"Iron"},{"itemId":512239,"className":"FOOT02_239","name":"Pilgriste Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":648,"mDef":1296,"material":"Cloth"},{"itemId":512240,"className":"FOOT02_240","name":"Vymedzai Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":972,"mDef":972,"material":"Leather"},{"itemId":512241,"className":"FOOT02_241","name":"Akmo Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1296,"mDef":648,"material":"Iron"},{"itemId":513103,"className":"FOOT03_103","name":"Vine Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":3862,"sellPrice":853,"equipType1":"Boots","minLevel":75,"def":140,"mDef":281,"material":"Cloth"},{"itemId":513105,"className":"FOOT03_105","name":"Soul Chaser Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":3862,"sellPrice":1215,"equipType1":"Boots","minLevel":75,"def":211,"mDef":211,"material":"Leather"},{"itemId":513106,"className":"FOOT03_106","name":"Bone Greaves","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":3862,"sellPrice":786,"equipType1":"Boots","minLevel":75,"def":281,"mDef":140,"material":"Iron"},{"itemId":513107,"className":"FOOT03_107","name":"Shade Runner","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":3862,"sellPrice":1228,"equipType1":"Boots","minLevel":75,"def":211,"mDef":211,"material":"Leather"},{"itemId":513111,"className":"FOOT03_111","name":"Roxona Boots","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":10913,"sellPrice":2243,"equipType1":"Boots","minLevel":170,"def":308,"mDef":616,"material":"Cloth"},{"itemId":513112,"className":"FOOT03_112","name":"Roxona Leather Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":10913,"sellPrice":2243,"equipType1":"Boots","minLevel":170,"def":462,"mDef":462,"material":"Leather"},{"itemId":513113,"className":"FOOT03_113","name":"Roxona Plate Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":10913,"sellPrice":2243,"equipType1":"Boots","minLevel":170,"def":616,"mDef":308,"material":"Iron"},{"itemId":513114,"className":"FOOT03_114","name":"Virtov Boots","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":14702,"sellPrice":3571,"equipType1":"Boots","minLevel":220,"def":396,"mDef":792,"material":"Cloth"},{"itemId":513115,"className":"FOOT03_115","name":"Virtov Leather Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":14702,"sellPrice":3571,"equipType1":"Boots","minLevel":220,"def":594,"mDef":594,"material":"Leather"},{"itemId":513116,"className":"FOOT03_116","name":"Virtov Plate Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":14702,"sellPrice":3571,"equipType1":"Boots","minLevel":220,"def":792,"mDef":396,"material":"Iron"},{"itemId":513130,"className":"FOOT03_130","name":"Newt Boots","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Boots","minLevel":270,"def":484,"mDef":968,"material":"Cloth"},{"itemId":513131,"className":"FOOT03_131","name":"Newt Leather Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Boots","minLevel":270,"def":726,"mDef":726,"material":"Leather"},{"itemId":513132,"className":"FOOT03_132","name":"Newt Plate Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Boots","minLevel":270,"def":968,"mDef":484,"material":"Iron"},{"itemId":513201,"className":"FOOT03_201","name":"Cylli Plate Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":18000,"sellPrice":3672,"equipType1":"Boots","minLevel":270,"def":968,"mDef":484,"material":"Iron"},{"itemId":513202,"className":"FOOT03_202","name":"Shade Greaves","type":"Equip","group":"Armor","weight":65,"maxStack":1,"price":18000,"sellPrice":3672,"equipType1":"Boots","minLevel":270,"def":968,"mDef":484,"material":"Iron","fireRes":5},{"itemId":513301,"className":"FOOT03_301","name":"(Faded) Alpra Boots","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":6984,"sellPrice":1425,"equipType1":"Boots","minLevel":120,"def":220,"mDef":440,"material":"Cloth","darkRes":-20},{"itemId":513302,"className":"FOOT03_302","name":"(Faded) Eastern Leather Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":6984,"sellPrice":1425,"equipType1":"Boots","minLevel":120,"def":330,"mDef":330,"material":"Leather"},{"itemId":513303,"className":"FOOT03_303","name":"(Faded) Pangle Plate Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":6984,"sellPrice":1425,"equipType1":"Boots","minLevel":120,"addMaxAtk":7,"def":440,"mDef":220,"material":"Iron"},{"itemId":513304,"className":"FOOT03_304","name":"(Faded) War Mage Boots","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":10913,"sellPrice":2243,"equipType1":"Boots","minLevel":170,"def":308,"mDef":616,"material":"Cloth","earthRes":-32},{"itemId":513305,"className":"FOOT03_305","name":"(Faded) Eaglestar Leather Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":10913,"sellPrice":2243,"equipType1":"Boots","minLevel":170,"addMinAtk":28,"def":462,"mDef":462,"material":"Leather"},{"itemId":513306,"className":"FOOT03_306","name":"(Faded) Nyx Knight Greaves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":10913,"sellPrice":2243,"equipType1":"Boots","minLevel":170,"def":616,"mDef":308,"material":"Iron"},{"itemId":513307,"className":"FOOT03_307","name":"(Faded) Marone Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":680,"equipType1":"Boots","minLevel":75,"def":140,"mDef":281,"material":"Cloth","strikeDef":23},{"itemId":513308,"className":"FOOT03_308","name":"(Faded) Prakeh Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":2940,"equipType1":"Boots","minLevel":220,"def":396,"mDef":792,"material":"Cloth","fireRes":80},{"itemId":513309,"className":"FOOT03_309","name":"(Faded) Razna Leather Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":680,"equipType1":"Boots","minLevel":75,"def":211,"mDef":211,"material":"Leather","strikeDef":10},{"itemId":513310,"className":"FOOT03_310","name":"(Faded) Keyarc Leather Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":2940,"equipType1":"Boots","minLevel":220,"def":594,"mDef":594,"material":"Leather"},{"itemId":513311,"className":"FOOT03_311","name":"(Faded) Barghar Plate Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":680,"equipType1":"Boots","minLevel":75,"def":281,"mDef":140,"material":"Iron","slashDef":30},{"itemId":513312,"className":"FOOT03_312","name":"(Faded) Suurit Plate Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":2940,"equipType1":"Boots","minLevel":220,"def":792,"mDef":396,"material":"Iron","slashDef":113},{"itemId":513313,"className":"FOOT03_313","name":"(Faded) Vienti Kalinis Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":18000,"sellPrice":5000,"equipType1":"Boots","minLevel":270,"def":484,"mDef":968,"material":"Cloth"},{"itemId":513314,"className":"FOOT03_314","name":"(Faded) Vienti Albinosas Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":18000,"sellPrice":5000,"equipType1":"Boots","minLevel":270,"def":726,"mDef":726,"material":"Leather"},{"itemId":513315,"className":"FOOT03_315","name":"(Faded) Vienti Tajtanas Greaves","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":18000,"sellPrice":5000,"equipType1":"Boots","minLevel":270,"def":968,"mDef":484,"material":"Iron"},{"itemId":513316,"className":"FOOT03_316","name":"(Faded) Vienti Oksinis Boots","type":"Equip","group":"Armor","weight":25,"maxStack":1,"price":21960,"sellPrice":5000,"equipType1":"Boots","minLevel":315,"def":563,"mDef":1126,"material":"Cloth"},{"itemId":513317,"className":"FOOT03_317","name":"(Faded) Vienti Kaulas Leather Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":21960,"sellPrice":5000,"equipType1":"Boots","minLevel":315,"def":844,"mDef":844,"material":"Leather"},{"itemId":513318,"className":"FOOT03_318","name":"(Faded) Vienti Krisius Greaves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":21960,"sellPrice":5000,"equipType1":"Boots","minLevel":315,"def":1126,"mDef":563,"material":"Iron"},{"itemId":513319,"className":"FOOT03_319","name":"Sausis Leather Boots","type":"Equip","group":"Armor","weight":15,"maxStack":1,"price":24959,"sellPrice":47,"equipType1":"Boots","minLevel":350,"def":1065,"mDef":1065,"material":"Leather"},{"itemId":513320,"className":"FOOT03_320","name":"Berthas Alpra Boots","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Boots","minLevel":120,"def":220,"mDef":440,"material":"Cloth"},{"itemId":513321,"className":"FOOT03_321","name":"Berthas Eastern Leather Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Boots","minLevel":120,"def":330,"mDef":330,"material":"Leather"},{"itemId":513322,"className":"FOOT03_322","name":"Berthas Pangle Plate Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Boots","minLevel":120,"def":440,"mDef":220,"material":"Iron"},{"itemId":513323,"className":"FOOT03_323","name":"Berthas Warmage Boots","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":10913,"sellPrice":0,"equipType1":"Boots","minLevel":170,"def":308,"mDef":616,"material":"Cloth"},{"itemId":513324,"className":"FOOT03_324","name":"Berthas Eaglestar Leather Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":10913,"sellPrice":0,"equipType1":"Boots","minLevel":170,"def":462,"mDef":462,"material":"Leather"},{"itemId":513325,"className":"FOOT03_325","name":"Berthas Nyx Knight Greaves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":10913,"sellPrice":0,"equipType1":"Boots","minLevel":170,"def":616,"mDef":308,"material":"Iron"},{"itemId":513326,"className":"FOOT03_326","name":"Berthas Marone Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Boots","minLevel":75,"def":140,"mDef":281,"material":"Cloth"},{"itemId":513327,"className":"FOOT03_327","name":"Berthas Prakeh Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":0,"equipType1":"Boots","minLevel":220,"def":396,"mDef":792,"material":"Cloth"},{"itemId":513328,"className":"FOOT03_328","name":"Berthas Razna Leather Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Boots","minLevel":75,"def":211,"mDef":211,"material":"Leather"},{"itemId":513329,"className":"FOOT03_329","name":"Berthas Keyarc Leather Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":0,"equipType1":"Boots","minLevel":220,"def":594,"mDef":594,"material":"Leather"},{"itemId":513330,"className":"FOOT03_330","name":"Berthas Barghar Plate Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Boots","minLevel":75,"def":281,"mDef":140,"material":"Iron"},{"itemId":513331,"className":"FOOT03_331","name":"Berthas Suurit Plate Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":0,"equipType1":"Boots","minLevel":220,"def":792,"mDef":396,"material":"Iron"},{"itemId":513332,"className":"FOOT03_332","name":"Berthas Kalinis Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":18000,"sellPrice":0,"equipType1":"Boots","minLevel":270,"def":484,"mDef":968,"material":"Cloth"},{"itemId":513333,"className":"FOOT03_333","name":"Berthas Albinosas Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":18000,"sellPrice":0,"equipType1":"Boots","minLevel":270,"def":726,"mDef":726,"material":"Leather"},{"itemId":513334,"className":"FOOT03_334","name":"Berthas Tajtanas Greaves","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":18000,"sellPrice":0,"equipType1":"Boots","minLevel":270,"def":968,"mDef":484,"material":"Iron"},{"itemId":513335,"className":"FOOT03_335","name":"Berthas Oksinis Boots","type":"Equip","group":"Armor","weight":25,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Boots","minLevel":315,"def":563,"mDef":1126,"material":"Cloth"},{"itemId":513336,"className":"FOOT03_336","name":"Berthas Kaulas Leather Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Boots","minLevel":315,"def":844,"mDef":844,"material":"Leather"},{"itemId":513337,"className":"FOOT03_337","name":"Berthas Krisius Greaves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Boots","minLevel":315,"def":1126,"mDef":563,"material":"Iron"},{"itemId":513338,"className":"FOOT03_338","name":"Berthas Irellis Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Boots","minLevel":350,"def":624,"mDef":1249,"material":"Cloth"},{"itemId":513339,"className":"FOOT03_339","name":"Berthas Jevenellis Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Boots","minLevel":350,"def":937,"mDef":937,"material":"Leather"},{"itemId":513340,"className":"FOOT03_340","name":"Berthas Basticle Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Boots","minLevel":350,"def":1249,"mDef":624,"material":"Iron"},{"itemId":513341,"className":"FOOT03_341","name":"Berthas Planeta Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Boots","minLevel":380,"def":677,"mDef":1355,"material":"Cloth"},{"itemId":513342,"className":"FOOT03_342","name":"Berthas Ukas Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Boots","minLevel":380,"def":1016,"mDef":1016,"material":"Leather"},{"itemId":513343,"className":"FOOT03_343","name":"Berthas Galaktikos Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Boots","minLevel":380,"def":1355,"mDef":677,"material":"Iron"},{"itemId":513344,"className":"FOOT03_344","name":"Berthas Pilgriste Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":712,"mDef":1425,"material":"Cloth"},{"itemId":513345,"className":"FOOT03_345","name":"Berthas Vymedzai Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1069,"mDef":1069,"material":"Leather"},{"itemId":513346,"className":"FOOT03_346","name":"Berthas Akmo Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1425,"mDef":712,"material":"Iron"},{"itemId":513347,"className":"FOOT03_347","name":"Berthas Dysnai Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Boots","minLevel":430,"def":765,"mDef":1531,"material":"Cloth"},{"itemId":513348,"className":"FOOT03_348","name":"Berthas Dysnai Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Boots","minLevel":430,"def":1148,"mDef":1148,"material":"Leather"},{"itemId":513349,"className":"FOOT03_349","name":"Berthas Dysnai Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Boots","minLevel":430,"def":1531,"mDef":765,"material":"Iron"},{"itemId":514101,"className":"FOOT04_101","name":"Wind Runner","type":"Equip","group":"Armor","weight":15,"maxStack":1,"price":3862,"sellPrice":47,"equipType1":"Boots","minLevel":75,"def":240,"mDef":240,"material":"Leather"},{"itemId":514105,"className":"FOOT04_105","name":"GM Boots","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":180,"sellPrice":36,"equipType1":"Boots","minLevel":1,"def":18,"mDef":18,"material":"Leather"},{"itemId":514106,"className":"FOOT04_106","name":"Lolopanther Boots","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Boots","minLevel":270,"addMAtk":24,"def":704,"mDef":1408,"material":"Cloth"},{"itemId":514107,"className":"FOOT04_107","name":"Lolopanther Leather Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Boots","minLevel":270,"def":1056,"mDef":1056,"material":"Leather"},{"itemId":514108,"className":"FOOT04_108","name":"Lolopanther Plate Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Boots","minLevel":270,"def":1408,"mDef":704,"material":"Iron"},{"itemId":514109,"className":"FOOT04_109","name":"Solmiki Boots","type":"Equip","group":"Armor","weight":25,"maxStack":1,"price":21960,"sellPrice":5828,"equipType1":"Boots","minLevel":330,"addMAtk":36,"def":857,"mDef":1715,"material":"Cloth"},{"itemId":514110,"className":"FOOT04_110","name":"Solmiki Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":21960,"sellPrice":5828,"equipType1":"Boots","minLevel":330,"def":1286,"mDef":1286,"material":"Leather"},{"itemId":514111,"className":"FOOT04_111","name":"Solmiki Plate Greaves","type":"Equip","group":"Armor","weight":65,"maxStack":1,"price":21960,"sellPrice":5828,"equipType1":"Boots","minLevel":330,"def":1715,"mDef":857,"material":"Iron"},{"itemId":514112,"className":"FOOT04_112","name":"Primus Alpra Boots","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Boots","minLevel":120,"def":250,"mDef":500,"material":"Cloth"},{"itemId":514113,"className":"FOOT04_113","name":"Primus Eastern Leather Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Boots","minLevel":120,"def":375,"mDef":375,"material":"Leather"},{"itemId":514114,"className":"FOOT04_114","name":"Primus Pangle Plate Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Boots","minLevel":120,"def":500,"mDef":250,"material":"Iron"},{"itemId":514115,"className":"FOOT04_115","name":"Primus Warmage Boots","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":10913,"sellPrice":0,"equipType1":"Boots","minLevel":170,"def":350,"mDef":700,"material":"Cloth"},{"itemId":514116,"className":"FOOT04_116","name":"Primus Eaglestar Leather Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":10913,"sellPrice":0,"equipType1":"Boots","minLevel":170,"def":525,"mDef":525,"material":"Leather"},{"itemId":514117,"className":"FOOT04_117","name":"Primus Nyx Knight Greaves","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":10913,"sellPrice":0,"equipType1":"Boots","minLevel":170,"def":700,"mDef":350,"material":"Iron"},{"itemId":514118,"className":"FOOT04_118","name":"Primus Marone Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Boots","minLevel":75,"def":160,"mDef":320,"material":"Cloth"},{"itemId":514119,"className":"FOOT04_119","name":"Primus Prakeh Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":0,"equipType1":"Boots","minLevel":220,"def":450,"mDef":900,"material":"Cloth"},{"itemId":514120,"className":"FOOT04_120","name":"Primus Razna Leather Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Boots","minLevel":75,"def":240,"mDef":240,"material":"Leather"},{"itemId":514121,"className":"FOOT04_121","name":"Primus Keyarc Leather Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":0,"equipType1":"Boots","minLevel":220,"def":675,"mDef":675,"material":"Leather"},{"itemId":514122,"className":"FOOT04_122","name":"Primus Barghar Plate Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Boots","minLevel":75,"def":320,"mDef":160,"material":"Iron"},{"itemId":514123,"className":"FOOT04_123","name":"Primus Suurit Plate Boots","type":"Equip","group":"Armor","weight":55,"maxStack":1,"price":14702,"sellPrice":0,"equipType1":"Boots","minLevel":220,"def":900,"mDef":450,"material":"Iron"},{"itemId":514124,"className":"FOOT04_124","name":"Primus Kalinis Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":18000,"sellPrice":0,"equipType1":"Boots","minLevel":270,"def":550,"mDef":1100,"material":"Cloth"},{"itemId":514125,"className":"FOOT04_125","name":"Primus Albinosas Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":18000,"sellPrice":0,"equipType1":"Boots","minLevel":270,"def":825,"mDef":825,"material":"Leather"},{"itemId":514126,"className":"FOOT04_126","name":"Primus Tajtanas Greaves","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":18000,"sellPrice":0,"equipType1":"Boots","minLevel":270,"def":1100,"mDef":550,"material":"Iron"},{"itemId":514127,"className":"FOOT04_127","name":"Primus Oksinis Boots","type":"Equip","group":"Armor","weight":25,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Boots","minLevel":315,"def":640,"mDef":1280,"material":"Cloth"},{"itemId":514128,"className":"FOOT04_128","name":"Primus Kaulas Leather Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Boots","minLevel":315,"def":960,"mDef":960,"material":"Leather"},{"itemId":514129,"className":"FOOT04_129","name":"Primus Krisius Greaves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Boots","minLevel":315,"def":1280,"mDef":640,"material":"Iron"},{"itemId":514130,"className":"FOOT04_130","name":"Primus Irellis Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Boots","minLevel":350,"def":710,"mDef":1420,"material":"Cloth"},{"itemId":514131,"className":"FOOT04_131","name":"Primus Jevenellis Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Boots","minLevel":350,"def":1065,"mDef":1065,"material":"Leather"},{"itemId":514132,"className":"FOOT04_132","name":"Primus Basticle Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Boots","minLevel":350,"def":1420,"mDef":710,"material":"Iron"},{"itemId":514133,"className":"FOOT04_133","name":"Primus Planeta Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Boots","minLevel":380,"def":770,"mDef":1540,"material":"Cloth"},{"itemId":514134,"className":"FOOT04_134","name":"Primus Ukas Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Boots","minLevel":380,"def":1155,"mDef":1155,"material":"Leather"},{"itemId":514135,"className":"FOOT04_135","name":"Primus Galaktikos Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Boots","minLevel":380,"def":1540,"mDef":770,"material":"Iron"},{"itemId":514136,"className":"FOOT04_136","name":"Laitas Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Boots","minLevel":350,"def":710,"mDef":1420,"material":"Cloth"},{"itemId":514137,"className":"FOOT04_137","name":"Fietas Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Boots","minLevel":350,"def":1065,"mDef":1065,"material":"Leather"},{"itemId":514138,"className":"FOOT04_138","name":"Ausura Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Boots","minLevel":350,"def":1420,"mDef":710,"material":"Iron"},{"itemId":514139,"className":"FOOT04_139","name":"Ignas Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Boots","minLevel":380,"def":770,"mDef":1540,"material":"Cloth"},{"itemId":514140,"className":"FOOT04_140","name":"Ignas Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Boots","minLevel":380,"def":1155,"mDef":1155,"material":"Leather"},{"itemId":514141,"className":"FOOT04_141","name":"Ignas Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Boots","minLevel":380,"def":1540,"mDef":770,"material":"Iron"},{"itemId":514142,"className":"FOOT04_142","name":"Primus Pilgriste Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":810,"mDef":1620,"material":"Cloth"},{"itemId":514143,"className":"FOOT04_143","name":"Primus Vymedzai Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1215,"mDef":1215,"material":"Leather"},{"itemId":514144,"className":"FOOT04_144","name":"Primus Akmo Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1620,"mDef":810,"material":"Iron"},{"itemId":514145,"className":"FOOT04_145","name":"Skiaclipse Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":810,"mDef":1620,"material":"Cloth"},{"itemId":514146,"className":"FOOT04_146","name":"Skiaclipse Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1215,"mDef":1215,"material":"Leather","ariesDef":605},{"itemId":514147,"className":"FOOT04_147","name":"Skiaclipse Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1620,"mDef":810,"material":"Iron"},{"itemId":514148,"className":"FOOT04_148","name":"Skiaclipse Boots - Compassion","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":810,"mDef":1620,"addMDef":160,"material":"Cloth"},{"itemId":514149,"className":"FOOT04_149","name":"Skiaclipse Leather Boots - Assault","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1215,"mDef":1215,"material":"Leather"},{"itemId":514150,"className":"FOOT04_150","name":"Skiaclipse Greaves - Iron Wall","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1620,"mDef":810,"material":"Iron"},{"itemId":514151,"className":"FOOT04_151","name":"Moringponia Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1620,"mDef":810,"material":"Iron"},{"itemId":514152,"className":"FOOT04_152","name":"Moringponia Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":810,"mDef":1620,"material":"Cloth"},{"itemId":514153,"className":"FOOT04_153","name":"Moringponia Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1215,"mDef":1215,"material":"Leather"},{"itemId":514154,"className":"FOOT04_154","name":"Misrus Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1620,"mDef":810,"material":"Iron"},{"itemId":514155,"className":"FOOT04_155","name":"Misrus Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":810,"mDef":1620,"material":"Cloth"},{"itemId":514156,"className":"FOOT04_156","name":"Misrus Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1215,"mDef":1215,"material":"Leather"},{"itemId":514157,"className":"FOOT04_157","name":"Primus Dysnai Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Boots","minLevel":430,"def":870,"mDef":1740,"material":"Cloth"},{"itemId":514158,"className":"FOOT04_158","name":"Primus Dysnai Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Boots","minLevel":430,"def":1305,"mDef":1305,"material":"Leather"},{"itemId":514159,"className":"FOOT04_159","name":"Primus Dysnai Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Boots","minLevel":430,"def":1740,"mDef":870,"material":"Iron"},{"itemId":515101,"className":"FOOT05_101","name":"Velcoffer Boots","type":"Equip","group":"Armor","weight":15,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Boots","minLevel":360,"def":934,"mDef":1868,"material":"Cloth"},{"itemId":515102,"className":"FOOT05_102","name":"Velcoffer Leather Boots","type":"Equip","group":"Armor","weight":15,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Boots","minLevel":360,"def":1401,"mDef":1401,"material":"Leather"},{"itemId":515103,"className":"FOOT05_103","name":"Velcoffer Greaves","type":"Equip","group":"Armor","weight":15,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Boots","minLevel":360,"def":1868,"mDef":934,"material":"Iron"},{"itemId":515104,"className":"FOOT05_104","name":"Velcoffer Boots","type":"Equip","group":"Armor","weight":15,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Boots","minLevel":360,"def":934,"mDef":1868,"material":"Cloth"},{"itemId":515105,"className":"FOOT05_105","name":"Velcoffer Leather Boots","type":"Equip","group":"Armor","weight":15,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Boots","minLevel":360,"def":1401,"mDef":1401,"material":"Leather"},{"itemId":515106,"className":"FOOT05_106","name":"Velcoffer Greaves","type":"Equip","group":"Armor","weight":15,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Boots","minLevel":360,"def":1868,"mDef":934,"material":"Iron"},{"itemId":515107,"className":"FOOT05_107","name":"Savinose Pilgriste Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1036,"mDef":2073,"material":"Cloth"},{"itemId":515108,"className":"FOOT05_108","name":"Savinose Vymedzai Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1555,"mDef":1555,"material":"Leather"},{"itemId":515109,"className":"FOOT05_109","name":"Savinose Akmo Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":2073,"mDef":1036,"material":"Iron"},{"itemId":515110,"className":"FOOT05_110","name":"Skiaclipse Varna Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":2073,"mDef":1036,"material":"Iron"},{"itemId":515111,"className":"FOOT05_111","name":"Skiaclipse Varna Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1555,"mDef":1555,"material":"Leather"},{"itemId":515112,"className":"FOOT05_112","name":"Skiaclipse Varna Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1036,"mDef":2073,"material":"Cloth"},{"itemId":521101,"className":"LEG01_101","name":"Light Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":360,"sellPrice":72,"equipType1":"Pants","minLevel":1,"def":19,"mDef":19,"material":"Leather"},{"itemId":521102,"className":"LEG01_102","name":"Quilted Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":360,"sellPrice":72,"equipType1":"Pants","minLevel":1,"def":19,"mDef":19,"material":"Leather"},{"itemId":521103,"className":"LEG01_103","name":"Leather Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":360,"sellPrice":518,"equipType1":"Pants","minLevel":1,"def":19,"mDef":19,"material":"Leather"},{"itemId":521104,"className":"LEG01_104","name":"Hard Leather Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Pants","minLevel":15,"def":64,"mDef":64,"material":"Leather"},{"itemId":521105,"className":"LEG01_105","name":"Chain Pants","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Pants","minLevel":15,"def":86,"mDef":43,"material":"Iron"},{"itemId":521106,"className":"LEG01_106","name":"Mark Pants","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":145,"mDef":145,"material":"Leather"},{"itemId":521107,"className":"LEG01_107","name":"Forest Leather Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":145,"mDef":145,"material":"Leather"},{"itemId":521108,"className":"LEG01_108","name":"Grima Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":97,"mDef":194,"material":"Cloth"},{"itemId":521109,"className":"LEG01_109","name":"Veris Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":145,"mDef":145,"material":"Leather"},{"itemId":521110,"className":"LEG01_110","name":"Scale Leggings","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":194,"mDef":97,"material":"Iron"},{"itemId":521111,"className":"LEG01_111","name":"Forest Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":97,"mDef":194,"material":"Cloth"},{"itemId":521112,"className":"LEG01_112","name":"Klaida Skirt","type":"Equip","group":"Armor","weight":135,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":194,"mDef":97,"material":"Iron"},{"itemId":521113,"className":"LEG01_113","name":"Hard Veris Pants","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":7724,"sellPrice":1707,"equipType1":"Pants","minLevel":75,"def":259,"mDef":259,"material":"Leather"},{"itemId":521114,"className":"LEG01_114","name":"Superior Scale Leggings","type":"Equip","group":"Armor","weight":240,"maxStack":1,"price":7724,"sellPrice":1707,"equipType1":"Pants","minLevel":75,"def":345,"mDef":172,"material":"Iron"},{"itemId":521115,"className":"LEG01_115","name":"Regal Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Pants","minLevel":75,"def":172,"mDef":345,"material":"Cloth"},{"itemId":521116,"className":"LEG01_116","name":"Rag Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":360,"sellPrice":72,"equipType1":"Pants","minLevel":1,"def":21,"mDef":21,"material":"Leather"},{"itemId":521117,"className":"LEG01_117","name":"Miner's Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":360,"sellPrice":95,"equipType1":"Pants","minLevel":1,"def":19,"mDef":19,"material":"Leather","poisonRes":2},{"itemId":521118,"className":"LEG01_118","name":"Old Hard Leather Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Pants","minLevel":15,"def":64,"mDef":64,"material":"Leather"},{"itemId":521119,"className":"LEG01_119","name":"Old Chain Pants","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Pants","minLevel":15,"def":86,"mDef":43,"material":"Iron"},{"itemId":521120,"className":"LEG01_120","name":"Old Steel Chain Pants","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":3276,"sellPrice":705,"equipType1":"Pants","minLevel":40,"def":194,"mDef":97,"material":"Iron"},{"itemId":521121,"className":"LEG01_121","name":"Brigandine Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Pants","minLevel":75,"def":259,"mDef":259,"material":"Leather"},{"itemId":521122,"className":"LEG01_122","name":"Plate Leggings","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Pants","minLevel":75,"def":345,"mDef":172,"material":"Iron"},{"itemId":521123,"className":"LEG01_123","name":"Superior Quilted Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":360,"sellPrice":154,"equipType1":"Pants","minLevel":1,"def":19,"mDef":19,"material":"Leather"},{"itemId":521124,"className":"LEG01_124","name":"Vubbe Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Pants","minLevel":15,"def":64,"mDef":64,"material":"Leather"},{"itemId":521125,"className":"LEG01_125","name":"Panto Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Pants","minLevel":15,"def":64,"mDef":64,"material":"Leather"},{"itemId":521126,"className":"LEG01_126","name":"Acolyte Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":97,"mDef":194,"material":"Cloth"},{"itemId":521127,"className":"LEG01_127","name":"Steel Chain Pants","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":194,"mDef":97,"material":"Iron"},{"itemId":521129,"className":"LEG01_129","name":"Dunkel Quilted Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":360,"sellPrice":72,"equipType1":"Pants","minLevel":1,"def":19,"mDef":19,"material":"Leather"},{"itemId":521130,"className":"LEG01_130","name":"Dunkel Cotton Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Pants","minLevel":15,"def":43,"mDef":86,"material":"Cloth"},{"itemId":521131,"className":"LEG01_131","name":"Dunkel Hard Leather Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Pants","minLevel":15,"def":64,"mDef":64,"material":"Leather"},{"itemId":521132,"className":"LEG01_132","name":"Dunkel Ring Pants","type":"Equip","group":"Armor","weight":160,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Pants","minLevel":15,"def":86,"mDef":43,"material":"Iron"},{"itemId":521133,"className":"LEG01_133","name":"Cotton Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Pants","minLevel":15,"def":43,"mDef":86,"material":"Cloth"},{"itemId":521134,"className":"LEG01_134","name":"Ring Pants","type":"Equip","group":"Armor","weight":160,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Pants","minLevel":15,"def":86,"mDef":43,"material":"Iron"},{"itemId":521135,"className":"LEG01_135","name":"Superior Regal Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Pants","minLevel":75,"def":172,"mDef":345,"material":"Cloth"},{"itemId":521136,"className":"LEG01_136","name":"Superior Brigandine Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":7724,"sellPrice":2457,"equipType1":"Pants","minLevel":75,"def":259,"mDef":259,"material":"Leather"},{"itemId":521137,"className":"LEG01_137","name":"Full Plate Leggings","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":2483,"equipType1":"Pants","minLevel":75,"def":345,"mDef":172,"material":"Iron"},{"itemId":521138,"className":"LEG01_138","name":"Fedimian Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":13968,"sellPrice":2851,"equipType1":"Pants","minLevel":120,"def":270,"mDef":540,"material":"Cloth"},{"itemId":521139,"className":"LEG01_139","name":"Fedimian Leather Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":13968,"sellPrice":2851,"equipType1":"Pants","minLevel":120,"def":405,"mDef":405,"material":"Leather"},{"itemId":521140,"className":"LEG01_140","name":"Fedimian Leggings","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":13968,"sellPrice":2851,"equipType1":"Pants","minLevel":120,"def":540,"mDef":270,"material":"Iron"},{"itemId":521141,"className":"LEG01_141","name":"Magician Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":13968,"sellPrice":2851,"equipType1":"Pants","minLevel":120,"def":270,"mDef":540,"material":"Cloth"},{"itemId":521142,"className":"LEG01_142","name":"Hunting Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":13968,"sellPrice":3874,"equipType1":"Pants","minLevel":120,"def":405,"mDef":405,"material":"Leather"},{"itemId":521143,"className":"LEG01_143","name":"Guard Leggings","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":13968,"sellPrice":3901,"equipType1":"Pants","minLevel":120,"def":540,"mDef":270,"material":"Iron"},{"itemId":521144,"className":"LEG01_144","name":"Mage Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":13968,"sellPrice":3901,"equipType1":"Pants","minLevel":120,"def":270,"mDef":540,"material":"Cloth"},{"itemId":521145,"className":"LEG01_145","name":"Skirmisher Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":13968,"sellPrice":3901,"equipType1":"Pants","minLevel":120,"def":405,"mDef":405,"material":"Leather"},{"itemId":521146,"className":"LEG01_146","name":"Infantry Leggings","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":13968,"sellPrice":3901,"equipType1":"Pants","minLevel":120,"def":540,"mDef":270,"material":"Iron"},{"itemId":521147,"className":"LEG01_147","name":"Archmage Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":21826,"sellPrice":4516,"equipType1":"Pants","minLevel":170,"def":378,"mDef":756,"material":"Cloth"},{"itemId":521148,"className":"LEG01_148","name":"Superior Skirmisher Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":21826,"sellPrice":4516,"equipType1":"Pants","minLevel":170,"def":567,"mDef":567,"material":"Leather"},{"itemId":521149,"className":"LEG01_149","name":"Superior Infantry Leggings","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":21826,"sellPrice":4516,"equipType1":"Pants","minLevel":170,"def":756,"mDef":378,"material":"Iron"},{"itemId":521150,"className":"LEG01_150","name":"Librarian Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":21826,"sellPrice":5881,"equipType1":"Pants","minLevel":170,"def":378,"mDef":756,"material":"Cloth"},{"itemId":521151,"className":"LEG01_151","name":"Veteran Pants","type":"Equip","group":"Armor","weight":125,"maxStack":1,"price":21826,"sellPrice":5881,"equipType1":"Pants","minLevel":170,"def":567,"mDef":567,"material":"Leather"},{"itemId":521152,"className":"LEG01_152","name":"Knight Leggings","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":21826,"sellPrice":5881,"equipType1":"Pants","minLevel":170,"def":756,"mDef":378,"material":"Iron"},{"itemId":521153,"className":"LEG01_153","name":"Superior Grima Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":7724,"sellPrice":1707,"equipType1":"Pants","minLevel":75,"def":172,"mDef":345,"material":"Cloth"},{"itemId":521154,"className":"LEG01_154","name":"Royal Mage Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":29405,"sellPrice":5881,"equipType1":"Pants","minLevel":220,"def":486,"mDef":972,"material":"Cloth"},{"itemId":521155,"className":"LEG01_155","name":"Bandit Pants","type":"Equip","group":"Armor","weight":125,"maxStack":1,"price":29405,"sellPrice":5881,"equipType1":"Pants","minLevel":220,"def":729,"mDef":729,"material":"Leather"},{"itemId":521156,"className":"LEG01_156","name":"Royal Guard Pants","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":29405,"sellPrice":5881,"equipType1":"Pants","minLevel":220,"def":972,"mDef":486,"material":"Iron"},{"itemId":521157,"className":"LEG01_157","name":"Superior Royal Mage Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":29405,"sellPrice":7142,"equipType1":"Pants","minLevel":220,"def":486,"mDef":972,"material":"Cloth"},{"itemId":521158,"className":"LEG01_158","name":"Superior Bandit Pants","type":"Equip","group":"Armor","weight":125,"maxStack":1,"price":29405,"sellPrice":7142,"equipType1":"Pants","minLevel":220,"def":729,"mDef":729,"material":"Leather"},{"itemId":521159,"className":"LEG01_159","name":"Superior Royal Guard Pants","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":29405,"sellPrice":7142,"equipType1":"Pants","minLevel":220,"def":972,"mDef":486,"material":"Iron"},{"itemId":521203,"className":"LEG01_203","name":"Blint Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Pants","minLevel":270,"def":594,"mDef":1188,"material":"Cloth"},{"itemId":521204,"className":"LEG01_204","name":"Blint Leather Pants","type":"Equip","group":"Armor","weight":125,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Pants","minLevel":270,"def":891,"mDef":891,"material":"Leather"},{"itemId":521205,"className":"LEG01_205","name":"Blint Plate Pants","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Pants","minLevel":270,"def":1188,"mDef":594,"material":"Iron"},{"itemId":521206,"className":"LEG01_206","name":"(Faded) Replica Kalinis Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":50000,"sellPrice":5000,"equipType1":"Pants","minLevel":270,"def":594,"mDef":1188,"material":"Cloth"},{"itemId":521207,"className":"LEG01_207","name":"(Faded) Replica Albinosas Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":50000,"sellPrice":5000,"equipType1":"Pants","minLevel":270,"def":891,"mDef":891,"material":"Leather"},{"itemId":521208,"className":"LEG01_208","name":"(Faded) Replica Tajtanas Plate Pants","type":"Equip","group":"Armor","weight":220,"maxStack":1,"price":50000,"sellPrice":5000,"equipType1":"Pants","minLevel":270,"def":1188,"mDef":594,"material":"Iron"},{"itemId":521209,"className":"LEG01_209","name":"(Faded) Replica Oksinis Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":75000,"sellPrice":5000,"equipType1":"Pants","minLevel":315,"def":691,"mDef":1382,"material":"Cloth"},{"itemId":521210,"className":"LEG01_210","name":"(Faded) Replica Kaulas Leather Pants","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":75000,"sellPrice":5000,"equipType1":"Pants","minLevel":315,"def":1036,"mDef":1036,"material":"Leather"},{"itemId":521211,"className":"LEG01_211","name":"(Faded) Replica Krisius Plate Pants","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":75000,"sellPrice":5000,"equipType1":"Pants","minLevel":315,"def":1382,"mDef":691,"material":"Iron"},{"itemId":522103,"className":"LEG02_103","name":"Tenet Chain Pants","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":2592,"sellPrice":655,"equipType1":"Pants","minLevel":15,"def":96,"mDef":48,"material":"Iron"},{"itemId":522104,"className":"LEG02_104","name":"Zalia Leather Pants","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":162,"mDef":162,"material":"Leather"},{"itemId":522106,"className":"LEG02_106","name":"Studded Pants","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":162,"mDef":162,"material":"Leather","poisonRes":16},{"itemId":522107,"className":"LEG02_107","name":"Insect Skirt","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":216,"mDef":108,"material":"Iron","poisonRes":6},{"itemId":522108,"className":"LEG02_108","name":"Protas Trousers","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":108,"mDef":216,"material":"Cloth"},{"itemId":522110,"className":"LEG02_110","name":"Light Plate Leggings","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":3276,"sellPrice":1653,"equipType1":"Pants","minLevel":40,"def":216,"mDef":108,"material":"Iron"},{"itemId":522112,"className":"LEG02_112","name":"Pokubon Leather Pants","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Pants","minLevel":75,"def":288,"mDef":288,"material":"Leather"},{"itemId":522113,"className":"LEG02_113","name":"Drake Leather Leggings","type":"Equip","group":"Armor","weight":165,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Pants","minLevel":75,"def":288,"mDef":288,"material":"Leather"},{"itemId":522114,"className":"LEG02_114","name":"Silver Plate Leggings","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Pants","minLevel":75,"def":384,"mDef":192,"material":"Iron"},{"itemId":522123,"className":"LEG02_123","name":"Cafrisun Pants","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Pants","minLevel":15,"def":72,"mDef":72,"material":"Leather"},{"itemId":522124,"className":"LEG02_124","name":"Dio Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":360,"sellPrice":154,"equipType1":"Pants","minLevel":1,"def":14,"mDef":28,"material":"Cloth","earthRes":4},{"itemId":522125,"className":"LEG02_125","name":"Dio Leather Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":360,"sellPrice":411,"equipType1":"Pants","minLevel":1,"def":21,"mDef":21,"material":"Leather","poisonRes":4},{"itemId":522126,"className":"LEG02_126","name":"Dio Chain Pants","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":360,"sellPrice":518,"equipType1":"Pants","minLevel":1,"def":28,"mDef":14,"material":"Iron","darkRes":4},{"itemId":522127,"className":"LEG02_127","name":"Thresh Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Pants","minLevel":15,"def":48,"mDef":96,"material":"Cloth","darkRes":5},{"itemId":522128,"className":"LEG02_128","name":"Thresh Leather Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Pants","minLevel":15,"def":72,"mDef":72,"material":"Leather","lightningRes":5},{"itemId":522129,"className":"LEG02_129","name":"Thresh Chain Pants","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Pants","minLevel":15,"def":96,"mDef":48,"material":"Iron","darkRes":5},{"itemId":522130,"className":"LEG02_130","name":"Sestas Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Pants","minLevel":15,"def":48,"mDef":96,"material":"Cloth","lightningRes":6},{"itemId":522131,"className":"LEG02_131","name":"Sestas Leather Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Pants","minLevel":15,"def":72,"mDef":72,"material":"Leather","poisonRes":6},{"itemId":522132,"className":"LEG02_132","name":"Sestas Chain Pants","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":2592,"sellPrice":655,"equipType1":"Pants","minLevel":15,"def":96,"mDef":48,"material":"Iron","earthRes":6},{"itemId":522133,"className":"LEG02_133","name":"Dratt Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":108,"mDef":216,"material":"Cloth","iceRes":7},{"itemId":522134,"className":"LEG02_134","name":"Dratt Leather Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":162,"mDef":162,"material":"Leather","darkRes":7},{"itemId":522135,"className":"LEG02_135","name":"Dratt Plate Leggings","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":216,"mDef":108,"material":"Iron","lightningRes":7},{"itemId":522136,"className":"LEG02_136","name":"Aston Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":108,"mDef":216,"material":"Cloth","darkRes":8},{"itemId":522137,"className":"LEG02_137","name":"Aston Leather Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":162,"mDef":162,"material":"Leather","poisonRes":8},{"itemId":522138,"className":"LEG02_138","name":"Aston Plate Leggings","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":3276,"sellPrice":1572,"equipType1":"Pants","minLevel":40,"def":216,"mDef":108,"material":"Iron","earthRes":8},{"itemId":522139,"className":"LEG02_139","name":"Devi Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":7724,"sellPrice":1868,"equipType1":"Pants","minLevel":75,"def":192,"mDef":384,"material":"Cloth","lightningRes":9},{"itemId":522140,"className":"LEG02_140","name":"Devi Leather Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Pants","minLevel":75,"def":288,"mDef":288,"material":"Leather","poisonRes":9},{"itemId":522141,"className":"LEG02_141","name":"Devi Plate Leggings","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Pants","minLevel":75,"def":384,"mDef":192,"material":"Iron","iceRes":9},{"itemId":522142,"className":"LEG02_142","name":"Prima Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Pants","minLevel":75,"def":192,"mDef":384,"material":"Cloth","darkRes":10},{"itemId":522143,"className":"LEG02_143","name":"Prima Leather Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":7724,"sellPrice":2457,"equipType1":"Pants","minLevel":75,"def":288,"mDef":288,"material":"Leather","iceRes":10},{"itemId":522144,"className":"LEG02_144","name":"Prima Plate Leggings","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":7724,"sellPrice":2851,"equipType1":"Pants","minLevel":75,"def":384,"mDef":192,"material":"Iron","fireRes":10},{"itemId":522150,"className":"LEG02_150","name":"Riena Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Pants","minLevel":75,"def":192,"mDef":384,"material":"Cloth"},{"itemId":522151,"className":"LEG02_151","name":"Riena Leather Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Pants","minLevel":75,"def":288,"mDef":288,"material":"Leather","poisonRes":8},{"itemId":522152,"className":"LEG02_152","name":"Riena Plate Leggings","type":"Equip","group":"Armor","weight":160,"maxStack":1,"price":7724,"sellPrice":2457,"equipType1":"Pants","minLevel":75,"def":384,"mDef":192,"material":"Iron"},{"itemId":522153,"className":"LEG02_153","name":"Watcher Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2592,"sellPrice":655,"equipType1":"Pants","minLevel":15,"def":72,"mDef":72,"material":"Leather"},{"itemId":522154,"className":"LEG02_154","name":"Earth Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":3276,"sellPrice":1653,"equipType1":"Pants","minLevel":40,"def":108,"mDef":216,"material":"Cloth"},{"itemId":522155,"className":"LEG02_155","name":"Leather Earth Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":3276,"sellPrice":1653,"equipType1":"Pants","minLevel":40,"def":162,"mDef":162,"material":"Leather","earthRes":4},{"itemId":522156,"className":"LEG02_156","name":"Earth Plate Pants","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":3276,"sellPrice":1653,"equipType1":"Pants","minLevel":40,"def":216,"mDef":108,"material":"Iron"},{"itemId":522157,"className":"LEG02_157","name":"Legwyn Family Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":13968,"sellPrice":3901,"equipType1":"Pants","minLevel":120,"def":300,"mDef":600,"material":"Cloth"},{"itemId":522158,"className":"LEG02_158","name":"Legwyn Family Leather Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":13968,"sellPrice":3901,"equipType1":"Pants","minLevel":120,"def":450,"mDef":450,"material":"Leather"},{"itemId":522159,"className":"LEG02_159","name":"Legwyn Family Plate Pants","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":13968,"sellPrice":3901,"equipType1":"Pants","minLevel":120,"def":600,"mDef":300,"material":"Iron"},{"itemId":522160,"className":"LEG02_160","name":"Ogva Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Pants","minLevel":15,"def":48,"mDef":96,"material":"Cloth","fireRes":3},{"itemId":522161,"className":"LEG02_161","name":"Ogva Leather Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Pants","minLevel":15,"def":72,"mDef":72,"material":"Leather","darkRes":3},{"itemId":522162,"className":"LEG02_162","name":"Ogva Chain Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Pants","minLevel":15,"def":96,"mDef":48,"material":"Iron","poisonRes":3},{"itemId":522163,"className":"LEG02_163","name":"Partis Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Pants","minLevel":15,"def":48,"mDef":96,"material":"Cloth"},{"itemId":522164,"className":"LEG02_164","name":"Partis Leather Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Pants","minLevel":15,"def":72,"mDef":72,"material":"Leather"},{"itemId":522165,"className":"LEG02_165","name":"Partis Ring Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Pants","minLevel":15,"def":96,"mDef":48,"material":"Iron"},{"itemId":522166,"className":"LEG02_166","name":"Sirdgela Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":108,"mDef":216,"material":"Cloth","poisonRes":6},{"itemId":522167,"className":"LEG02_167","name":"Sirdgela Leather Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":162,"mDef":162,"material":"Leather","earthRes":6},{"itemId":522168,"className":"LEG02_168","name":"Sirdgela Scale Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":216,"mDef":108,"material":"Iron","iceRes":6},{"itemId":522169,"className":"LEG02_169","name":"Philis Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":108,"mDef":216,"material":"Cloth","lightningRes":6},{"itemId":522170,"className":"LEG02_170","name":"Philis Leather Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":162,"mDef":162,"material":"Leather","poisonRes":6},{"itemId":522171,"className":"LEG02_171","name":"Philis Scale Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":216,"mDef":108,"material":"Iron","fireRes":6},{"itemId":522172,"className":"LEG02_172","name":"Allerno Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":7724,"sellPrice":1653,"equipType1":"Pants","minLevel":75,"def":192,"mDef":384,"material":"Cloth","darkRes":10},{"itemId":522173,"className":"LEG02_173","name":"Allerno Leather Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":7724,"sellPrice":1653,"equipType1":"Pants","minLevel":75,"def":288,"mDef":288,"material":"Leather","iceRes":10},{"itemId":522174,"className":"LEG02_174","name":"Allerno Plate Leggings","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":7724,"sellPrice":1653,"equipType1":"Pants","minLevel":75,"def":384,"mDef":192,"material":"Iron","earthRes":10},{"itemId":522175,"className":"LEG02_175","name":"Perelin Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":7724,"sellPrice":1653,"equipType1":"Pants","minLevel":75,"def":192,"mDef":384,"material":"Cloth"},{"itemId":522176,"className":"LEG02_176","name":"Perelin Leather Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":7724,"sellPrice":1653,"equipType1":"Pants","minLevel":75,"def":288,"mDef":288,"material":"Leather"},{"itemId":522177,"className":"LEG02_177","name":"Perelin Plate Leggings","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":7724,"sellPrice":1653,"equipType1":"Pants","minLevel":75,"def":384,"mDef":192,"material":"Iron"},{"itemId":522178,"className":"LEG02_178","name":"Turn Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":13968,"sellPrice":2431,"equipType1":"Pants","minLevel":120,"def":300,"mDef":600,"material":"Cloth","poisonRes":14},{"itemId":522179,"className":"LEG02_179","name":"Turn Leather Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":13968,"sellPrice":2431,"equipType1":"Pants","minLevel":120,"def":450,"mDef":450,"material":"Leather","lightningRes":14},{"itemId":522180,"className":"LEG02_180","name":"Turn Plate Leggings","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":13968,"sellPrice":2431,"equipType1":"Pants","minLevel":120,"def":600,"mDef":300,"material":"Iron","iceRes":14},{"itemId":522181,"className":"LEG02_181","name":"Shaton Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":13968,"sellPrice":2793,"equipType1":"Pants","minLevel":120,"def":300,"mDef":600,"material":"Cloth","darkRes":16},{"itemId":522182,"className":"LEG02_182","name":"Shaton Leather Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":13968,"sellPrice":2793,"equipType1":"Pants","minLevel":120,"def":450,"mDef":450,"material":"Leather","fireRes":16},{"itemId":522183,"className":"LEG02_183","name":"Shaton Plate Leggings","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":13968,"sellPrice":2793,"equipType1":"Pants","minLevel":120,"def":600,"mDef":300,"material":"Iron","darkRes":16},{"itemId":522184,"className":"LEG02_184","name":"Tyla Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":21826,"sellPrice":3901,"equipType1":"Pants","minLevel":170,"def":420,"mDef":840,"material":"Cloth","darkRes":21},{"itemId":522185,"className":"LEG02_185","name":"Tyla Leather Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":21826,"sellPrice":3901,"equipType1":"Pants","minLevel":170,"def":630,"mDef":630,"material":"Leather","iceRes":21},{"itemId":522186,"className":"LEG02_186","name":"Tyla Plate Leggings","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":21826,"sellPrice":3901,"equipType1":"Pants","minLevel":170,"def":840,"mDef":420,"material":"Iron","poisonRes":21},{"itemId":522187,"className":"LEG02_187","name":"Velnia Monkey Leather Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":162,"mDef":162,"material":"Leather","lightningRes":3},{"itemId":522188,"className":"LEG02_188","name":"Elkosh Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":29405,"sellPrice":5881,"equipType1":"Pants","minLevel":220,"def":540,"mDef":1080,"material":"Cloth"},{"itemId":522189,"className":"LEG02_189","name":"Ibre Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":29405,"sellPrice":7142,"equipType1":"Pants","minLevel":220,"def":810,"mDef":810,"material":"Leather"},{"itemId":522190,"className":"LEG02_190","name":"Grynas Leggings","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":29405,"sellPrice":7142,"equipType1":"Pants","minLevel":220,"def":1080,"mDef":540,"material":"Iron"},{"itemId":522200,"className":"LEG02_200","name":"Valtas Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":29405,"sellPrice":5881,"equipType1":"Pants","minLevel":220,"def":540,"mDef":1080,"material":"Cloth","darkRes":30},{"itemId":522201,"className":"LEG02_201","name":"Valtas Leather Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":29405,"sellPrice":5881,"equipType1":"Pants","minLevel":220,"def":810,"mDef":810,"material":"Leather","iceRes":30},{"itemId":522202,"className":"LEG02_202","name":"Valtas Plate Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":29405,"sellPrice":5881,"equipType1":"Pants","minLevel":220,"def":1080,"mDef":540,"material":"Iron","poisonRes":30},{"itemId":522203,"className":"LEG02_203","name":"Hasta Pants","type":"Equip","group":"Armor","weight":105,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Pants","minLevel":270,"def":660,"mDef":1320,"material":"Cloth"},{"itemId":522204,"className":"LEG02_204","name":"Hasta Leather Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Pants","minLevel":270,"def":990,"mDef":990,"material":"Leather"},{"itemId":522205,"className":"LEG02_205","name":"Hasta Plate Pants","type":"Equip","group":"Armor","weight":195,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Pants","minLevel":270,"def":1320,"mDef":660,"material":"Iron"},{"itemId":522208,"className":"LEG02_208","name":"Manahas Pants","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Pants","minLevel":270,"def":990,"mDef":990,"material":"Leather","iceRes":15},{"itemId":522209,"className":"LEG02_209","name":"(Faded) Kalinis Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":36000,"sellPrice":5000,"equipType1":"Pants","minLevel":270,"def":660,"mDef":1320,"material":"Cloth"},{"itemId":522210,"className":"LEG02_210","name":"(Faded) Albinosas Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":36000,"sellPrice":5000,"equipType1":"Pants","minLevel":270,"def":990,"mDef":990,"material":"Leather"},{"itemId":522211,"className":"LEG02_211","name":"(Faded) Tajtanas Plate Pants","type":"Equip","group":"Armor","weight":220,"maxStack":1,"price":36000,"sellPrice":5000,"equipType1":"Pants","minLevel":270,"def":1320,"mDef":660,"material":"Iron"},{"itemId":522212,"className":"LEG02_212","name":"(Faded) Oksinis Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":43920,"sellPrice":5000,"equipType1":"Pants","minLevel":315,"def":768,"mDef":1536,"material":"Cloth"},{"itemId":522213,"className":"LEG02_213","name":"(Faded) Kaulas Leather Pants","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":43920,"sellPrice":5000,"equipType1":"Pants","minLevel":315,"def":1152,"mDef":1152,"material":"Leather"},{"itemId":522214,"className":"LEG02_214","name":"(Faded) Krisius Plate Pants","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":43920,"sellPrice":5000,"equipType1":"Pants","minLevel":315,"def":1536,"mDef":768,"material":"Iron"},{"itemId":522215,"className":"LEG02_215","name":"Alpra Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Pants","minLevel":120,"def":300,"mDef":600,"material":"Cloth"},{"itemId":522216,"className":"LEG02_216","name":"Eastern Leather Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Pants","minLevel":120,"def":450,"mDef":450,"material":"Leather"},{"itemId":522217,"className":"LEG02_217","name":"Pangle Plate Leggings","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Pants","minLevel":120,"def":600,"mDef":300,"material":"Iron"},{"itemId":522218,"className":"LEG02_218","name":"War Mage Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":21826,"sellPrice":0,"equipType1":"Pants","minLevel":170,"def":420,"mDef":840,"material":"Cloth"},{"itemId":522219,"className":"LEG02_219","name":"Eaglestar Leather Pants","type":"Equip","group":"Armor","weight":127,"maxStack":1,"price":21826,"sellPrice":0,"equipType1":"Pants","minLevel":170,"def":630,"mDef":630,"material":"Leather"},{"itemId":522220,"className":"LEG02_220","name":"Nyx Knight Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":21826,"sellPrice":0,"equipType1":"Pants","minLevel":170,"def":840,"mDef":420,"material":"Iron"},{"itemId":522221,"className":"LEG02_221","name":"Marone Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Pants","minLevel":75,"def":192,"mDef":384,"material":"Cloth"},{"itemId":522222,"className":"LEG02_222","name":"Prakeh Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":29405,"sellPrice":0,"equipType1":"Pants","minLevel":220,"def":540,"mDef":1080,"material":"Cloth"},{"itemId":522223,"className":"LEG02_223","name":"Razna Leather Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Pants","minLevel":75,"def":288,"mDef":288,"material":"Leather"},{"itemId":522224,"className":"LEG02_224","name":"Keyarc Leather Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":29405,"sellPrice":0,"equipType1":"Pants","minLevel":220,"def":810,"mDef":810,"material":"Leather"},{"itemId":522225,"className":"LEG02_225","name":"Barghar Plate Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Pants","minLevel":75,"def":384,"mDef":192,"material":"Iron"},{"itemId":522226,"className":"LEG02_226","name":"Suurit Plate Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":29405,"sellPrice":0,"equipType1":"Pants","minLevel":220,"def":1080,"mDef":540,"material":"Iron"},{"itemId":522227,"className":"LEG02_227","name":"Kalinis Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Pants","minLevel":270,"def":660,"mDef":1320,"material":"Cloth"},{"itemId":522228,"className":"LEG02_228","name":"Albinosas Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Pants","minLevel":270,"def":990,"mDef":990,"material":"Leather"},{"itemId":522229,"className":"LEG02_229","name":"Tajtanas Plate Pants","type":"Equip","group":"Armor","weight":220,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Pants","minLevel":270,"def":1320,"mDef":660,"material":"Iron"},{"itemId":522230,"className":"LEG02_230","name":"Oksinis Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Pants","minLevel":315,"def":768,"mDef":1536,"material":"Cloth"},{"itemId":522231,"className":"LEG02_231","name":"Kaulas Leather Pants","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Pants","minLevel":315,"def":1152,"mDef":1152,"material":"Leather"},{"itemId":522232,"className":"LEG02_232","name":"Krisius Plate Pants","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Pants","minLevel":315,"def":1536,"mDef":768,"material":"Iron"},{"itemId":522233,"className":"LEG02_233","name":"Irellis Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":350,"def":852,"mDef":1704,"material":"Cloth"},{"itemId":522234,"className":"LEG02_234","name":"Jevenellis Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":350,"def":1278,"mDef":1278,"material":"Leather"},{"itemId":522235,"className":"LEG02_235","name":"Basticle Plate Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":350,"def":1704,"mDef":852,"material":"Iron"},{"itemId":522236,"className":"LEG02_236","name":"Planeta Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Pants","minLevel":380,"def":924,"mDef":1848,"material":"Cloth"},{"itemId":522237,"className":"LEG02_237","name":"Ukas Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Pants","minLevel":380,"def":1386,"mDef":1386,"material":"Leather"},{"itemId":522238,"className":"LEG02_238","name":"Galaktikos Plate Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Pants","minLevel":380,"def":1848,"mDef":924,"material":"Iron"},{"itemId":522239,"className":"LEG02_239","name":"Pilgriste Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":972,"mDef":1944,"material":"Cloth"},{"itemId":522240,"className":"LEG02_240","name":"Vymedzai Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":1458,"mDef":1458,"material":"Leather"},{"itemId":522241,"className":"LEG02_241","name":"Akmo Plate Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":1944,"mDef":972,"material":"Iron"},{"itemId":523103,"className":"LEG03_103","name":"Vine Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Pants","minLevel":75,"def":211,"mDef":422,"material":"Cloth","fireRes":-14,"poisonRes":24},{"itemId":523105,"className":"LEG03_105","name":"Soul Chaser Pants","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Pants","minLevel":75,"def":316,"mDef":316,"material":"Leather","holyRes":40},{"itemId":523106,"className":"LEG03_106","name":"Bone Skirt","type":"Equip","group":"Armor","weight":240,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Pants","minLevel":75,"def":422,"mDef":211,"material":"Iron","lightningRes":31,"darkRes":26},{"itemId":523107,"className":"LEG03_107","name":"Shade Skirt","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":7724,"sellPrice":72,"equipType1":"Pants","minLevel":75,"def":316,"mDef":316,"material":"Leather","darkRes":28},{"itemId":523111,"className":"LEG03_111","name":"Roxona Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":21826,"sellPrice":5850,"equipType1":"Pants","minLevel":170,"def":462,"mDef":924,"material":"Cloth","lightningRes":9},{"itemId":523112,"className":"LEG03_112","name":"Roxona Leather Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":21826,"sellPrice":5850,"equipType1":"Pants","minLevel":170,"def":693,"mDef":693,"material":"Leather","ariesDef":7,"darkRes":8},{"itemId":523113,"className":"LEG03_113","name":"Roxona Plate Pants","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":21826,"sellPrice":5850,"equipType1":"Pants","minLevel":170,"def":924,"mDef":462,"material":"Iron","iceRes":6},{"itemId":523114,"className":"LEG03_114","name":"Virtov Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":29405,"sellPrice":7142,"equipType1":"Pants","minLevel":220,"def":594,"mDef":1188,"material":"Cloth"},{"itemId":523115,"className":"LEG03_115","name":"Virtov Leather Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":29405,"sellPrice":7142,"equipType1":"Pants","minLevel":220,"def":891,"mDef":891,"material":"Leather"},{"itemId":523116,"className":"LEG03_116","name":"Virtov Plate Pants","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":29405,"sellPrice":7142,"equipType1":"Pants","minLevel":220,"def":1188,"mDef":594,"material":"Iron","fireRes":21},{"itemId":523130,"className":"LEG03_130","name":"Newt Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Pants","minLevel":270,"def":726,"mDef":1452,"material":"Cloth"},{"itemId":523131,"className":"LEG03_131","name":"Newt Leather Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Pants","minLevel":270,"def":1089,"mDef":1089,"material":"Leather"},{"itemId":523132,"className":"LEG03_132","name":"Newt Plate Leggings","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Pants","minLevel":270,"def":1452,"mDef":726,"material":"Iron","fireRes":21},{"itemId":523301,"className":"LEG03_301","name":"(Faded) Alpra Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":13968,"sellPrice":2851,"equipType1":"Pants","minLevel":120,"addMAtk":7,"def":330,"mDef":660,"material":"Cloth"},{"itemId":523302,"className":"LEG03_302","name":"(Faded) Eastern Leather Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":13968,"sellPrice":2851,"equipType1":"Pants","minLevel":120,"def":495,"mDef":495,"material":"Leather"},{"itemId":523303,"className":"LEG03_303","name":"(Faded) Pangle Plate Leggings","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":13968,"sellPrice":2851,"equipType1":"Pants","minLevel":120,"def":660,"mDef":330,"material":"Iron"},{"itemId":523304,"className":"LEG03_304","name":"(Faded) War Mage Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":21826,"sellPrice":4789,"equipType1":"Pants","minLevel":170,"def":462,"mDef":924,"material":"Cloth"},{"itemId":523305,"className":"LEG03_305","name":"(Faded) Eaglestar Leather Pants","type":"Equip","group":"Armor","weight":127,"maxStack":1,"price":21826,"sellPrice":4789,"equipType1":"Pants","minLevel":170,"def":693,"mDef":693,"material":"Leather","iceRes":18},{"itemId":523306,"className":"LEG03_306","name":"(Faded) Nyx Knight Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":21826,"sellPrice":4789,"equipType1":"Pants","minLevel":170,"def":924,"mDef":462,"material":"Iron","fireRes":8},{"itemId":523307,"className":"LEG03_307","name":"(Faded) Marone Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":1360,"equipType1":"Pants","minLevel":75,"def":211,"mDef":422,"material":"Cloth"},{"itemId":523308,"className":"LEG03_308","name":"(Faded) Prakeh Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":29405,"sellPrice":5881,"equipType1":"Pants","minLevel":220,"def":594,"mDef":1188,"material":"Cloth"},{"itemId":523309,"className":"LEG03_309","name":"(Faded) Razna Leather Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":1360,"equipType1":"Pants","minLevel":75,"def":316,"mDef":316,"material":"Leather","soulRes":15},{"itemId":523310,"className":"LEG03_310","name":"(Faded) Keyarc Leather Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":29405,"sellPrice":5881,"equipType1":"Pants","minLevel":220,"def":891,"mDef":891,"material":"Leather","slashDef":103},{"itemId":523311,"className":"LEG03_311","name":"(Faded) Barghar Plate Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":1360,"equipType1":"Pants","minLevel":75,"def":422,"mDef":211,"material":"Iron","soulRes":12},{"itemId":523312,"className":"LEG03_312","name":"(Faded) Suurit Plate Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":29405,"sellPrice":5881,"equipType1":"Pants","minLevel":220,"def":1188,"mDef":594,"material":"Iron","iceRes":40},{"itemId":523313,"className":"LEG03_313","name":"(Faded) Vienti Kalinis?Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":36000,"sellPrice":5000,"equipType1":"Pants","minLevel":270,"def":726,"mDef":1452,"material":"Cloth"},{"itemId":523314,"className":"LEG03_314","name":"(Faded) Vienti Albinosas Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":36000,"sellPrice":5000,"equipType1":"Pants","minLevel":270,"def":1089,"mDef":1089,"material":"Leather"},{"itemId":523315,"className":"LEG03_315","name":"(Faded) Vienti Tajtanas Plate Pants","type":"Equip","group":"Armor","weight":220,"maxStack":1,"price":36000,"sellPrice":5000,"equipType1":"Pants","minLevel":270,"def":1452,"mDef":726,"material":"Iron"},{"itemId":523316,"className":"LEG03_316","name":"(Faded) Vienti Oksinis Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":43920,"sellPrice":5000,"equipType1":"Pants","minLevel":315,"def":844,"mDef":1689,"material":"Cloth"},{"itemId":523317,"className":"LEG03_317","name":"(Faded) Vienti Kaulas Leather Pants","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":43920,"sellPrice":5000,"equipType1":"Pants","minLevel":315,"def":1267,"mDef":1267,"material":"Leather"},{"itemId":523318,"className":"LEG03_318","name":"(Faded) Vienti Krisius Plate Pants","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":43920,"sellPrice":5000,"equipType1":"Pants","minLevel":315,"def":1689,"mDef":844,"material":"Iron"},{"itemId":523319,"className":"LEG03_319","name":"Berthas Alpra Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Pants","minLevel":120,"def":330,"mDef":660,"material":"Cloth"},{"itemId":523320,"className":"LEG03_320","name":"Berthas Eastern Leather Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Pants","minLevel":120,"def":495,"mDef":495,"material":"Leather"},{"itemId":523321,"className":"LEG03_321","name":"Berthas Pangle Plate Leggings","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Pants","minLevel":120,"def":660,"mDef":330,"material":"Iron"},{"itemId":523322,"className":"LEG03_322","name":"Berthas Warmage Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":21826,"sellPrice":0,"equipType1":"Pants","minLevel":170,"def":462,"mDef":924,"material":"Cloth"},{"itemId":523323,"className":"LEG03_323","name":"Berthas Eaglestar Leather Pants","type":"Equip","group":"Armor","weight":127,"maxStack":1,"price":21826,"sellPrice":0,"equipType1":"Pants","minLevel":170,"def":693,"mDef":693,"material":"Leather"},{"itemId":523324,"className":"LEG03_324","name":"Berthas Nyx Knight Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":21826,"sellPrice":0,"equipType1":"Pants","minLevel":170,"def":924,"mDef":462,"material":"Iron"},{"itemId":523325,"className":"LEG03_325","name":"Berthas Marone Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Pants","minLevel":75,"def":211,"mDef":422,"material":"Cloth"},{"itemId":523326,"className":"LEG03_326","name":"Berthas Prakeh Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":29405,"sellPrice":0,"equipType1":"Pants","minLevel":220,"def":594,"mDef":1188,"material":"Cloth"},{"itemId":523327,"className":"LEG03_327","name":"Berthas Raszna Leather Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Pants","minLevel":75,"def":316,"mDef":316,"material":"Leather"},{"itemId":523328,"className":"LEG03_328","name":"Berthas Keyarc Leather Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":29405,"sellPrice":0,"equipType1":"Pants","minLevel":220,"def":891,"mDef":891,"material":"Leather"},{"itemId":523329,"className":"LEG03_329","name":"Berths Barghar Plate Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Pants","minLevel":75,"def":422,"mDef":211,"material":"Iron"},{"itemId":523330,"className":"LEG03_330","name":"Berthas Suurit Plate Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":29405,"sellPrice":0,"equipType1":"Pants","minLevel":220,"def":1188,"mDef":594,"material":"Iron"},{"itemId":523331,"className":"LEG03_331","name":"Berthas Kalinis Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Pants","minLevel":270,"def":726,"mDef":1452,"material":"Cloth"},{"itemId":523332,"className":"LEG03_332","name":"Berthas Albinosas Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Pants","minLevel":270,"def":1089,"mDef":1089,"material":"Leather"},{"itemId":523333,"className":"LEG03_333","name":"Berthas Tajtanas Plate Pants","type":"Equip","group":"Armor","weight":220,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Pants","minLevel":270,"def":1452,"mDef":726,"material":"Iron"},{"itemId":523334,"className":"LEG03_334","name":"Berthas Oksinis Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Pants","minLevel":315,"def":844,"mDef":1689,"material":"Cloth"},{"itemId":523335,"className":"LEG03_335","name":"Berthas Kaulas Leather Pants","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Pants","minLevel":315,"def":1267,"mDef":1267,"material":"Leather"},{"itemId":523336,"className":"LEG03_336","name":"Berthas Krisius Plate Pants","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Pants","minLevel":315,"def":1689,"mDef":844,"material":"Iron"},{"itemId":523337,"className":"LEG03_337","name":"Berthas Irellis Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":350,"def":937,"mDef":1874,"material":"Cloth"},{"itemId":523338,"className":"LEG03_338","name":"Berthas Jevenellis Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":350,"def":1405,"mDef":1405,"material":"Leather"},{"itemId":523339,"className":"LEG03_339","name":"Berthas Basticle Plate Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":350,"def":1874,"mDef":937,"material":"Iron"},{"itemId":523340,"className":"LEG03_340","name":"Berthas Planeta Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Pants","minLevel":380,"def":1016,"mDef":2032,"material":"Cloth"},{"itemId":523341,"className":"LEG03_341","name":"Berthas Ukas Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Pants","minLevel":380,"def":1524,"mDef":1524,"material":"Leather"},{"itemId":523342,"className":"LEG03_342","name":"Berthas Galaktikos Plate Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Pants","minLevel":380,"def":2032,"mDef":1016,"material":"Iron"},{"itemId":523343,"className":"LEG03_343","name":"Berthas Pilgriste Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":1069,"mDef":2138,"material":"Cloth"},{"itemId":523344,"className":"LEG03_344","name":"Berthas Vymedzai Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":1603,"mDef":1603,"material":"Leather"},{"itemId":523345,"className":"LEG03_345","name":"Berthas Akmo Plate Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":2138,"mDef":1069,"material":"Iron"},{"itemId":523346,"className":"LEG03_346","name":"Berthas Dysnai Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Pants","minLevel":430,"def":1148,"mDef":2296,"material":"Cloth"},{"itemId":523347,"className":"LEG03_347","name":"Berthas Dysnai Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Pants","minLevel":430,"def":1722,"mDef":1722,"material":"Leather"},{"itemId":523348,"className":"LEG03_348","name":"Berthas Dysnai Plate Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Pants","minLevel":430,"def":2296,"mDef":1148,"material":"Iron"},{"itemId":524103,"className":"LEG04_103","name":"Hydra Trousers","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Pants","minLevel":75,"def":360,"mDef":360,"material":"Leather","poisonRes":40},{"itemId":524106,"className":"LEG04_106","name":"Lolopanther Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Pants","minLevel":270,"def":1056,"mDef":2112,"material":"Cloth","earthRes":34},{"itemId":524107,"className":"LEG04_107","name":"Lolopanther Leather Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Pants","minLevel":270,"def":1584,"mDef":1584,"material":"Leather","ariesDef":50,"earthRes":36},{"itemId":524108,"className":"LEG04_108","name":"Lolopanther Plate Leggings","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Pants","minLevel":270,"def":2112,"mDef":1056,"material":"Iron","strikeDef":48,"earthRes":40},{"itemId":524109,"className":"LEG04_109","name":"Solmiki Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":43920,"sellPrice":11656,"equipType1":"Pants","minLevel":330,"def":1286,"mDef":2572,"material":"Cloth","holyRes":70},{"itemId":524110,"className":"LEG04_110","name":"Solmiki Leather Pants","type":"Equip","group":"Armor","weight":140,"maxStack":1,"price":43920,"sellPrice":11656,"equipType1":"Pants","minLevel":330,"def":1929,"mDef":1929,"material":"Leather","ariesDef":75,"holyRes":73},{"itemId":524111,"className":"LEG04_111","name":"Solmiki Plate Leggings","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":43920,"sellPrice":11656,"equipType1":"Pants","minLevel":330,"def":2572,"mDef":1286,"material":"Iron","strikeDef":99,"holyRes":82},{"itemId":524112,"className":"LEG04_112","name":"Primus Alpra Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Pants","minLevel":120,"def":375,"mDef":750,"material":"Cloth"},{"itemId":524113,"className":"LEG04_113","name":"Primus Eastern Leather Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Pants","minLevel":120,"def":562,"mDef":562,"material":"Leather"},{"itemId":524114,"className":"LEG04_114","name":"Primus Pangle Plate Leggings","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Pants","minLevel":120,"def":750,"mDef":375,"material":"Iron"},{"itemId":524115,"className":"LEG04_115","name":"Primus Warmage Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":21826,"sellPrice":0,"equipType1":"Pants","minLevel":170,"def":525,"mDef":1050,"material":"Cloth"},{"itemId":524116,"className":"LEG04_116","name":"Primus Eaglestar Leather Pants","type":"Equip","group":"Armor","weight":127,"maxStack":1,"price":21826,"sellPrice":0,"equipType1":"Pants","minLevel":170,"def":787,"mDef":787,"material":"Leather"},{"itemId":524117,"className":"LEG04_117","name":"Primus Nyx Knight Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":21826,"sellPrice":0,"equipType1":"Pants","minLevel":170,"def":1050,"mDef":525,"material":"Iron"},{"itemId":524118,"className":"LEG04_118","name":"Primus Marone Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Pants","minLevel":75,"def":240,"mDef":480,"material":"Cloth"},{"itemId":524119,"className":"LEG04_119","name":"Primus Prakeh Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":29405,"sellPrice":0,"equipType1":"Pants","minLevel":220,"def":675,"mDef":1350,"material":"Cloth"},{"itemId":524120,"className":"LEG04_120","name":"Primus Razna Leather Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Pants","minLevel":75,"def":360,"mDef":360,"material":"Leather"},{"itemId":524121,"className":"LEG04_121","name":"Primus Keyarc Leather Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":29405,"sellPrice":0,"equipType1":"Pants","minLevel":220,"def":1012,"mDef":1012,"material":"Leather"},{"itemId":524122,"className":"LEG04_122","name":"Primus Barghar Plate Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Pants","minLevel":75,"def":480,"mDef":240,"material":"Iron"},{"itemId":524123,"className":"LEG04_123","name":"Primus Suurit Plate Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":29405,"sellPrice":0,"equipType1":"Pants","minLevel":220,"def":1350,"mDef":675,"material":"Iron"},{"itemId":524124,"className":"LEG04_124","name":"Primus Kalinis Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Pants","minLevel":270,"def":825,"mDef":1650,"material":"Cloth"},{"itemId":524125,"className":"LEG04_125","name":"Primus Albinosas Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Pants","minLevel":270,"def":1237,"mDef":1237,"material":"Leather"},{"itemId":524126,"className":"LEG04_126","name":"Primus Tajtanas Plate Pants","type":"Equip","group":"Armor","weight":220,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Pants","minLevel":270,"def":1650,"mDef":825,"material":"Iron"},{"itemId":524127,"className":"LEG04_127","name":"Primus Oksinis Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Pants","minLevel":315,"def":960,"mDef":1920,"material":"Cloth"},{"itemId":524128,"className":"LEG04_128","name":"Primus Kaulas Leather Pants","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Pants","minLevel":315,"def":1440,"mDef":1440,"material":"Leather"},{"itemId":524129,"className":"LEG04_129","name":"Primus Krisius Plate Pants","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Pants","minLevel":315,"def":1920,"mDef":960,"material":"Iron"},{"itemId":524130,"className":"LEG04_130","name":"Primus Irellis Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":350,"def":1065,"mDef":2130,"material":"Cloth"},{"itemId":524131,"className":"LEG04_131","name":"Primus Jevenellis Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":350,"def":1597,"mDef":1597,"material":"Leather"},{"itemId":524132,"className":"LEG04_132","name":"Primus Basticle Plate Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":350,"def":2130,"mDef":1065,"material":"Iron"},{"itemId":524133,"className":"LEG04_133","name":"Laitas Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":350,"def":1065,"mDef":2130,"addMDef":288,"material":"Cloth"},{"itemId":524134,"className":"LEG04_134","name":"Fietas Leather Pants","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":350,"def":1597,"mDef":1597,"material":"Leather"},{"itemId":524135,"className":"LEG04_135","name":"Ausura Plate Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":350,"def":2130,"mDef":1065,"addDef":288,"material":"Iron"},{"itemId":524136,"className":"LEG04_136","name":"Primus Planeta Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Pants","minLevel":380,"def":1155,"mDef":2310,"material":"Cloth"},{"itemId":524137,"className":"LEG04_137","name":"Primus Ukas Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Pants","minLevel":380,"def":1732,"mDef":1732,"material":"Leather"},{"itemId":524138,"className":"LEG04_138","name":"Primus Galaktikos Plate Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Pants","minLevel":380,"def":2310,"mDef":1155,"material":"Iron"},{"itemId":524139,"className":"LEG04_139","name":"Ignas Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Pants","minLevel":380,"def":1155,"mDef":2310,"material":"Cloth"},{"itemId":524140,"className":"LEG04_140","name":"Ignas Leather Pants","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Pants","minLevel":380,"def":1732,"mDef":1732,"material":"Leather"},{"itemId":524141,"className":"LEG04_141","name":"Ignas Plate Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Pants","minLevel":380,"def":2310,"mDef":1155,"material":"Iron"},{"itemId":524142,"className":"LEG04_142","name":"Primus Pilgriste Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":1215,"mDef":2430,"material":"Cloth"},{"itemId":524143,"className":"LEG04_143","name":"Primus Vymedzai Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":1822,"mDef":1822,"material":"Leather"},{"itemId":524144,"className":"LEG04_144","name":"Primus Akmo Plate Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":2430,"mDef":1215,"material":"Iron"},{"itemId":524145,"className":"LEG04_145","name":"Skiaclipse Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":1215,"mDef":2430,"addMDef":387,"material":"Cloth"},{"itemId":524146,"className":"LEG04_146","name":"Skiaclipse Leather Pants","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":1822,"mDef":1822,"material":"Leather"},{"itemId":524147,"className":"LEG04_147","name":"Skiaclipse Plate Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"pAtk":74,"def":2430,"mDef":1215,"material":"Iron"},{"itemId":524148,"className":"LEG04_148","name":"Skiaclipse Pants - Compassion","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":1215,"mDef":2430,"addMDef":160,"material":"Cloth"},{"itemId":524149,"className":"LEG04_149","name":"Skiaclipse Leather Pants - Assault","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":1822,"mDef":1822,"material":"Leather"},{"itemId":524150,"className":"LEG04_150","name":"Skiaclipse Plate Pants - Iron Wall","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":2430,"mDef":1215,"material":"Iron"},{"itemId":524151,"className":"LEG04_151","name":"Moringponia Plate Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":2430,"mDef":1215,"material":"Iron"},{"itemId":524152,"className":"LEG04_152","name":"Moringponia Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":1215,"mDef":2430,"material":"Cloth"},{"itemId":524153,"className":"LEG04_153","name":"Moringponia Leather Pants","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":1822,"mDef":1822,"material":"Leather"},{"itemId":524154,"className":"LEG04_154","name":"Misrus Plate Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":2430,"mDef":1215,"material":"Iron"},{"itemId":524155,"className":"LEG04_155","name":"Misrus Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":1215,"mDef":2430,"material":"Cloth"},{"itemId":524156,"className":"LEG04_156","name":"Misrus Leather Pants","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":1822,"mDef":1822,"material":"Leather"},{"itemId":524157,"className":"LEG04_157","name":"Primus Dysnai Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Pants","minLevel":430,"def":1305,"mDef":2610,"material":"Cloth"},{"itemId":524158,"className":"LEG04_158","name":"Primus Dysnai Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Pants","minLevel":430,"def":1957,"mDef":1957,"material":"Leather"},{"itemId":524159,"className":"LEG04_159","name":"Primus Dysnai Plate Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Pants","minLevel":430,"def":2610,"mDef":1305,"material":"Iron"},{"itemId":525101,"className":"LEG05_101","name":"Velcoffer Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":360,"def":1401,"mDef":2803,"material":"Cloth"},{"itemId":525102,"className":"LEG05_102","name":"Velcoffer Leather Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":360,"def":2102,"mDef":2102,"material":"Leather"},{"itemId":525103,"className":"LEG05_103","name":"Velcoffer Plate Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":360,"def":2803,"mDef":1401,"material":"Iron"},{"itemId":525104,"className":"LEG05_104","name":"Velcoffer Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":360,"def":1401,"mDef":2803,"material":"Cloth"},{"itemId":525105,"className":"LEG05_105","name":"Velcoffer Leather Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":360,"def":2102,"mDef":2102,"material":"Leather"},{"itemId":525106,"className":"LEG05_106","name":"Velcoffer Plate Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":360,"def":2803,"mDef":1401,"material":"Iron"},{"itemId":525107,"className":"LEG05_107","name":"Savinose Pilgriste Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":1555,"mDef":3110,"material":"Cloth"},{"itemId":525108,"className":"LEG05_108","name":"Savinose Vymedzai Leather Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":2332,"mDef":2332,"material":"Leather"},{"itemId":525109,"className":"LEG05_109","name":"Savinose Akmo Plate Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":3110,"mDef":1555,"material":"Iron"},{"itemId":525110,"className":"LEG05_110","name":"Skiaclipse Varna Plate Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":3110,"mDef":1555,"material":"Iron"},{"itemId":525111,"className":"LEG05_111","name":"Skiaclipse Varna Leather Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":2332,"mDef":2332,"material":"Leather"},{"itemId":525112,"className":"LEG05_112","name":"Skiaclipse Varna Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":1555,"mDef":3110,"material":"Cloth"},{"itemId":531101,"className":"TOP01_101","name":"Light Armor","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":360,"sellPrice":72,"equipType1":"Shirt","minLevel":1,"def":19,"mDef":19,"material":"Leather"},{"itemId":531102,"className":"TOP01_102","name":"Quilted Armor","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":360,"sellPrice":72,"equipType1":"Shirt","minLevel":1,"def":19,"mDef":19,"material":"Leather"},{"itemId":531103,"className":"TOP01_103","name":"Leather Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":360,"sellPrice":518,"equipType1":"Shirt","minLevel":1,"def":19,"mDef":19,"material":"Leather"},{"itemId":531104,"className":"TOP01_104","name":"Hard Leather Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":64,"mDef":64,"material":"Leather"},{"itemId":531105,"className":"TOP01_105","name":"Chainmail","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":2592,"sellPrice":540,"equipType1":"Shirt","minLevel":15,"def":86,"mDef":43,"material":"Iron"},{"itemId":531106,"className":"TOP01_106","name":"Mark Tunic","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":145,"mDef":145,"material":"Leather"},{"itemId":531107,"className":"TOP01_107","name":"Forest Leather Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":145,"mDef":145,"material":"Leather"},{"itemId":531108,"className":"TOP01_108","name":"Grima Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":97,"mDef":194,"material":"Cloth"},{"itemId":531109,"className":"TOP01_109","name":"Veris Tunic","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":145,"mDef":145,"material":"Leather"},{"itemId":531110,"className":"TOP01_110","name":"Scale Mail","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":194,"mDef":97,"material":"Iron"},{"itemId":531111,"className":"TOP01_111","name":"Forest Robe","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":97,"mDef":194,"material":"Cloth"},{"itemId":531112,"className":"TOP01_112","name":"Klaida Mail","type":"Equip","group":"Armor","weight":135,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":194,"mDef":97,"material":"Iron"},{"itemId":531113,"className":"TOP01_113","name":"Hard Veris Tunic","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":259,"mDef":259,"material":"Leather"},{"itemId":531114,"className":"TOP01_114","name":"Superior Scale Mail","type":"Equip","group":"Armor","weight":240,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":345,"mDef":172,"material":"Iron"},{"itemId":531115,"className":"TOP01_115","name":"Regal Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":172,"mDef":345,"material":"Cloth"},{"itemId":531116,"className":"TOP01_116","name":"Rag Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":360,"sellPrice":72,"equipType1":"Shirt","minLevel":1,"def":21,"mDef":21,"material":"Leather"},{"itemId":531117,"className":"TOP01_117","name":"Miner's Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":360,"sellPrice":154,"equipType1":"Shirt","minLevel":1,"def":19,"mDef":19,"material":"Leather","poisonRes":3},{"itemId":531118,"className":"TOP01_118","name":"Old Hard Leather Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":64,"mDef":64,"material":"Leather"},{"itemId":531119,"className":"TOP01_119","name":"Old Chainmail","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":86,"mDef":43,"material":"Iron"},{"itemId":531120,"className":"TOP01_120","name":"Old Steel Chainmail","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":3276,"sellPrice":1335,"equipType1":"Shirt","minLevel":40,"def":194,"mDef":97,"material":"Iron"},{"itemId":531121,"className":"TOP01_121","name":"Brigandine Armor","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":259,"mDef":259,"material":"Leather"},{"itemId":531122,"className":"TOP01_122","name":"Plate Armor","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":345,"mDef":172,"material":"Iron"},{"itemId":531123,"className":"TOP01_123","name":"Superior Quilted Armor","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":360,"sellPrice":518,"equipType1":"Shirt","minLevel":1,"def":19,"mDef":19,"material":"Leather"},{"itemId":531124,"className":"TOP01_124","name":"Vubbe Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":64,"mDef":64,"material":"Leather"},{"itemId":531125,"className":"TOP01_125","name":"Panto Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":64,"mDef":64,"material":"Leather"},{"itemId":531126,"className":"TOP01_126","name":"Acolyte Robe","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":97,"mDef":194,"material":"Cloth"},{"itemId":531127,"className":"TOP01_127","name":"Steel Chainmail","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":194,"mDef":97,"material":"Iron"},{"itemId":531128,"className":"TOP01_128","name":"Enhanced Leather Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":360,"sellPrice":518,"equipType1":"Shirt","minLevel":1,"def":19,"mDef":19,"material":"Leather","ariesDef":14},{"itemId":531129,"className":"TOP01_129","name":"Dunkel Quilted Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":360,"sellPrice":72,"equipType1":"Shirt","minLevel":1,"def":19,"mDef":19,"material":"Leather"},{"itemId":531130,"className":"TOP01_130","name":"Dunkel Cotton Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":43,"mDef":86,"material":"Cloth"},{"itemId":531131,"className":"TOP01_131","name":"Dunkel Hard Leather Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":64,"mDef":64,"material":"Leather"},{"itemId":531132,"className":"TOP01_132","name":"Dunkel Ring Mail","type":"Equip","group":"Armor","weight":160,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":86,"mDef":43,"material":"Iron"},{"itemId":531133,"className":"TOP01_133","name":"Cotton Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":43,"mDef":86,"material":"Cloth"},{"itemId":531134,"className":"TOP01_134","name":"Ring Mail","type":"Equip","group":"Armor","weight":160,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":86,"mDef":43,"material":"Iron"},{"itemId":531135,"className":"TOP01_135","name":"Superior Regal Robe","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":172,"mDef":345,"material":"Cloth"},{"itemId":531136,"className":"TOP01_136","name":"Superior Brigandine Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":7724,"sellPrice":2457,"equipType1":"Shirt","minLevel":75,"def":259,"mDef":259,"material":"Leather"},{"itemId":531137,"className":"TOP01_137","name":"Full Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":2822,"equipType1":"Shirt","minLevel":75,"def":345,"mDef":172,"material":"Iron"},{"itemId":531138,"className":"TOP01_138","name":"Fedimian Robe","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":13968,"sellPrice":3846,"equipType1":"Shirt","minLevel":120,"def":270,"mDef":540,"material":"Cloth"},{"itemId":531139,"className":"TOP01_139","name":"Fedimian Leather Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":13968,"sellPrice":3846,"equipType1":"Shirt","minLevel":120,"def":405,"mDef":405,"material":"Leather"},{"itemId":531140,"className":"TOP01_140","name":"Fedimian Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":13968,"sellPrice":3846,"equipType1":"Shirt","minLevel":120,"def":540,"mDef":270,"material":"Iron"},{"itemId":531141,"className":"TOP01_141","name":"Magician Robe","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":13968,"sellPrice":2851,"equipType1":"Shirt","minLevel":120,"def":270,"mDef":540,"material":"Cloth"},{"itemId":531142,"className":"TOP01_142","name":"Hunting Armor","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":13968,"sellPrice":3874,"equipType1":"Shirt","minLevel":120,"def":405,"mDef":405,"material":"Leather"},{"itemId":531143,"className":"TOP01_143","name":"Guard Armor","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":13968,"sellPrice":3901,"equipType1":"Shirt","minLevel":120,"def":540,"mDef":270,"material":"Iron"},{"itemId":531144,"className":"TOP01_144","name":"Mage Robe","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":13968,"sellPrice":3901,"equipType1":"Shirt","minLevel":120,"def":270,"mDef":540,"material":"Cloth"},{"itemId":531145,"className":"TOP01_145","name":"Skirmisher Tunic","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":13968,"sellPrice":3901,"equipType1":"Shirt","minLevel":120,"def":405,"mDef":405,"material":"Leather"},{"itemId":531146,"className":"TOP01_146","name":"Infantry Armor","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":13968,"sellPrice":3901,"equipType1":"Shirt","minLevel":120,"def":540,"mDef":270,"material":"Iron"},{"itemId":531147,"className":"TOP01_147","name":"Archmage Robe","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":21826,"sellPrice":5820,"equipType1":"Shirt","minLevel":170,"def":378,"mDef":756,"material":"Cloth"},{"itemId":531148,"className":"TOP01_148","name":"Superior Skirmisher Tunic","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":21826,"sellPrice":5820,"equipType1":"Shirt","minLevel":170,"def":567,"mDef":567,"material":"Leather"},{"itemId":531149,"className":"TOP01_149","name":"Superior Infantry Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":21826,"sellPrice":5820,"equipType1":"Shirt","minLevel":170,"def":756,"mDef":378,"material":"Iron"},{"itemId":531150,"className":"TOP01_150","name":"Librarian Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":21826,"sellPrice":5881,"equipType1":"Shirt","minLevel":170,"def":378,"mDef":756,"material":"Cloth"},{"itemId":531151,"className":"TOP01_151","name":"Veteran Tunic","type":"Equip","group":"Armor","weight":125,"maxStack":1,"price":21826,"sellPrice":5881,"equipType1":"Shirt","minLevel":170,"def":567,"mDef":567,"material":"Leather"},{"itemId":531152,"className":"TOP01_152","name":"Knight Armor","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":21826,"sellPrice":5881,"equipType1":"Shirt","minLevel":170,"def":756,"mDef":378,"material":"Iron"},{"itemId":531153,"className":"TOP01_153","name":"Superior Grima Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":172,"mDef":345,"material":"Cloth"},{"itemId":531154,"className":"TOP01_154","name":"Royal Mage Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":29405,"sellPrice":7113,"equipType1":"Shirt","minLevel":220,"def":486,"mDef":972,"material":"Cloth"},{"itemId":531155,"className":"TOP01_155","name":"Bandit Armor","type":"Equip","group":"Armor","weight":125,"maxStack":1,"price":29405,"sellPrice":7113,"equipType1":"Shirt","minLevel":220,"def":729,"mDef":729,"material":"Leather"},{"itemId":531156,"className":"TOP01_156","name":"Royal Guard Armor","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":29405,"sellPrice":7113,"equipType1":"Shirt","minLevel":220,"def":972,"mDef":486,"material":"Iron"},{"itemId":531157,"className":"TOP01_157","name":"Superior Royal Mage Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":29405,"sellPrice":7171,"equipType1":"Shirt","minLevel":220,"def":486,"mDef":972,"material":"Cloth"},{"itemId":531158,"className":"TOP01_158","name":"Superior Bandit Armor","type":"Equip","group":"Armor","weight":125,"maxStack":1,"price":29405,"sellPrice":7171,"equipType1":"Shirt","minLevel":220,"def":729,"mDef":729,"material":"Leather"},{"itemId":531159,"className":"TOP01_159","name":"Superior Royal Guard Armor","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":29405,"sellPrice":7171,"equipType1":"Shirt","minLevel":220,"def":972,"mDef":486,"material":"Iron"},{"itemId":531203,"className":"TOP01_203","name":"Blint Tunic","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Shirt","minLevel":270,"def":594,"mDef":1188,"material":"Cloth"},{"itemId":531204,"className":"TOP01_204","name":"Blint Leather Robe","type":"Equip","group":"Armor","weight":125,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Shirt","minLevel":270,"def":891,"mDef":891,"material":"Leather"},{"itemId":531205,"className":"TOP01_205","name":"Blint Plate Armor","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Shirt","minLevel":270,"def":1188,"mDef":594,"material":"Iron"},{"itemId":531206,"className":"TOP01_206","name":"(Faded) Replica Kalinis Robe","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":50000,"sellPrice":5000,"equipType1":"Shirt","minLevel":270,"def":594,"mDef":1188,"material":"Cloth"},{"itemId":531207,"className":"TOP01_207","name":"(Faded) Replica Albinosas Leather Armor","type":"Equip","group":"Armor","weight":160,"maxStack":1,"price":50000,"sellPrice":5000,"equipType1":"Shirt","minLevel":270,"def":891,"mDef":891,"material":"Leather"},{"itemId":531208,"className":"TOP01_208","name":"(Faded) Replica Tajtanas Plate Armor","type":"Equip","group":"Armor","weight":230,"maxStack":1,"price":50000,"sellPrice":5000,"equipType1":"Shirt","minLevel":270,"def":1188,"mDef":594,"material":"Iron"},{"itemId":531209,"className":"TOP01_209","name":"(Faded) Replica Oksinis Robe","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":75000,"sellPrice":5000,"equipType1":"Shirt","minLevel":315,"def":691,"mDef":1382,"material":"Cloth"},{"itemId":531210,"className":"TOP01_210","name":"(Faded) Replica Kaulas Leather Armor","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":75000,"sellPrice":5000,"equipType1":"Shirt","minLevel":315,"def":1036,"mDef":1036,"material":"Leather"},{"itemId":531211,"className":"TOP01_211","name":"(Faded) Replica Krisius Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":75000,"sellPrice":5000,"equipType1":"Shirt","minLevel":315,"def":1382,"mDef":691,"material":"Iron"},{"itemId":532101,"className":"TOP02_101","name":"Crimson Leather Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":72,"mDef":72,"material":"Leather"},{"itemId":532102,"className":"TOP02_102","name":"Pokubu Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":360,"sellPrice":411,"equipType1":"Shirt","minLevel":1,"def":21,"mDef":21,"material":"Leather"},{"itemId":532103,"className":"TOP02_103","name":"Tenet Chainmail","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":2592,"sellPrice":907,"equipType1":"Shirt","minLevel":15,"def":96,"mDef":48,"material":"Iron"},{"itemId":532104,"className":"TOP02_104","name":"Zalia Leather Armor","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":162,"mDef":162,"material":"Leather"},{"itemId":532105,"className":"TOP02_105","name":"Prova Robe","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":108,"mDef":216,"material":"Cloth"},{"itemId":532106,"className":"TOP02_106","name":"Studded Armor","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":162,"mDef":162,"material":"Leather","poisonRes":18},{"itemId":532107,"className":"TOP02_107","name":"Insect Mail","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":216,"mDef":108,"material":"Iron"},{"itemId":532109,"className":"TOP02_109","name":"Red Veris Tunic","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":3276,"sellPrice":1572,"equipType1":"Shirt","minLevel":40,"def":162,"mDef":162,"material":"Leather"},{"itemId":532110,"className":"TOP02_110","name":"Light Plate Armor","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":3276,"sellPrice":1868,"equipType1":"Shirt","minLevel":40,"def":216,"mDef":108,"material":"Iron"},{"itemId":532111,"className":"TOP02_111","name":"Magnus Robe","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":7724,"sellPrice":2406,"equipType1":"Shirt","minLevel":75,"def":192,"mDef":384,"material":"Cloth"},{"itemId":532112,"className":"TOP02_112","name":"Pokubon Leather Armor","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":288,"mDef":288,"material":"Leather"},{"itemId":532113,"className":"TOP02_113","name":"Drake Leather Tunic","type":"Equip","group":"Armor","weight":165,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":288,"mDef":288,"material":"Leather","fireRes":21,"poisonRes":-7},{"itemId":532114,"className":"TOP02_114","name":"Silver Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":384,"mDef":192,"material":"Iron"},{"itemId":532118,"className":"TOP02_118","name":"Follower Leather Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":72,"mDef":72,"material":"Leather"},{"itemId":532119,"className":"TOP02_119","name":"Mummyghast Mail","type":"Equip","group":"Armor","weight":950,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":96,"mDef":48,"material":"Iron"},{"itemId":532123,"className":"TOP02_123","name":"Cafrisun Armor","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":72,"mDef":72,"material":"Leather","poisonRes":8},{"itemId":532124,"className":"TOP02_124","name":"Dio Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":360,"sellPrice":221,"equipType1":"Shirt","minLevel":1,"def":14,"mDef":28,"material":"Cloth","earthRes":4},{"itemId":532125,"className":"TOP02_125","name":"Dio Leather Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":360,"sellPrice":518,"equipType1":"Shirt","minLevel":1,"def":21,"mDef":21,"material":"Leather","poisonRes":4},{"itemId":532126,"className":"TOP02_126","name":"Dio Chainmail","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":360,"sellPrice":518,"equipType1":"Shirt","minLevel":1,"def":28,"mDef":14,"material":"Iron","darkRes":4},{"itemId":532127,"className":"TOP02_127","name":"Thresh Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":48,"mDef":96,"material":"Cloth","darkRes":5},{"itemId":532128,"className":"TOP02_128","name":"Thresh Leather Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":72,"mDef":72,"material":"Leather","lightningRes":5},{"itemId":532129,"className":"TOP02_129","name":"Thresh Chainmail","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":96,"mDef":48,"material":"Iron","darkRes":5},{"itemId":532130,"className":"TOP02_130","name":"Sestas Greaves","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":48,"mDef":96,"material":"Cloth","lightningRes":6},{"itemId":532131,"className":"TOP02_131","name":"Sestas Leather Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2592,"sellPrice":540,"equipType1":"Shirt","minLevel":15,"def":72,"mDef":72,"material":"Leather","poisonRes":6},{"itemId":532132,"className":"TOP02_132","name":"Sestas Chainmail","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":2592,"sellPrice":781,"equipType1":"Shirt","minLevel":15,"def":96,"mDef":48,"material":"Iron","earthRes":6},{"itemId":532133,"className":"TOP02_133","name":"Dratt Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":108,"mDef":216,"material":"Cloth","iceRes":7},{"itemId":532134,"className":"TOP02_134","name":"Dratt Leather Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":162,"mDef":162,"material":"Leather","darkRes":7},{"itemId":532135,"className":"TOP02_135","name":"Dratt Plate Armor","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":216,"mDef":108,"material":"Iron","lightningRes":7},{"itemId":532136,"className":"TOP02_136","name":"Aston Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":108,"mDef":216,"material":"Cloth","darkRes":8},{"itemId":532137,"className":"TOP02_137","name":"Aston Leather Armor","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":162,"mDef":162,"material":"Leather","poisonRes":8},{"itemId":532138,"className":"TOP02_138","name":"Aston Plate Armor","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":3276,"sellPrice":1707,"equipType1":"Shirt","minLevel":40,"def":216,"mDef":108,"material":"Iron","earthRes":8},{"itemId":532139,"className":"TOP02_139","name":"Devi Greaves","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":192,"mDef":384,"material":"Cloth","lightningRes":9},{"itemId":532140,"className":"TOP02_140","name":"Devi Leather Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":288,"mDef":288,"material":"Leather","poisonRes":9},{"itemId":532141,"className":"TOP02_141","name":"Devi Plate Armor","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":384,"mDef":192,"material":"Iron","iceRes":9},{"itemId":532142,"className":"TOP02_142","name":"Prima Greaves","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":7724,"sellPrice":2457,"equipType1":"Shirt","minLevel":75,"def":192,"mDef":384,"material":"Cloth","darkRes":10},{"itemId":532143,"className":"TOP02_143","name":"Prima Leather Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":7724,"sellPrice":2483,"equipType1":"Shirt","minLevel":75,"def":288,"mDef":288,"material":"Leather","iceRes":10},{"itemId":532144,"className":"TOP02_144","name":"Prima Plate Armor","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":7724,"sellPrice":2851,"equipType1":"Shirt","minLevel":75,"def":384,"mDef":192,"material":"Iron","fireRes":10},{"itemId":532149,"className":"TOP02_149","name":"Formine Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":360,"sellPrice":518,"equipType1":"Shirt","minLevel":1,"def":21,"mDef":21,"material":"Leather","earthRes":4},{"itemId":532150,"className":"TOP02_150","name":"Riena Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Shirt","minLevel":75,"def":192,"mDef":384,"material":"Cloth"},{"itemId":532151,"className":"TOP02_151","name":"Riena Leather Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":7724,"sellPrice":2457,"equipType1":"Shirt","minLevel":75,"def":288,"mDef":288,"material":"Leather"},{"itemId":532152,"className":"TOP02_152","name":"Riena Plate Armor","type":"Equip","group":"Armor","weight":160,"maxStack":1,"price":7724,"sellPrice":2457,"equipType1":"Shirt","minLevel":75,"def":384,"mDef":192,"material":"Iron"},{"itemId":532153,"className":"TOP02_153","name":"Watcher Tunic","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2592,"sellPrice":655,"equipType1":"Shirt","minLevel":15,"def":72,"mDef":72,"material":"Leather"},{"itemId":532154,"className":"TOP02_154","name":"Earth Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":3276,"sellPrice":1653,"equipType1":"Shirt","minLevel":40,"def":108,"mDef":216,"material":"Cloth","earthRes":5},{"itemId":532155,"className":"TOP02_155","name":"Leather Earth Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":3276,"sellPrice":1653,"equipType1":"Shirt","minLevel":40,"def":162,"mDef":162,"material":"Leather","earthRes":5},{"itemId":532156,"className":"TOP02_156","name":"Earth Plate Armor","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":3276,"sellPrice":1653,"equipType1":"Shirt","minLevel":40,"def":216,"mDef":108,"material":"Iron","earthRes":5},{"itemId":532157,"className":"TOP02_157","name":"Legwyn Family Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":13968,"sellPrice":3901,"equipType1":"Shirt","minLevel":120,"def":300,"mDef":600,"material":"Cloth"},{"itemId":532158,"className":"TOP02_158","name":"Legwyn Family Leather Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":13968,"sellPrice":3901,"equipType1":"Shirt","minLevel":120,"def":450,"mDef":450,"material":"Leather"},{"itemId":532159,"className":"TOP02_159","name":"Legwyn Family Plate Armor","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":13968,"sellPrice":3901,"equipType1":"Shirt","minLevel":120,"def":600,"mDef":300,"material":"Iron"},{"itemId":532160,"className":"TOP02_160","name":"Ogva Robe","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":48,"mDef":96,"material":"Cloth","fireRes":3},{"itemId":532161,"className":"TOP02_161","name":"Ogva Leather Tunic","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":72,"mDef":72,"material":"Leather","darkRes":3},{"itemId":532162,"className":"TOP02_162","name":"Ogva Chain Mail","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":96,"mDef":48,"material":"Iron","poisonRes":3},{"itemId":532163,"className":"TOP02_163","name":"Partis Robe","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":48,"mDef":96,"material":"Cloth"},{"itemId":532164,"className":"TOP02_164","name":"Partis Leather Tunic","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":72,"mDef":72,"material":"Leather"},{"itemId":532165,"className":"TOP02_165","name":"Partis Ring Mail","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":96,"mDef":48,"material":"Iron"},{"itemId":532166,"className":"TOP02_166","name":"Sirdgela Robe","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":108,"mDef":216,"material":"Cloth","poisonRes":6},{"itemId":532167,"className":"TOP02_167","name":"Sirdgela Leather Tunic","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":162,"mDef":162,"material":"Leather","earthRes":6},{"itemId":532168,"className":"TOP02_168","name":"Sirdgela Scale Mail","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":216,"mDef":108,"material":"Iron","iceRes":6},{"itemId":532169,"className":"TOP02_169","name":"Philis Robe","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":108,"mDef":216,"material":"Cloth","lightningRes":6},{"itemId":532170,"className":"TOP02_170","name":"Philis Leather Tunic","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":162,"mDef":162,"material":"Leather","poisonRes":6},{"itemId":532171,"className":"TOP02_171","name":"Philis Scale Mail","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":216,"mDef":108,"material":"Iron","fireRes":6},{"itemId":532172,"className":"TOP02_172","name":"Allerno Robe","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":192,"mDef":384,"material":"Cloth","darkRes":11},{"itemId":532173,"className":"TOP02_173","name":"Allerno Leather Tunic","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":288,"mDef":288,"material":"Leather","iceRes":11},{"itemId":532174,"className":"TOP02_174","name":"Allerno Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":384,"mDef":192,"material":"Iron","earthRes":11},{"itemId":532175,"className":"TOP02_175","name":"Perelin Robe","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":192,"mDef":384,"material":"Cloth"},{"itemId":532176,"className":"TOP02_176","name":"Perelin Leather Tunic","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":288,"mDef":288,"material":"Leather"},{"itemId":532177,"className":"TOP02_177","name":"Perelin Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":384,"mDef":192,"material":"Iron"},{"itemId":532178,"className":"TOP02_178","name":"Turn Robe","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":13968,"sellPrice":2457,"equipType1":"Shirt","minLevel":120,"def":300,"mDef":600,"material":"Cloth","poisonRes":14},{"itemId":532179,"className":"TOP02_179","name":"Turn Leather Tunic","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":13968,"sellPrice":2457,"equipType1":"Shirt","minLevel":120,"def":450,"mDef":450,"material":"Leather","lightningRes":14},{"itemId":532180,"className":"TOP02_180","name":"Turn Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":13968,"sellPrice":2457,"equipType1":"Shirt","minLevel":120,"def":600,"mDef":300,"material":"Iron","iceRes":14},{"itemId":532181,"className":"TOP02_181","name":"Shaton Robe","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":13968,"sellPrice":2851,"equipType1":"Shirt","minLevel":120,"def":300,"mDef":600,"material":"Cloth","darkRes":16},{"itemId":532182,"className":"TOP02_182","name":"Shaton Leather Tunic","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":13968,"sellPrice":2851,"equipType1":"Shirt","minLevel":120,"def":450,"mDef":450,"material":"Leather","fireRes":16},{"itemId":532183,"className":"TOP02_183","name":"Shaton Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":13968,"sellPrice":2851,"equipType1":"Shirt","minLevel":120,"def":600,"mDef":300,"material":"Iron","darkRes":16},{"itemId":532184,"className":"TOP02_184","name":"Tyla Robe","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":21826,"sellPrice":3901,"equipType1":"Shirt","minLevel":170,"def":420,"mDef":840,"material":"Cloth","darkRes":21},{"itemId":532185,"className":"TOP02_185","name":"Tyla Leather Tunic","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":21826,"sellPrice":3901,"equipType1":"Shirt","minLevel":170,"def":630,"mDef":630,"material":"Leather","iceRes":21},{"itemId":532186,"className":"TOP02_186","name":"Tyla Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":21826,"sellPrice":3901,"equipType1":"Shirt","minLevel":170,"def":840,"mDef":420,"material":"Iron","poisonRes":21},{"itemId":532187,"className":"TOP02_187","name":"Velnia Monkey Leather Armor","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":162,"mDef":162,"material":"Leather","lightningRes":4},{"itemId":532188,"className":"TOP02_188","name":"Elkosh Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":29405,"sellPrice":5881,"equipType1":"Shirt","minLevel":220,"def":540,"mDef":1080,"material":"Cloth"},{"itemId":532189,"className":"TOP02_189","name":"Ibre Armor","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":29405,"sellPrice":7142,"equipType1":"Shirt","minLevel":220,"def":810,"mDef":810,"material":"Leather"},{"itemId":532190,"className":"TOP02_190","name":"Grynas Armor","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":29405,"sellPrice":7142,"equipType1":"Shirt","minLevel":220,"def":1080,"mDef":540,"material":"Iron"},{"itemId":532200,"className":"TOP02_200","name":"Valtas Robe","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":29405,"sellPrice":5881,"equipType1":"Shirt","minLevel":220,"def":540,"mDef":1080,"material":"Cloth","darkRes":30},{"itemId":532201,"className":"TOP02_201","name":"Valtas Leather Tunic","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":29405,"sellPrice":5881,"equipType1":"Shirt","minLevel":220,"def":810,"mDef":810,"material":"Leather","iceRes":30},{"itemId":532202,"className":"TOP02_202","name":"Valtas Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":29405,"sellPrice":5881,"equipType1":"Shirt","minLevel":220,"def":1080,"mDef":540,"material":"Iron","poisonRes":30},{"itemId":532203,"className":"TOP02_203","name":"Hasta Tunic","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Shirt","minLevel":270,"def":660,"mDef":1320,"material":"Cloth"},{"itemId":532204,"className":"TOP02_204","name":"Hasta Leather Robe","type":"Equip","group":"Armor","weight":135,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Shirt","minLevel":270,"def":990,"mDef":990,"material":"Leather"},{"itemId":532205,"className":"TOP02_205","name":"Hasta Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Shirt","minLevel":270,"def":1320,"mDef":660,"material":"Iron"},{"itemId":532208,"className":"TOP02_208","name":"Manahas Armor","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Shirt","minLevel":270,"def":990,"mDef":990,"material":"Leather","iceRes":15,"poisonRes":8},{"itemId":532209,"className":"TOP02_209","name":"(Faded) Kalinis Robe","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":36000,"sellPrice":5000,"equipType1":"Shirt","minLevel":270,"def":660,"mDef":1320,"material":"Cloth"},{"itemId":532210,"className":"TOP02_210","name":"(Faded) Albinosas Leather Armor","type":"Equip","group":"Armor","weight":160,"maxStack":1,"price":36000,"sellPrice":5000,"equipType1":"Shirt","minLevel":270,"def":990,"mDef":990,"material":"Leather"},{"itemId":532211,"className":"TOP02_211","name":"(Faded) Tajtanas Plate Armor","type":"Equip","group":"Armor","weight":230,"maxStack":1,"price":36000,"sellPrice":5000,"equipType1":"Shirt","minLevel":270,"def":1320,"mDef":660,"material":"Iron"},{"itemId":532212,"className":"TOP02_212","name":"(Faded) Oksinis Robe","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":43920,"sellPrice":5000,"equipType1":"Shirt","minLevel":315,"def":768,"mDef":1536,"material":"Cloth"},{"itemId":532213,"className":"TOP02_213","name":"(Faded) Kaulas Leather Armor","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":43920,"sellPrice":5000,"equipType1":"Shirt","minLevel":315,"def":1152,"mDef":1152,"material":"Leather"},{"itemId":532214,"className":"TOP02_214","name":"(Faded) Krisius Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":43920,"sellPrice":5000,"equipType1":"Shirt","minLevel":315,"def":1536,"mDef":768,"material":"Iron"},{"itemId":532215,"className":"TOP02_215","name":"Alpra Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Shirt","minLevel":120,"def":300,"mDef":600,"material":"Cloth"},{"itemId":532216,"className":"TOP02_216","name":"Eastern Leather Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Shirt","minLevel":120,"def":450,"mDef":450,"material":"Leather"},{"itemId":532217,"className":"TOP02_217","name":"Pangle Plate Armor","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Shirt","minLevel":120,"def":600,"mDef":300,"material":"Iron"},{"itemId":532218,"className":"TOP02_218","name":"War Mage Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":21826,"sellPrice":0,"equipType1":"Shirt","minLevel":170,"def":420,"mDef":840,"material":"Cloth"},{"itemId":532219,"className":"TOP02_219","name":"Eaglestar Leather Armor","type":"Equip","group":"Armor","weight":127,"maxStack":1,"price":21826,"sellPrice":0,"equipType1":"Shirt","minLevel":170,"def":630,"mDef":630,"material":"Leather"},{"itemId":532220,"className":"TOP02_220","name":"Nyx Knight Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":21826,"sellPrice":0,"equipType1":"Shirt","minLevel":170,"def":840,"mDef":420,"material":"Iron"},{"itemId":532221,"className":"TOP02_221","name":"Marone Robe","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Shirt","minLevel":75,"def":192,"mDef":384,"material":"Cloth"},{"itemId":532222,"className":"TOP02_222","name":"Prakeh Robe","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":29405,"sellPrice":0,"equipType1":"Shirt","minLevel":220,"def":540,"mDef":1080,"material":"Cloth"},{"itemId":532223,"className":"TOP02_223","name":"Razna Leather Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Shirt","minLevel":75,"def":288,"mDef":288,"material":"Leather"},{"itemId":532224,"className":"TOP02_224","name":"Keyarc Leather Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":29405,"sellPrice":0,"equipType1":"Shirt","minLevel":220,"def":810,"mDef":810,"material":"Leather"},{"itemId":532225,"className":"TOP02_225","name":"Barghar Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Shirt","minLevel":75,"def":384,"mDef":192,"material":"Iron"},{"itemId":532226,"className":"TOP02_226","name":"Suurit Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":29405,"sellPrice":0,"equipType1":"Shirt","minLevel":220,"def":1080,"mDef":540,"material":"Iron"},{"itemId":532227,"className":"TOP02_227","name":"Kalinis Robe","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Shirt","minLevel":270,"def":660,"mDef":1320,"material":"Cloth"},{"itemId":532228,"className":"TOP02_228","name":"Albinosas Leather Armor","type":"Equip","group":"Armor","weight":160,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Shirt","minLevel":270,"def":990,"mDef":990,"material":"Leather"},{"itemId":532229,"className":"TOP02_229","name":"Tajtanas Plate Armor","type":"Equip","group":"Armor","weight":230,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Shirt","minLevel":270,"def":1320,"mDef":660,"material":"Iron"},{"itemId":532230,"className":"TOP02_230","name":"Oksinis Robe","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Shirt","minLevel":315,"def":768,"mDef":1536,"material":"Cloth"},{"itemId":532231,"className":"TOP02_231","name":"Kaulas Leather Armor","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Shirt","minLevel":315,"def":1152,"mDef":1152,"material":"Leather"},{"itemId":532232,"className":"TOP02_232","name":"Krisius Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Shirt","minLevel":315,"def":1536,"mDef":768,"material":"Iron"},{"itemId":532233,"className":"TOP02_233","name":"Irellis Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":350,"def":852,"mDef":1704,"material":"Cloth"},{"itemId":532234,"className":"TOP02_234","name":"Jevenellis Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":350,"def":1278,"mDef":1278,"material":"Leather"},{"itemId":532235,"className":"TOP02_235","name":"Basticle Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":350,"def":1704,"mDef":852,"material":"Iron"},{"itemId":532236,"className":"TOP02_236","name":"Planeta Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Shirt","minLevel":380,"def":924,"mDef":1848,"material":"Cloth"},{"itemId":532237,"className":"TOP02_237","name":"Ukas Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Shirt","minLevel":380,"def":1386,"mDef":1386,"material":"Leather"},{"itemId":532238,"className":"TOP02_238","name":"Galaktikos Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Shirt","minLevel":380,"def":1848,"mDef":924,"material":"Iron"},{"itemId":532239,"className":"TOP02_239","name":"Pilgriste Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":972,"mDef":1944,"material":"Cloth"},{"itemId":532240,"className":"TOP02_240","name":"Vymedzai Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":1458,"mDef":1458,"material":"Leather"},{"itemId":532241,"className":"TOP02_241","name":"Akmo Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":1944,"mDef":972,"material":"Iron"},{"itemId":533103,"className":"TOP03_103","name":"Vine Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":211,"mDef":422,"material":"Cloth","fireRes":-17,"poisonRes":32},{"itemId":533104,"className":"TOP03_104","name":"Saint Robe","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":211,"mDef":422,"material":"Cloth","darkRes":31},{"itemId":533105,"className":"TOP03_105","name":"Soul Chaser Armor","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":316,"mDef":316,"material":"Leather"},{"itemId":533106,"className":"TOP03_106","name":"Bone Armor","type":"Equip","group":"Armor","weight":240,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":422,"mDef":211,"material":"Iron"},{"itemId":533107,"className":"TOP03_107","name":"Shade Dancer","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":7724,"sellPrice":72,"equipType1":"Shirt","minLevel":75,"def":316,"mDef":316,"material":"Leather","darkRes":31},{"itemId":533108,"className":"TOP03_108","name":"Rokas Leather Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":178,"mDef":178,"material":"Leather"},{"itemId":533109,"className":"TOP03_109","name":"Rokas Mail","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":237,"mDef":118,"material":"Iron","earthRes":13,"poisonRes":15},{"itemId":533110,"className":"TOP03_110","name":"Rokas Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":118,"mDef":237,"material":"Cloth"},{"itemId":533111,"className":"TOP03_111","name":"Roxona Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":21826,"sellPrice":5850,"equipType1":"Shirt","minLevel":170,"def":462,"mDef":924,"material":"Cloth"},{"itemId":533112,"className":"TOP03_112","name":"Roxona Leather Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":21826,"sellPrice":5850,"equipType1":"Shirt","minLevel":170,"def":693,"mDef":693,"material":"Leather"},{"itemId":533113,"className":"TOP03_113","name":"Roxona Plate Armor","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":21826,"sellPrice":5850,"equipType1":"Shirt","minLevel":170,"def":924,"mDef":462,"material":"Iron","iceRes":8},{"itemId":533114,"className":"TOP03_114","name":"Virtov Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":29405,"sellPrice":7142,"equipType1":"Shirt","minLevel":220,"def":594,"mDef":1188,"material":"Cloth"},{"itemId":533115,"className":"TOP03_115","name":"Virtov Leather Robe","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":29405,"sellPrice":7142,"equipType1":"Shirt","minLevel":220,"def":891,"mDef":891,"material":"Leather"},{"itemId":533116,"className":"TOP03_116","name":"Virtov Plate Robe","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":29405,"sellPrice":7142,"equipType1":"Shirt","minLevel":220,"def":1188,"mDef":594,"material":"Iron","fireRes":23},{"itemId":533130,"className":"TOP03_130","name":"Newt Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Shirt","minLevel":270,"def":726,"mDef":1452,"material":"Cloth"},{"itemId":533131,"className":"TOP03_131","name":"Newt Leather Armor","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Shirt","minLevel":270,"def":1089,"mDef":1089,"material":"Leather"},{"itemId":533132,"className":"TOP03_132","name":"Newt Plate Armor","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Shirt","minLevel":270,"def":1452,"mDef":726,"material":"Iron","fireRes":23},{"itemId":533301,"className":"TOP03_301","name":"(Faded) Alpra Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":13968,"sellPrice":3846,"equipType1":"Shirt","minLevel":120,"addMAtk":10,"def":330,"mDef":660,"material":"Cloth"},{"itemId":533302,"className":"TOP03_302","name":"(Faded) Eastern Leather Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":13968,"sellPrice":3846,"equipType1":"Shirt","minLevel":120,"def":495,"mDef":495,"material":"Leather"},{"itemId":533303,"className":"TOP03_303","name":"(Faded) Pangle Plate Armor","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":13968,"sellPrice":3846,"equipType1":"Shirt","minLevel":120,"def":660,"mDef":330,"material":"Iron"},{"itemId":533304,"className":"TOP03_304","name":"(Faded) War Mage Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":21826,"sellPrice":5850,"equipType1":"Shirt","minLevel":170,"def":462,"mDef":924,"material":"Cloth"},{"itemId":533305,"className":"TOP03_305","name":"(Faded) Eaglestar Leather Armor","type":"Equip","group":"Armor","weight":127,"maxStack":1,"price":21826,"sellPrice":5850,"equipType1":"Shirt","minLevel":170,"def":693,"mDef":693,"material":"Leather"},{"itemId":533306,"className":"TOP03_306","name":"(Faded) Nyx Knight Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":21826,"sellPrice":5850,"equipType1":"Shirt","minLevel":170,"def":924,"mDef":462,"material":"Iron","fireRes":11},{"itemId":533307,"className":"TOP03_307","name":"(Faded) Marone Robe","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":1360,"equipType1":"Shirt","minLevel":75,"def":211,"mDef":422,"material":"Cloth"},{"itemId":533308,"className":"TOP03_308","name":"(Faded) Prakeh Robe","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":29405,"sellPrice":5881,"equipType1":"Shirt","minLevel":220,"def":594,"mDef":1188,"material":"Cloth"},{"itemId":533309,"className":"TOP03_309","name":"(Faded) Razna Leather Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":1360,"equipType1":"Shirt","minLevel":75,"def":316,"mDef":316,"material":"Leather","ariesDef":70},{"itemId":533310,"className":"TOP03_310","name":"(Faded) Keyarc Leather Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":29405,"sellPrice":5881,"equipType1":"Shirt","minLevel":220,"def":891,"mDef":891,"material":"Leather"},{"itemId":533311,"className":"TOP03_311","name":"(Faded) Barghar Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":1360,"equipType1":"Shirt","minLevel":75,"def":422,"mDef":211,"material":"Iron","soulRes":13},{"itemId":533312,"className":"TOP03_312","name":"(Faded) Suurit Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":29405,"sellPrice":5881,"equipType1":"Shirt","minLevel":220,"def":1188,"mDef":594,"material":"Iron","ariesDef":103},{"itemId":533313,"className":"TOP03_313","name":"(Faded) Vienti Kalinis Robe","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":36000,"sellPrice":5000,"equipType1":"Shirt","minLevel":270,"def":726,"mDef":1452,"material":"Cloth"},{"itemId":533314,"className":"TOP03_314","name":"(Faded) Vienti Albinosas Leather Armor","type":"Equip","group":"Armor","weight":160,"maxStack":1,"price":36000,"sellPrice":5000,"equipType1":"Shirt","minLevel":270,"def":1089,"mDef":1089,"material":"Leather"},{"itemId":533315,"className":"TOP03_315","name":"(Faded) Vienti Tajtanas Plate Armor","type":"Equip","group":"Armor","weight":230,"maxStack":1,"price":36000,"sellPrice":5000,"equipType1":"Shirt","minLevel":270,"def":1452,"mDef":726,"material":"Iron"},{"itemId":533316,"className":"TOP03_316","name":"(Faded) Vienti Oksinis Robe","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":43920,"sellPrice":5000,"equipType1":"Shirt","minLevel":315,"def":844,"mDef":1689,"material":"Cloth"},{"itemId":533317,"className":"TOP03_317","name":"(Faded) Vienti Kaulas Leather Armor","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":43920,"sellPrice":5000,"equipType1":"Shirt","minLevel":315,"def":1267,"mDef":1267,"material":"Leather"},{"itemId":533318,"className":"TOP03_318","name":"(Faded) Vienti Krisius Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":43920,"sellPrice":5000,"equipType1":"Shirt","minLevel":315,"def":1689,"mDef":844,"material":"Iron"},{"itemId":533319,"className":"TOP03_319","name":"Berthas Alpra Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Shirt","minLevel":120,"def":330,"mDef":660,"material":"Cloth"},{"itemId":533320,"className":"TOP03_320","name":"Berthas Eastern Leather Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Shirt","minLevel":120,"def":495,"mDef":495,"material":"Leather"},{"itemId":533321,"className":"TOP03_321","name":"Berthas Pangle Plate Armor","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Shirt","minLevel":120,"def":660,"mDef":330,"material":"Iron"},{"itemId":533322,"className":"TOP03_322","name":"Berthas Warmage Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":21826,"sellPrice":0,"equipType1":"Shirt","minLevel":170,"def":462,"mDef":924,"material":"Cloth"},{"itemId":533323,"className":"TOP03_323","name":"Berthas Eaglestar Leather Armor","type":"Equip","group":"Armor","weight":127,"maxStack":1,"price":21826,"sellPrice":0,"equipType1":"Shirt","minLevel":170,"def":693,"mDef":693,"material":"Leather"},{"itemId":533324,"className":"TOP03_324","name":"Berthas Nyx Knight Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":21826,"sellPrice":0,"equipType1":"Shirt","minLevel":170,"def":924,"mDef":462,"material":"Iron"},{"itemId":533325,"className":"TOP03_325","name":"Berthas Marone Robe","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Shirt","minLevel":75,"def":211,"mDef":422,"material":"Cloth"},{"itemId":533326,"className":"TOP03_326","name":"Berthas Prakeh Robe","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":29405,"sellPrice":0,"equipType1":"Shirt","minLevel":220,"def":594,"mDef":1188,"material":"Cloth"},{"itemId":533327,"className":"TOP03_327","name":"Berthas Razna Leather Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Shirt","minLevel":75,"def":316,"mDef":316,"material":"Leather"},{"itemId":533328,"className":"TOP03_328","name":"Berthas Keyarc Leather Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":29405,"sellPrice":0,"equipType1":"Shirt","minLevel":220,"def":891,"mDef":891,"material":"Leather"},{"itemId":533329,"className":"TOP03_329","name":"Berthas Barghar Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Shirt","minLevel":75,"def":422,"mDef":211,"material":"Iron"},{"itemId":533330,"className":"TOP03_330","name":"Berthas Suurit Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":29405,"sellPrice":0,"equipType1":"Shirt","minLevel":220,"def":1188,"mDef":594,"material":"Iron"},{"itemId":533331,"className":"TOP03_331","name":"Berthas Kalinis Robe","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Shirt","minLevel":270,"def":726,"mDef":1452,"material":"Cloth"},{"itemId":533332,"className":"TOP03_332","name":"Berthas Albinosas Leather Armor","type":"Equip","group":"Armor","weight":160,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Shirt","minLevel":270,"def":1089,"mDef":1089,"material":"Leather"},{"itemId":533333,"className":"TOP03_333","name":"Berthas Tajtanas Plate Armor","type":"Equip","group":"Armor","weight":230,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Shirt","minLevel":270,"def":1452,"mDef":726,"material":"Iron"},{"itemId":533334,"className":"TOP03_334","name":"Berthas Oksinis Robe","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Shirt","minLevel":315,"def":844,"mDef":1689,"material":"Cloth"},{"itemId":533335,"className":"TOP03_335","name":"Berthas Kaulas Leather Armor","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Shirt","minLevel":315,"def":1267,"mDef":1267,"material":"Leather"},{"itemId":533336,"className":"TOP03_336","name":"Berthas Krisius Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Shirt","minLevel":315,"def":1689,"mDef":844,"material":"Iron"},{"itemId":533337,"className":"TOP03_337","name":"Berthas Irellis Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":350,"def":937,"mDef":1874,"material":"Cloth"},{"itemId":533338,"className":"TOP03_338","name":"Berthas Jevenellis Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":350,"def":1405,"mDef":1405,"material":"Leather"},{"itemId":533339,"className":"TOP03_339","name":"Berthas Basticle Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":350,"def":1874,"mDef":937,"material":"Iron"},{"itemId":533340,"className":"TOP03_340","name":"Berthas Planeta Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Shirt","minLevel":380,"def":1016,"mDef":2032,"material":"Cloth"},{"itemId":533341,"className":"TOP03_341","name":"Berthas Ukas Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Shirt","minLevel":380,"def":1524,"mDef":1524,"material":"Leather"},{"itemId":533342,"className":"TOP03_342","name":"Berthas Galaktikos Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Shirt","minLevel":380,"def":2032,"mDef":1016,"material":"Iron"},{"itemId":533343,"className":"TOP03_343","name":"Berthas Pilgriste Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":1069,"mDef":2138,"material":"Cloth"},{"itemId":533344,"className":"TOP03_344","name":"Berthas Vymedzai Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":1603,"mDef":1603,"material":"Leather"},{"itemId":533345,"className":"TOP03_345","name":"Berthas Akmo Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":2138,"mDef":1069,"material":"Iron"},{"itemId":533346,"className":"TOP03_346","name":"Berthas Dysnai Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Shirt","minLevel":430,"def":1148,"mDef":2296,"material":"Cloth"},{"itemId":533347,"className":"TOP03_347","name":"Berthas Dysnai Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Shirt","minLevel":430,"def":1722,"mDef":1722,"material":"Leather"},{"itemId":533348,"className":"TOP03_348","name":"Berthas Dysnai Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Shirt","minLevel":430,"def":2296,"mDef":1148,"material":"Iron"},{"itemId":534102,"className":"TOP04_102","name":"Zachariel's Heart","type":"Equip","group":"Armor","weight":140,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":360,"mDef":360,"material":"Leather","fireRes":-41,"iceRes":-41,"lightningRes":-41},{"itemId":534104,"className":"TOP04_104","name":"Banshee Veil","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":13968,"sellPrice":2851,"equipType1":"Shirt","minLevel":120,"def":375,"mDef":375,"material":"Ghost"},{"itemId":534106,"className":"TOP04_106","name":"Lolopanther Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Shirt","minLevel":270,"def":1056,"mDef":2112,"material":"Cloth","earthRes":41},{"itemId":534107,"className":"TOP04_107","name":"Lolopanther Leather Armor","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Shirt","minLevel":270,"def":1584,"mDef":1584,"material":"Leather","earthRes":44},{"itemId":534108,"className":"TOP04_108","name":"Lolopanther Plate Mail","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Shirt","minLevel":270,"def":2112,"mDef":1056,"material":"Iron","earthRes":44},{"itemId":534109,"className":"TOP04_109","name":"Solmiki Robe","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":43920,"sellPrice":11656,"equipType1":"Shirt","minLevel":330,"def":1286,"mDef":2572,"material":"Cloth","holyRes":82},{"itemId":534110,"className":"TOP04_110","name":"Solmiki Leather Armor","type":"Equip","group":"Armor","weight":140,"maxStack":1,"price":43920,"sellPrice":11656,"equipType1":"Shirt","minLevel":330,"def":1929,"mDef":1929,"material":"Leather","holyRes":84},{"itemId":534111,"className":"TOP04_111","name":"Solmiki Plate Mail","type":"Equip","group":"Armor","weight":175,"maxStack":1,"price":43920,"sellPrice":11656,"equipType1":"Shirt","minLevel":330,"def":2572,"mDef":1286,"material":"Iron","slashDef":210,"holyRes":88},{"itemId":534112,"className":"TOP04_112","name":"Primus Alpra Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Shirt","minLevel":120,"def":375,"mDef":750,"material":"Cloth"},{"itemId":534113,"className":"TOP04_113","name":"Primus Eastern Leather Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Shirt","minLevel":120,"def":562,"mDef":562,"material":"Leather"},{"itemId":534114,"className":"TOP04_114","name":"Primus Pangle Plate Armor","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Shirt","minLevel":120,"def":750,"mDef":375,"material":"Iron"},{"itemId":534115,"className":"TOP04_115","name":"Primus Warmage Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":21826,"sellPrice":0,"equipType1":"Shirt","minLevel":170,"def":525,"mDef":1050,"material":"Cloth"},{"itemId":534116,"className":"TOP04_116","name":"Primus Eaglestar Leather Armor","type":"Equip","group":"Armor","weight":127,"maxStack":1,"price":21826,"sellPrice":0,"equipType1":"Shirt","minLevel":170,"def":787,"mDef":787,"material":"Leather"},{"itemId":534117,"className":"TOP04_117","name":"Primus Nyx Knight Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":21826,"sellPrice":0,"equipType1":"Shirt","minLevel":170,"def":1050,"mDef":525,"material":"Iron"},{"itemId":534118,"className":"TOP04_118","name":"Primus Marone Robe","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Shirt","minLevel":75,"def":240,"mDef":480,"material":"Cloth"},{"itemId":534119,"className":"TOP04_119","name":"Primus Prakeh Robe","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":29405,"sellPrice":0,"equipType1":"Shirt","minLevel":220,"def":675,"mDef":1350,"material":"Cloth"},{"itemId":534120,"className":"TOP04_120","name":"Primus Razna Leather Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Shirt","minLevel":75,"def":360,"mDef":360,"material":"Leather"},{"itemId":534121,"className":"TOP04_121","name":"Primus Keyarc Leather Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":29405,"sellPrice":0,"equipType1":"Shirt","minLevel":220,"def":1012,"mDef":1012,"material":"Leather"},{"itemId":534122,"className":"TOP04_122","name":"Primus Barghar Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Shirt","minLevel":75,"def":480,"mDef":240,"material":"Iron"},{"itemId":534123,"className":"TOP04_123","name":"Primus Suurit Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":29405,"sellPrice":0,"equipType1":"Shirt","minLevel":220,"def":1350,"mDef":675,"material":"Iron"},{"itemId":534124,"className":"TOP04_124","name":"Primus Kalinis Robe","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Shirt","minLevel":270,"def":825,"mDef":1650,"material":"Cloth"},{"itemId":534125,"className":"TOP04_125","name":"Primus Albinosas Leather Armor","type":"Equip","group":"Armor","weight":160,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Shirt","minLevel":270,"def":1237,"mDef":1237,"material":"Leather"},{"itemId":534126,"className":"TOP04_126","name":"Primus Tajtanas Plate Armor","type":"Equip","group":"Armor","weight":230,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Shirt","minLevel":270,"def":1650,"mDef":825,"material":"Iron"},{"itemId":534127,"className":"TOP04_127","name":"Primus Oksinis Robe","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Shirt","minLevel":315,"def":960,"mDef":1920,"material":"Cloth"},{"itemId":534128,"className":"TOP04_128","name":"Primus Kaulas Leather Armor","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Shirt","minLevel":315,"def":1440,"mDef":1440,"material":"Leather"},{"itemId":534129,"className":"TOP04_129","name":"Primus Krisius Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Shirt","minLevel":315,"def":1920,"mDef":960,"material":"Iron"},{"itemId":534130,"className":"TOP04_130","name":"Primus Irellis Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":350,"def":1065,"mDef":2130,"material":"Cloth"},{"itemId":534131,"className":"TOP04_131","name":"Primus Jevenellis Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":350,"def":1597,"mDef":1597,"material":"Leather"},{"itemId":534132,"className":"TOP04_132","name":"Primus Basticle Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":350,"def":2130,"mDef":1065,"material":"Iron"},{"itemId":534133,"className":"TOP04_133","name":"Laitas Robe","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":350,"def":1065,"mDef":2130,"addMDef":288,"material":"Cloth"},{"itemId":534134,"className":"TOP04_134","name":"Fietas Leather Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":350,"def":1597,"mDef":1597,"material":"Leather"},{"itemId":534135,"className":"TOP04_135","name":"Ausura Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":350,"def":2130,"mDef":1065,"addDef":288,"material":"Iron"},{"itemId":534136,"className":"TOP04_136","name":"Primus Planeta Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Shirt","minLevel":380,"def":1155,"mDef":2310,"material":"Cloth"},{"itemId":534137,"className":"TOP04_137","name":"Primus Ukas Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Shirt","minLevel":380,"def":1732,"mDef":1732,"material":"Leather"},{"itemId":534138,"className":"TOP04_138","name":"Primus Galaktikos Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Shirt","minLevel":380,"def":2310,"mDef":1155,"material":"Iron"},{"itemId":534139,"className":"TOP04_139","name":"Ignas Robe","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Shirt","minLevel":380,"def":1155,"mDef":2310,"material":"Cloth"},{"itemId":534140,"className":"TOP04_140","name":"Ignas Leather Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Shirt","minLevel":380,"def":1732,"mDef":1732,"material":"Leather"},{"itemId":534141,"className":"TOP04_141","name":"Ignas Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Shirt","minLevel":380,"def":2310,"mDef":1155,"material":"Iron"},{"itemId":534142,"className":"TOP04_142","name":"Primus Pilgriste Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":1215,"mDef":2430,"material":"Cloth"},{"itemId":534143,"className":"TOP04_143","name":"Primus Vymedzai Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":1822,"mDef":1822,"material":"Leather"},{"itemId":534144,"className":"TOP04_144","name":"Primus Akmo Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":2430,"mDef":1215,"material":"Iron"},{"itemId":534145,"className":"TOP04_145","name":"Skiaclipse Robe","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":1215,"mDef":2430,"addMDef":387,"material":"Cloth"},{"itemId":534146,"className":"TOP04_146","name":"Skiaclipse Leather Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":1822,"mDef":1822,"material":"Leather"},{"itemId":534147,"className":"TOP04_147","name":"Skiaclipse Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"pAtk":74,"def":2430,"mDef":1215,"material":"Iron"},{"itemId":534148,"className":"TOP04_148","name":"Skiaclipse Robe - Compassion","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":1215,"mDef":2430,"addMDef":160,"material":"Cloth"},{"itemId":534149,"className":"TOP04_149","name":"Skiaclipse Leather Armor - Assault","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":1822,"mDef":1822,"material":"Leather"},{"itemId":534150,"className":"TOP04_150","name":"Skiaclipse Plate Armor - Iron Wall","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":2430,"mDef":1215,"material":"Iron"},{"itemId":534151,"className":"TOP04_151","name":"Moringponia Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":2430,"mDef":1215,"material":"Iron"},{"itemId":534152,"className":"TOP04_152","name":"Moringponia Robe","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":1215,"mDef":2430,"material":"Cloth"},{"itemId":534153,"className":"TOP04_153","name":"Moringponia Leather Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":1822,"mDef":1822,"material":"Leather"},{"itemId":534154,"className":"TOP04_154","name":"Misrus Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":2430,"mDef":1215,"material":"Iron"},{"itemId":534155,"className":"TOP04_155","name":"Misrus Robe","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":1215,"mDef":2430,"material":"Cloth"},{"itemId":534156,"className":"TOP04_156","name":"Misrus Leather Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":1822,"mDef":1822,"material":"Leather"},{"itemId":534157,"className":"TOP04_157","name":"Primus Dysnai Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Shirt","minLevel":430,"def":1305,"mDef":2610,"material":"Cloth"},{"itemId":534158,"className":"TOP04_158","name":"Primus Dysnai Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Shirt","minLevel":430,"def":1957,"mDef":1957,"material":"Leather"},{"itemId":534159,"className":"TOP04_159","name":"Primus Dysnai Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Shirt","minLevel":430,"def":2610,"mDef":1305,"material":"Iron"},{"itemId":535101,"className":"TOP05_101","name":"Velcoffer Robe","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":360,"def":1401,"mDef":2803,"material":"Cloth"},{"itemId":535102,"className":"TOP05_102","name":"Velcoffer Leather Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":360,"def":2102,"mDef":2102,"material":"Leather"},{"itemId":535103,"className":"TOP05_103","name":"Velcoffer Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":360,"def":2803,"mDef":1401,"material":"Iron"},{"itemId":535104,"className":"TOP05_104","name":"Velcoffer Robe","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":360,"def":1401,"mDef":2803,"material":"Cloth"},{"itemId":535105,"className":"TOP05_105","name":"Velcoffer Leather Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":360,"def":2102,"mDef":2102,"material":"Leather"},{"itemId":535106,"className":"TOP05_106","name":"Velcoffer Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":360,"def":2803,"mDef":1401,"material":"Iron"},{"itemId":535107,"className":"TOP05_107","name":"Savinose Pilgriste Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":1555,"mDef":3110,"material":"Cloth"},{"itemId":535108,"className":"TOP05_108","name":"Savinose Vymedzai Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":2332,"mDef":2332,"material":"Leather"},{"itemId":535109,"className":"TOP05_109","name":"Savinose Akmo Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":3110,"mDef":1555,"material":"Iron"},{"itemId":535110,"className":"TOP05_110","name":"Skiaclipse Varna Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":3110,"mDef":1555,"material":"Iron"},{"itemId":535111,"className":"TOP05_111","name":"Skiaclipse Varna Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":1555,"mDef":3110,"material":"Cloth"},{"itemId":535112,"className":"TOP05_112","name":"Skiaclipse Varna Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":2332,"mDef":2332,"material":"Leather"},{"itemId":580001,"className":"NECK99_101","name":"Zemyna's Necklace","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":3,"maxAtk":3,"mAtk":3},{"itemId":580002,"className":"NECK99_102","name":"Zemyna Necklace (14 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":103,"maxAtk":103,"mAtk":103},{"itemId":580003,"className":"NECK99_103","name":"Warrior Necklace (3 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":111,"maxAtk":111,"mAtk":111},{"itemId":580004,"className":"NECK99_104","name":"Magician Necklace (3 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":111,"maxAtk":111,"mAtk":111},{"itemId":580005,"className":"NECK99_105","name":"Superior Warrior Necklace (15 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":135,"maxAtk":135,"mAtk":135,"addMDef":85},{"itemId":580006,"className":"NECK99_106","name":"Superior Magician Necklace (15 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":135,"maxAtk":135,"mAtk":135,"addDef":85},{"itemId":580007,"className":"NECK99_107","name":"Zemyna Necklace (30 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":103,"maxAtk":103,"mAtk":103},{"itemId":580008,"className":"NECK99_108","name":"Superior Warrior Necklace (7 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":135,"maxAtk":135,"mAtk":135,"addMDef":85},{"itemId":580009,"className":"NECK99_109","name":"Superior Magician Necklace (7 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":135,"maxAtk":135,"mAtk":135,"addDef":85},{"itemId":580010,"className":"NECK99_110","name":"Sugar Necklace(3 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":3,"maxAtk":3,"mAtk":3},{"itemId":580011,"className":"NECK99_111","name":"Anti Shield Necklace (7 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":135,"maxAtk":135,"mAtk":135,"addDef":600},{"itemId":580012,"className":"NECK99_112","name":"Anti Magic Necklace (7 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":135,"maxAtk":135,"mAtk":135,"addMDef":600},{"itemId":580013,"className":"NECK99_110_7d_1","name":"Sugar Necklace (Physical) (14 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":3,"maxAtk":3,"mAtk":3},{"itemId":580014,"className":"NECK99_110_7d_2","name":"Sugar Necklace (Magic) (14 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":3,"maxAtk":3,"mAtk":3},{"itemId":580015,"className":"NECK99_102_team","name":"Zemyna Necklace (14 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":103,"maxAtk":103,"mAtk":103},{"itemId":580016,"className":"NECK99_102_team_30d","name":"[Event] Adventurer's Necklace (30 Days)","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":14551,"sellPrice":3920,"equipType1":"Neck","minLevel":170,"minAtk":227,"maxAtk":227,"mAtk":227},{"itemId":580017,"className":"NECK99_102_guildshop_7d","name":"Adventurer's Necklace (7 Days)","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":14551,"sellPrice":3920,"equipType1":"Neck","minLevel":170,"minAtk":227,"maxAtk":227,"mAtk":227},{"itemId":580900,"className":"ForgeryRing","name":"Forgery_Ring","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":10000,"sellPrice":500},{"itemId":581101,"className":"NECK01_101","name":"HP Necklace","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":48,"equipType1":"Neck","minLevel":1,"minAtk":2,"maxAtk":2,"mAtk":2},{"itemId":581102,"className":"NECK01_102","name":"SP Necklace","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":48,"equipType1":"Neck","minLevel":1,"minAtk":2,"maxAtk":2,"mAtk":2},{"itemId":581103,"className":"NECK01_103","name":"STA Necklace","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":48,"equipType1":"Neck","minLevel":1,"minAtk":2,"maxAtk":2,"mAtk":2},{"itemId":581104,"className":"NECK01_104","name":"Panto Necklace","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":48,"equipType1":"Neck","minLevel":1,"minAtk":2,"maxAtk":2,"mAtk":2},{"itemId":581105,"className":"NECK01_105","name":"Bone Necklace","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":1728,"sellPrice":48,"equipType1":"Neck","minLevel":15,"minAtk":8,"maxAtk":8,"mAtk":8,"lightningRes":10},{"itemId":581106,"className":"NECK01_106","name":"Hogma Leather Necklace","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":1728,"sellPrice":48,"equipType1":"Neck","minLevel":15,"minAtk":8,"maxAtk":8,"mAtk":8},{"itemId":581107,"className":"NECK01_107","name":"Strange Charm","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":1728,"sellPrice":48,"equipType1":"Neck","minLevel":15,"minAtk":8,"maxAtk":8,"mAtk":8},{"itemId":581108,"className":"NECK01_108","name":"Defense Necklace","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":1728,"sellPrice":48,"equipType1":"Neck","minLevel":15,"minAtk":8,"maxAtk":8,"mAtk":8},{"itemId":581109,"className":"NECK01_109","name":"Novice Necklace","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":48,"equipType1":"Neck","minLevel":1,"minAtk":2,"maxAtk":2,"mAtk":2},{"itemId":581110,"className":"NECK01_110","name":"Vubbe Talisman","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":2,"maxAtk":2,"mAtk":2,"addDef":2},{"itemId":581111,"className":"NECK01_111","name":"Chupacabra Necklace","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":240,"sellPrice":103,"equipType1":"Neck","minLevel":1,"minAtk":2,"maxAtk":2,"pAtk":5,"mAtk":2},{"itemId":581112,"className":"NECK01_112","name":"Ronesa's Wooden Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":240,"sellPrice":103,"equipType1":"Neck","minLevel":1,"minAtk":2,"maxAtk":2,"mAtk":2},{"itemId":581113,"className":"NECK01_113","name":"Ronesa's Iron Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Neck","minLevel":15,"minAtk":8,"maxAtk":8,"mAtk":8},{"itemId":581114,"className":"NECK01_114","name":"Ronesa's Steel Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Neck","minLevel":15,"minAtk":8,"maxAtk":8,"mAtk":8},{"itemId":581115,"className":"NECK01_115","name":"Ronesa's Talisman","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":2184,"sellPrice":345,"equipType1":"Neck","minLevel":40,"minAtk":18,"maxAtk":18,"mAtk":18},{"itemId":581116,"className":"NECK01_116","name":"Ronesa's Klaipeda Chain","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":907,"equipType1":"Neck","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32},{"itemId":581117,"className":"NECK01_117","name":"Might Fedimian Chain","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Neck","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32},{"itemId":581118,"className":"NECK01_118","name":"Dex Fedimian Chain","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Neck","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32},{"itemId":581119,"className":"NECK01_119","name":"Health Fedimian Chain","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Neck","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32},{"itemId":581120,"className":"NECK01_120","name":"Intel Fedimian Chain","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Neck","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32},{"itemId":581121,"className":"NECK01_121","name":"Mind Fedimian Chain","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Neck","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32},{"itemId":581122,"className":"NECK01_122","name":"Jukopus Necklace","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":240,"sellPrice":345,"equipType1":"Neck","minLevel":1,"minAtk":2,"maxAtk":2,"mAtk":2,"addMAtk":5},{"itemId":581123,"className":"NECK01_123","name":"Vubbe Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Neck","minLevel":15,"minAtk":8,"maxAtk":8,"mAtk":8},{"itemId":581124,"className":"NECK01_124","name":"Iron Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Neck","minLevel":15,"minAtk":8,"maxAtk":8,"mAtk":8},{"itemId":581125,"className":"NECK01_125","name":"Steel Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Neck","minLevel":15,"minAtk":8,"maxAtk":8,"mAtk":8},{"itemId":581126,"className":"NECK01_126","name":"Talisman","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":2184,"sellPrice":907,"equipType1":"Neck","minLevel":40,"minAtk":18,"maxAtk":18,"mAtk":18},{"itemId":581127,"className":"NECK01_127","name":"Magic Pendant","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":2184,"sellPrice":907,"equipType1":"Neck","minLevel":40,"minAtk":18,"maxAtk":18,"mAtk":18},{"itemId":581128,"className":"NECK01_128","name":"Klaipeda Chain","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":2184,"sellPrice":907,"equipType1":"Neck","minLevel":40,"minAtk":18,"maxAtk":18,"mAtk":18},{"itemId":581129,"className":"NECK01_129","name":"Ivory Pendant","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1604,"equipType1":"Neck","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32},{"itemId":581130,"className":"NECK01_130","name":"Rune Pendant","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Neck","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32},{"itemId":581131,"className":"NECK01_131","name":"Silver Talisman","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1638,"equipType1":"Neck","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32},{"itemId":581132,"className":"NECK01_132","name":"Necklace of Gluttony","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":48,"equipType1":"Neck","minLevel":1,"minAtk":2,"maxAtk":2,"mAtk":2},{"itemId":581133,"className":"NECK01_133","name":"Necklace of Sloth","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":48,"equipType1":"Neck","minLevel":1,"minAtk":2,"maxAtk":2,"mAtk":2},{"itemId":581134,"className":"NECK01_134","name":"Necklace of Fury","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":48,"equipType1":"Neck","minLevel":1,"minAtk":2,"maxAtk":2,"mAtk":2},{"itemId":581135,"className":"NECK01_135","name":"Necklace of Deceit","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":48,"equipType1":"Neck","minLevel":1,"minAtk":2,"maxAtk":2,"mAtk":2},{"itemId":581136,"className":"NECK01_136","name":"Necklace of Greed","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":48,"equipType1":"Neck","minLevel":1,"minAtk":2,"maxAtk":2,"mAtk":2},{"itemId":581137,"className":"NECK01_137","name":"Ritual Necklace","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":5149,"sellPrice":1900,"equipType1":"Neck","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32},{"itemId":581138,"className":"NECK01_138","name":"Superior Ritual Necklace","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":9312,"sellPrice":2582,"equipType1":"Neck","minLevel":120,"minAtk":50,"maxAtk":50,"mAtk":50},{"itemId":581139,"className":"NECK01_139","name":"Key Pendant","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":9312,"sellPrice":2601,"equipType1":"Neck","minLevel":120,"minAtk":50,"maxAtk":50,"mAtk":50},{"itemId":581140,"className":"NECK01_140","name":"Superior Key Pendant","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":14551,"sellPrice":2970,"equipType1":"Neck","minLevel":170,"minAtk":70,"maxAtk":70,"mAtk":70},{"itemId":581141,"className":"NECK01_141","name":"Sage Necklace","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":14551,"sellPrice":3920,"equipType1":"Neck","minLevel":170,"minAtk":70,"maxAtk":70,"mAtk":70},{"itemId":581142,"className":"NECK01_142","name":"Superior Sage Necklace","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":14551,"sellPrice":3920,"equipType1":"Neck","minLevel":170,"minAtk":70,"maxAtk":70,"mAtk":70},{"itemId":581143,"className":"NECK01_143","name":"Guardian Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":19603,"sellPrice":4761,"equipType1":"Neck","minLevel":220,"minAtk":91,"maxAtk":91,"mAtk":91},{"itemId":581144,"className":"NECK01_144","name":"Superior Guardian Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":19603,"sellPrice":4780,"equipType1":"Neck","minLevel":220,"minAtk":91,"maxAtk":91,"mAtk":91},{"itemId":581145,"className":"NECK01_145","name":"Slightly Broken Anti-Dark Property Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Neck","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32,"darkRes":55},{"itemId":581146,"className":"NECK01_146","name":"Slightly Broken Anti-Cold Property Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Neck","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32,"iceRes":55},{"itemId":581147,"className":"NECK01_147","name":"Slightly Broken Kantravi Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Neck","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32},{"itemId":581148,"className":"NECK01_148","name":"Slightly Broken Tablet Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Neck","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32},{"itemId":582101,"className":"NECK02_101","name":"String Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":240,"sellPrice":345,"equipType1":"Neck","minLevel":1,"minAtk":2,"maxAtk":2,"mAtk":2},{"itemId":582102,"className":"NECK02_102","name":"Panto Talisman","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Neck","minLevel":15,"minAtk":9,"maxAtk":9,"mAtk":9},{"itemId":582103,"className":"NECK02_103","name":"Pyrlight Pendant","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":2184,"sellPrice":907,"equipType1":"Neck","minLevel":40,"minAtk":20,"maxAtk":20,"mAtk":20},{"itemId":582104,"className":"NECK02_104","name":"Cryolight Pendant","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":2184,"sellPrice":907,"equipType1":"Neck","minLevel":40,"minAtk":20,"maxAtk":20,"mAtk":20},{"itemId":582105,"className":"NECK02_105","name":"Magic Talisman","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1102,"equipType1":"Neck","minLevel":75,"minAtk":36,"maxAtk":36,"mAtk":36},{"itemId":582106,"className":"NECK02_106","name":"Strength Pendant","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Neck","minLevel":75,"minAtk":36,"maxAtk":36,"pAtk":10,"mAtk":36},{"itemId":582107,"className":"NECK02_107","name":"Pyluma Chain","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":9312,"sellPrice":1862,"equipType1":"Neck","minLevel":120,"minAtk":56,"maxAtk":56,"mAtk":56,"fireRes":21},{"itemId":582108,"className":"NECK02_108","name":"Icema Chain","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":9312,"sellPrice":1862,"equipType1":"Neck","minLevel":120,"minAtk":56,"maxAtk":56,"mAtk":56,"iceRes":21},{"itemId":582109,"className":"NECK02_109","name":"Poizma Chain","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":9312,"sellPrice":1862,"equipType1":"Neck","minLevel":120,"minAtk":56,"maxAtk":56,"mAtk":56,"poisonRes":21},{"itemId":582110,"className":"NECK02_110","name":"Lightna Chain","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":9312,"sellPrice":1862,"equipType1":"Neck","minLevel":120,"minAtk":56,"maxAtk":56,"mAtk":56,"lightningRes":21},{"itemId":582111,"className":"NECK02_111","name":"Health Stone","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":9312,"sellPrice":2582,"equipType1":"Neck","minLevel":120,"minAtk":56,"maxAtk":56,"mAtk":56},{"itemId":582112,"className":"NECK02_112","name":"Warrior Pendant","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":14551,"sellPrice":2950,"equipType1":"Neck","minLevel":170,"minAtk":78,"maxAtk":78,"pAtk":28,"mAtk":78,"fireRes":-30,"iceRes":-30},{"itemId":582113,"className":"NECK02_113","name":"Cyclops Eye","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1200,"sellPrice":907,"equipType1":"Neck","minLevel":40,"minAtk":20,"maxAtk":20,"mAtk":20,"darkRes":10},{"itemId":582114,"className":"NECK02_114","name":"Bone Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1200,"sellPrice":345,"equipType1":"Neck","minLevel":15,"minAtk":9,"maxAtk":9,"mAtk":9,"earthRes":7},{"itemId":582115,"className":"NECK02_115","name":"Carnivore Necklace","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1200,"sellPrice":345,"equipType1":"Neck","minLevel":15,"minAtk":9,"maxAtk":9,"mAtk":9,"poisonRes":9},{"itemId":582116,"className":"NECK02_116","name":"Kepa Pendant","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1728,"sellPrice":274,"equipType1":"Neck","minLevel":15,"minAtk":8,"maxAtk":8,"mAtk":8},{"itemId":582117,"className":"NECK02_117","name":"Formine Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Neck","minLevel":15,"minAtk":9,"maxAtk":9,"mAtk":9,"darkRes":3},{"itemId":582118,"className":"NECK02_118","name":"Nebelet Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":2184,"sellPrice":0,"equipType1":"Neck","minLevel":40,"minAtk":20,"maxAtk":20,"mAtk":20},{"itemId":582119,"className":"NECK02_119","name":"Bronza Medal","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Neck","minLevel":15,"minAtk":9,"maxAtk":9,"mAtk":9},{"itemId":582120,"className":"NECK02_120","name":"Argint Medal","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":4536,"sellPrice":907,"equipType1":"Neck","minLevel":45,"minAtk":22,"maxAtk":22,"mAtk":22},{"itemId":582121,"className":"NECK02_121","name":"Auru Medal","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Neck","minLevel":75,"minAtk":36,"maxAtk":36,"mAtk":36},{"itemId":582122,"className":"NECK02_122","name":"Platina Medal","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1638,"equipType1":"Neck","minLevel":75,"minAtk":36,"maxAtk":36,"mAtk":36},{"itemId":582123,"className":"NECK02_123","name":"Anti-Dark Property Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":9312,"sellPrice":1621,"equipType1":"Neck","minLevel":120,"minAtk":56,"maxAtk":56,"mAtk":56,"darkRes":61},{"itemId":582124,"className":"NECK02_124","name":"Anti-Cold Property Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":9312,"sellPrice":1621,"equipType1":"Neck","minLevel":120,"minAtk":56,"maxAtk":56,"mAtk":56,"iceRes":61},{"itemId":582125,"className":"NECK02_125","name":"Kantravi Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":9312,"sellPrice":1621,"equipType1":"Neck","minLevel":120,"minAtk":56,"maxAtk":56,"mAtk":56},{"itemId":582126,"className":"NECK02_126","name":"Tablet Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":9312,"sellPrice":1621,"equipType1":"Neck","minLevel":120,"minAtk":56,"maxAtk":56,"mAtk":56},{"itemId":582127,"className":"NECK02_127","name":"Agny Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":9312,"sellPrice":3920,"equipType1":"Neck","minLevel":120,"minAtk":56,"maxAtk":56,"mAtk":56,"iceRes":-35},{"itemId":582128,"className":"NECK02_128","name":"Electra Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":24000,"sellPrice":0,"equipType1":"Neck","minLevel":270,"minAtk":123,"maxAtk":123,"mAtk":123,"addMAtk":30,"earthRes":-40},{"itemId":582129,"className":"NECK02_129","name":"Ledas Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":24000,"sellPrice":0,"equipType1":"Neck","minLevel":270,"minAtk":123,"maxAtk":123,"mAtk":123,"addMAtk":30,"lightningRes":-40},{"itemId":582130,"className":"NECK02_130","name":"Fyrmes Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":345,"equipType1":"Neck","minLevel":75,"minAtk":36,"maxAtk":36,"mAtk":36,"addMAtk":10},{"itemId":582131,"className":"NECK02_131","name":"Predji Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":345,"equipType1":"Neck","minLevel":75,"minAtk":36,"maxAtk":36,"pAtk":10,"mAtk":36},{"itemId":582132,"className":"NECK02_132","name":"Zemej Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":24000,"sellPrice":0,"equipType1":"Neck","minLevel":270,"minAtk":123,"maxAtk":123,"mAtk":123,"addMAtk":30,"fireRes":-40},{"itemId":583101,"className":"NECK03_101","name":"Conqueror","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":14551,"sellPrice":3900,"equipType1":"Neck","minLevel":170,"minAtk":86,"maxAtk":86,"mAtk":86},{"itemId":583102,"className":"NECK03_102","name":"Petamion","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":9312,"sellPrice":2582,"equipType1":"Neck","minLevel":120,"minAtk":61,"maxAtk":61,"mAtk":61},{"itemId":583103,"className":"NECK03_103","name":"Electus","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":9312,"sellPrice":2582,"equipType1":"Neck","minLevel":120,"minAtk":61,"maxAtk":61,"mAtk":61,"fireRes":-15,"lightningRes":-60},{"itemId":583104,"className":"NECK03_104","name":"Saphie Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":2184,"sellPrice":907,"equipType1":"Neck","minLevel":40,"minAtk":22,"maxAtk":22,"mAtk":22,"addMDef":5,"fireRes":10},{"itemId":583105,"className":"NECK03_105","name":"Abomination Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":2184,"sellPrice":436,"equipType1":"Neck","minLevel":40,"minAtk":22,"maxAtk":22,"mAtk":22,"darkRes":5},{"itemId":583106,"className":"NECK03_106","name":"Maven Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":19603,"sellPrice":4876,"equipType1":"Neck","minLevel":220,"minAtk":111,"maxAtk":111,"mAtk":111,"darkRes":31},{"itemId":583107,"className":"NECK03_107","name":"Rhevisan Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":14551,"sellPrice":3112,"equipType1":"Neck","minLevel":170,"minAtk":86,"maxAtk":86,"mAtk":86},{"itemId":583110,"className":"NECK03_110","name":"Dhrag Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":24000,"sellPrice":6619,"equipType1":"Neck","minLevel":270,"minAtk":136,"maxAtk":136,"mAtk":136,"addMDef":5,"fireRes":10,"holyRes":10,"darkRes":5},{"itemId":583112,"className":"NECK03_112","name":"Kietas Necklace","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":23904,"sellPrice":3920,"equipType1":"Neck","minLevel":260,"minAtk":131,"maxAtk":131,"mAtk":131},{"itemId":583113,"className":"NECK03_113","name":"Pejnus Necklace","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":23904,"sellPrice":3920,"equipType1":"Neck","minLevel":260,"minAtk":131,"maxAtk":131,"mAtk":131},{"itemId":583114,"className":"NECK03_114","name":"Nelajmes Necklace","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":29280,"sellPrice":4780,"equipType1":"Neck","minLevel":300,"minAtk":150,"maxAtk":150,"mAtk":150},{"itemId":583115,"className":"NECK03_115","name":"Rupesciu Necklace","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":29280,"sellPrice":4780,"equipType1":"Neck","minLevel":300,"minAtk":150,"maxAtk":150,"mAtk":150},{"itemId":583116,"className":"NECK03_116","name":"Worspej Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":29280,"sellPrice":5856,"equipType1":"Neck","minLevel":315,"minAtk":158,"maxAtk":158,"mAtk":158,"darkRes":-50},{"itemId":583117,"className":"NECK03_117","name":"Symaere Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":29280,"sellPrice":5856,"equipType1":"Neck","minLevel":315,"minAtk":158,"maxAtk":158,"mAtk":158,"earthRes":-35},{"itemId":583118,"className":"NECK03_118","name":"Mejstra Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":19603,"sellPrice":5856,"equipType1":"Neck","minLevel":220,"minAtk":111,"maxAtk":111,"mAtk":111,"addMAtk":49},{"itemId":583119,"className":"NECK03_119","name":"Svijes Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":19603,"sellPrice":5856,"equipType1":"Neck","minLevel":220,"minAtk":111,"maxAtk":111,"mAtk":111},{"itemId":583120,"className":"NECK03_120","name":"Atikha Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":19603,"sellPrice":5856,"equipType1":"Neck","minLevel":220,"minAtk":111,"maxAtk":111,"pAtk":75,"mAtk":111},{"itemId":583121,"className":"NECK03_121","name":"Manosierdi Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":19603,"sellPrice":5856,"equipType1":"Neck","minLevel":220,"minAtk":111,"maxAtk":111,"mAtk":111},{"itemId":583122,"className":"NECK03_122","name":"General's Gift","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":29280,"sellPrice":6558,"equipType1":"Neck","minLevel":330,"minAtk":165,"maxAtk":165,"pAtk":32,"mAtk":165},{"itemId":583123,"className":"NECK03_123","name":"Gift of Demise","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":29280,"sellPrice":6558,"equipType1":"Neck","minLevel":330,"minAtk":165,"maxAtk":165,"mAtk":165,"addMAtk":32},{"itemId":583124,"className":"NECK03_124","name":"Graduation Gift","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":29280,"sellPrice":6558,"equipType1":"Neck","minLevel":330,"minAtk":165,"maxAtk":165,"mAtk":165},{"itemId":584101,"className":"NECK04_101","name":"Guardian","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Neck","minLevel":75,"minAtk":44,"maxAtk":44,"mAtk":44,"fireRes":25,"iceRes":25,"poisonRes":25},{"itemId":584102,"className":"NECK04_102","name":"Max Petamion","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":14551,"sellPrice":3920,"equipType1":"Neck","minLevel":170,"minAtk":98,"maxAtk":98,"mAtk":98},{"itemId":584103,"className":"NECK04_103","name":"Animus","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":14551,"sellPrice":3920,"equipType1":"Neck","minLevel":170,"minAtk":98,"maxAtk":98,"mAtk":98,"addMAtk":33},{"itemId":584104,"className":"NECK04_104","name":"Lolopanther Medal","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":24000,"sellPrice":5856,"equipType1":"Neck","minLevel":270,"minAtk":197,"maxAtk":197,"mAtk":197},{"itemId":584105,"className":"NECK04_105","name":"Terrallion","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":19603,"sellPrice":4761,"equipType1":"Neck","minLevel":220,"minAtk":111,"maxAtk":111,"mAtk":111},{"itemId":584106,"className":"NECK04_106","name":"Solmiki Medal","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":29280,"sellPrice":7771,"equipType1":"Neck","minLevel":330,"minAtk":240,"maxAtk":240,"mAtk":240},{"itemId":584107,"className":"NECK04_107","name":"Solmiki Medal (Leather)","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":29280,"sellPrice":7771,"equipType1":"Neck","minLevel":330,"minAtk":240,"maxAtk":240,"mAtk":240},{"itemId":584108,"className":"NECK04_108","name":"Solmiki Medal (Plate)","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":29280,"sellPrice":7771,"equipType1":"Neck","minLevel":330,"minAtk":240,"maxAtk":240,"mAtk":240},{"itemId":584109,"className":"NECK04_109","name":"Varpas Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":29280,"sellPrice":0,"equipType1":"Neck","minLevel":315,"minAtk":179,"maxAtk":179,"mAtk":179},{"itemId":584110,"className":"NECK04_110","name":"Verijo Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":29280,"sellPrice":0,"equipType1":"Neck","minLevel":315,"minAtk":179,"maxAtk":179,"mAtk":179},{"itemId":584111,"className":"NECK04_111","name":"Lynnki Sit Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":29280,"sellPrice":0,"equipType1":"Neck","minLevel":315,"minAtk":179,"maxAtk":179,"mAtk":179,"addMAtk":49},{"itemId":584112,"className":"NECK04_112","name":"Kite Moor Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":29280,"sellPrice":0,"equipType1":"Neck","minLevel":315,"minAtk":179,"maxAtk":179,"mAtk":179},{"itemId":584113,"className":"NECK04_113","name":"Pasiutes Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":29280,"sellPrice":0,"equipType1":"Neck","minLevel":315,"minAtk":179,"maxAtk":179,"pAtk":112,"mAtk":179},{"itemId":584114,"className":"NECK04_114","name":"Frieno Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":29280,"sellPrice":0,"equipType1":"Neck","minLevel":315,"minAtk":179,"maxAtk":179,"mAtk":179},{"itemId":584115,"className":"NECK04_115","name":"Nepagristas Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":33279,"sellPrice":0,"equipType1":"Neck","minLevel":350,"minAtk":199,"maxAtk":199,"mAtk":199},{"itemId":584116,"className":"NECK04_116","name":"Nematomas Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":33279,"sellPrice":0,"equipType1":"Neck","minLevel":350,"minAtk":199,"maxAtk":199,"mAtk":199,"addMaxAtk":123},{"itemId":584117,"className":"NECK04_117","name":"Rangovas Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":33279,"sellPrice":0,"equipType1":"Neck","minLevel":350,"minAtk":199,"maxAtk":199,"mAtk":199,"addMDef":152},{"itemId":584118,"className":"NECK04_118","name":"Abyss Irredian Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Neck","minLevel":380,"minAtk":216,"maxAtk":216,"mAtk":216,"addMaxAtk":235},{"itemId":584119,"className":"NECK04_119","name":"Cevisa Irredian Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Neck","minLevel":380,"minAtk":216,"maxAtk":216,"mAtk":216,"addDef":432},{"itemId":584120,"className":"NECK04_120","name":"Pyktis Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Neck","minLevel":400,"minAtk":227,"maxAtk":227,"mAtk":227},{"itemId":584121,"className":"NECK04_121","name":"Kantribe Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Neck","minLevel":400,"minAtk":227,"maxAtk":227,"mAtk":227,"addDef":600},{"itemId":584122,"className":"NECK04_122","name":"Juoda Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Neck","minLevel":400,"minAtk":227,"maxAtk":227,"mAtk":227},{"itemId":584123,"className":"NECK04_123","name":"Isbikimas Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":9312,"sellPrice":0,"equipType1":"Neck","minLevel":120,"minAtk":70,"maxAtk":70,"mAtk":70},{"itemId":585001,"className":"NECK05_001","name":"Drakonas Lynnki Sit Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Neck","minLevel":380,"minAtk":276,"maxAtk":276,"mAtk":276,"addMAtk":235},{"itemId":585002,"className":"NECK05_002","name":"Drakonas Kite Moor Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Neck","minLevel":380,"minAtk":276,"maxAtk":276,"mAtk":276},{"itemId":585003,"className":"NECK05_003","name":"Drakonas Pasiutes Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Neck","minLevel":380,"minAtk":276,"maxAtk":276,"mAtk":276},{"itemId":585004,"className":"NECK05_004","name":"Drakonas Frieno Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Neck","minLevel":380,"minAtk":276,"maxAtk":276,"mAtk":276},{"itemId":585005,"className":"NECK05_005","name":"Carnas Magija Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Neck","minLevel":380,"minAtk":276,"maxAtk":276,"mAtk":276,"addMAtk":315,"script":{"strArg":"Unique_Boss_Moringponia"}},{"itemId":585006,"className":"NECK05_006","name":"Carnas Zeisty Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Neck","minLevel":380,"minAtk":276,"maxAtk":276,"mAtk":276,"script":{"strArg":"Unique_Boss_Moringponia"}},{"itemId":585007,"className":"NECK05_007","name":"Carnas Pyginis Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Neck","minLevel":380,"minAtk":276,"maxAtk":276,"pAtk":315,"mAtk":276,"script":{"strArg":"Unique_Boss_Moringponia"}},{"itemId":585008,"className":"NECK05_008","name":"Moringponia Pyktis Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Neck","minLevel":400,"minAtk":291,"maxAtk":291,"mAtk":291},{"itemId":585009,"className":"NECK05_009","name":"Moringponia Kantribe Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Neck","minLevel":400,"minAtk":291,"maxAtk":291,"mAtk":291,"addDef":750},{"itemId":585010,"className":"NECK05_010","name":"Moringponia Juoda Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Neck","minLevel":400,"minAtk":291,"maxAtk":291,"mAtk":291},{"itemId":585011,"className":"NECK05_011","name":"Moringponia Triukas Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Neck","minLevel":400,"minAtk":291,"maxAtk":291,"mAtk":291},{"itemId":585012,"className":"NECK05_012","name":"Moringponia Isgarinti Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Neck","minLevel":400,"minAtk":291,"maxAtk":291,"mAtk":291},{"itemId":600001,"className":"BRC99_101","name":"Lord Hamondale's Bracelet","type":"Equip","group":"Armor","weight":5,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":3,"maxAtk":3,"mAtk":3,"addMAtk":33},{"itemId":600002,"className":"BRC99_102","name":"Knight Commander Uska's Bangle","type":"Equip","group":"Armor","weight":5,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":3,"maxAtk":3,"pAtk":33,"mAtk":3},{"itemId":600003,"className":"BRC99_103","name":"Lord Hamondale's Bracelet (30-Days)","type":"Equip","group":"Armor","weight":5,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":3,"maxAtk":3,"mAtk":3,"addMAtk":33},{"itemId":600004,"className":"BRC99_104","name":"Knight Commander Uska's Bangle (30-Days)","type":"Equip","group":"Armor","weight":5,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":3,"maxAtk":3,"pAtk":33,"mAtk":3},{"itemId":600005,"className":"BRC99_105","name":"Health Band (3 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":109,"maxAtk":109,"mAtk":109},{"itemId":600006,"className":"BRC99_106","name":"Psychic Band (3 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":109,"maxAtk":109,"mAtk":109},{"itemId":600007,"className":"BRC99_107","name":"Superior Health Band (15 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":132,"maxAtk":132,"mAtk":132},{"itemId":600008,"className":"BRC99_108","name":"Superior Psychic Band (15 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":132,"maxAtk":132,"mAtk":132},{"itemId":600009,"className":"BRC99_109","name":"Combat Bracelet (7 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":58,"maxAtk":58,"mAtk":58},{"itemId":600010,"className":"BRC99_110","name":"Guardian Bracelet (7 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":58,"maxAtk":58,"mAtk":58,"addMDef":300},{"itemId":600011,"className":"BRC99_111","name":"Resonating Bracelet (7 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":58,"maxAtk":58,"mAtk":58},{"itemId":600012,"className":"BRC99_112","name":"Superior Health Band (7 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":132,"maxAtk":132,"mAtk":132},{"itemId":600013,"className":"BRC99_113","name":"Superior Psychic Band (7 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":132,"maxAtk":132,"mAtk":132},{"itemId":600014,"className":"BRC99_114","name":"Sugar Bracelet(3 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":3,"maxAtk":3,"mAtk":3},{"itemId":600015,"className":"BRC99_115","name":"Sugar Band(3 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":3,"maxAtk":3,"mAtk":3},{"itemId":600016,"className":"BRC99_116","name":"Superior Spirit Band (7 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":3,"maxAtk":3,"mAtk":3},{"itemId":600017,"className":"BRC99_117","name":"Superior Saint Band (7 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":3,"maxAtk":3,"mAtk":3},{"itemId":600018,"className":"BRC99_118","name":"Superior Solid Band (7 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":3,"maxAtk":3,"mAtk":3},{"itemId":600019,"className":"BRC99_119","name":"Superior Epica Band (7 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":3,"maxAtk":3,"mAtk":3},{"itemId":600020,"className":"BRC99_120","name":"Superior Swift Band (7 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":3,"maxAtk":3,"mAtk":3},{"itemId":600021,"className":"BRC99_121","name":"Superior Spirit Band (15 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":3,"maxAtk":3,"mAtk":3},{"itemId":600022,"className":"BRC99_122","name":"Superior Saint Band (15 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":3,"maxAtk":3,"mAtk":3},{"itemId":600023,"className":"BRC99_123","name":"Superior Solid Band (15 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":3,"maxAtk":3,"mAtk":3},{"itemId":600024,"className":"BRC99_124","name":"Superior Epica Band (15 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":3,"maxAtk":3,"mAtk":3},{"itemId":600025,"className":"BRC99_125","name":"Superior Swift Band (15 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":3,"maxAtk":3,"mAtk":3},{"itemId":600026,"className":"BRC99_115_7d","name":"Sugar Bracelet (Physical) (14 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":3,"maxAtk":3,"pAtk":30,"mAtk":3},{"itemId":600027,"className":"BRC99_114_7d","name":"Sugar Bracelet (Magic) (14 Days)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":3,"maxAtk":3,"mAtk":3,"addMAtk":30},{"itemId":600028,"className":"BRC99_114_30d","name":"[Event] Adventurer's Bracelet (30 Days)","type":"Equip","group":"Armor","weight":5,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":227,"maxAtk":227,"mAtk":227},{"itemId":600029,"className":"BRC99_114_guildshop_7d","name":"Adventurer's Bracelet (7 Days)","type":"Equip","group":"Armor","weight":5,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":227,"maxAtk":227,"mAtk":227},{"itemId":600900,"className":"ForgeryNeck","name":"Forgery_Neck","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0},{"itemId":601105,"className":"BRC01_105","name":"Grooved Bangle","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Ring","minLevel":15,"minAtk":9,"maxAtk":9,"mAtk":9,"addMaxAtk":2},{"itemId":601110,"className":"BRC01_110","name":"Leather Bangle","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":240,"sellPrice":345,"equipType1":"Ring","minLevel":1,"minAtk":2,"maxAtk":2,"mAtk":2,"addMinAtk":2},{"itemId":601111,"className":"BRC01_111","name":"Light Ronesa's Bangle","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":240,"sellPrice":73,"equipType1":"Ring","minLevel":1,"minAtk":2,"maxAtk":2,"mAtk":2},{"itemId":601112,"className":"BRC01_112","name":"Superior Ronesa's Bangle","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Ring","minLevel":15,"minAtk":8,"maxAtk":8,"mAtk":8},{"itemId":601113,"className":"BRC01_113","name":"Ronesa's Ring Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Ring","minLevel":15,"minAtk":8,"maxAtk":8,"mAtk":8},{"itemId":601114,"className":"BRC01_114","name":"Ronesa's Noble Bracelet","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":2184,"sellPrice":345,"equipType1":"Ring","minLevel":40,"minAtk":18,"maxAtk":18,"mAtk":18},{"itemId":601115,"className":"BRC01_115","name":"Iron Bangle","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Ring","minLevel":15,"minAtk":9,"maxAtk":9,"mAtk":9,"addDef":2},{"itemId":601116,"className":"BRC01_116","name":"Superior Bangle of Health","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Ring","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32},{"itemId":601117,"className":"BRC01_117","name":"Superior Magical Bangle","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Ring","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32},{"itemId":601118,"className":"BRC01_118","name":"Superior Bangle of Accuracy","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Ring","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32},{"itemId":601119,"className":"BRC01_119","name":"Light Superior Bangle","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Ring","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32},{"itemId":601120,"className":"BRC01_120","name":"Light Iron Bangle","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":240,"sellPrice":345,"equipType1":"Ring","minLevel":1,"minAtk":2,"maxAtk":2,"mAtk":2,"addDef":1},{"itemId":601121,"className":"BRC01_121","name":"Ronesa's Klaipeda Bracelet","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":5149,"sellPrice":907,"equipType1":"Ring","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32},{"itemId":601122,"className":"BRC01_122","name":"Wooden Bangle","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":240,"sellPrice":147,"equipType1":"Ring","minLevel":1,"minAtk":2,"maxAtk":2,"mAtk":2},{"itemId":601123,"className":"BRC01_123","name":"Vubbe Bangle","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1728,"sellPrice":0,"equipType1":"Ring","minLevel":15,"minAtk":8,"maxAtk":8,"mAtk":8},{"itemId":601124,"className":"BRC01_124","name":"Superior Bangle","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Ring","minLevel":15,"minAtk":8,"maxAtk":8,"mAtk":8},{"itemId":601125,"className":"BRC01_125","name":"Ring Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Ring","minLevel":15,"minAtk":8,"maxAtk":8,"mAtk":8},{"itemId":601126,"className":"BRC01_126","name":"Noble Bracelet","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":2184,"sellPrice":907,"equipType1":"Ring","minLevel":40,"minAtk":18,"maxAtk":18,"mAtk":18},{"itemId":601127,"className":"BRC01_127","name":"Forest Bangle","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":2184,"sellPrice":907,"equipType1":"Ring","minLevel":40,"minAtk":18,"maxAtk":18,"mAtk":18},{"itemId":601128,"className":"BRC01_128","name":"Rokas Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":2184,"sellPrice":907,"equipType1":"Ring","minLevel":40,"minAtk":18,"maxAtk":18,"mAtk":18},{"itemId":601129,"className":"BRC01_129","name":"Klaipeda Bracelet","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":5149,"sellPrice":1102,"equipType1":"Ring","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32},{"itemId":601130,"className":"BRC01_130","name":"Stone Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Ring","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32},{"itemId":601131,"className":"BRC01_131","name":"Silver Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Ring","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32},{"itemId":601132,"className":"BRC01_132","name":"Pearl Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":9312,"sellPrice":1862,"equipType1":"Ring","minLevel":120,"minAtk":50,"maxAtk":50,"mAtk":50},{"itemId":601133,"className":"BRC01_133","name":"Superior Pearl Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":9312,"sellPrice":2582,"equipType1":"Ring","minLevel":120,"minAtk":50,"maxAtk":50,"mAtk":50},{"itemId":601134,"className":"BRC01_134","name":"Rune Bracelet","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":9312,"sellPrice":2601,"equipType1":"Ring","minLevel":120,"minAtk":50,"maxAtk":50,"mAtk":50},{"itemId":601135,"className":"BRC01_135","name":"Superior Rune Bracelet","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":14551,"sellPrice":2930,"equipType1":"Ring","minLevel":170,"minAtk":70,"maxAtk":70,"mAtk":70},{"itemId":601136,"className":"BRC01_136","name":"Star Bracelet","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":14551,"sellPrice":3900,"equipType1":"Ring","minLevel":170,"minAtk":70,"maxAtk":70,"mAtk":70},{"itemId":601137,"className":"BRC01_137","name":"Superior Star Bracelet","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":14551,"sellPrice":3920,"equipType1":"Ring","minLevel":170,"minAtk":70,"maxAtk":70,"mAtk":70},{"itemId":601138,"className":"BRC01_138","name":"Gem Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":19603,"sellPrice":3955,"equipType1":"Ring","minLevel":220,"minAtk":91,"maxAtk":91,"mAtk":91},{"itemId":601139,"className":"BRC01_139","name":"Superior Gem Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":19603,"sellPrice":4780,"equipType1":"Ring","minLevel":220,"minAtk":91,"maxAtk":91,"mAtk":91},{"itemId":601140,"className":"BRC01_140","name":"Broken Anti-Dark Property Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Ring","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32,"darkRes":55},{"itemId":601141,"className":"BRC01_141","name":"Broken Anti-Cold Property Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Ring","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32,"iceRes":55},{"itemId":601142,"className":"BRC01_142","name":"Broken Kantravi Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Ring","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32},{"itemId":601143,"className":"BRC01_143","name":"Broken Tablet Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Ring","minLevel":75,"minAtk":32,"maxAtk":32,"mAtk":32},{"itemId":602101,"className":"BRC02_101","name":"Crystal Bangle","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Ring","minLevel":15,"minAtk":9,"maxAtk":9,"mAtk":9,"addMaxAtk":10},{"itemId":602102,"className":"BRC02_102","name":"Shine Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Ring","minLevel":15,"minAtk":9,"maxAtk":9,"mAtk":9},{"itemId":602103,"className":"BRC02_103","name":"Battle Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":2184,"sellPrice":907,"equipType1":"Ring","minLevel":40,"minAtk":20,"maxAtk":20,"pAtk":5,"mAtk":20,"addDef":1},{"itemId":602104,"className":"BRC02_104","name":"Poison Bangle","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":2184,"sellPrice":907,"equipType1":"Ring","minLevel":40,"minAtk":20,"maxAtk":20,"mAtk":20},{"itemId":602105,"className":"BRC02_105","name":"Plants Bracelet","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":5149,"sellPrice":1102,"equipType1":"Ring","minLevel":75,"minAtk":36,"maxAtk":36,"mAtk":36},{"itemId":602106,"className":"BRC02_106","name":"Control Bangle","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Ring","minLevel":75,"minAtk":36,"maxAtk":36,"mAtk":36},{"itemId":602107,"className":"BRC02_107","name":"Hunter Bangle","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":9312,"sellPrice":1900,"equipType1":"Ring","minLevel":120,"minAtk":56,"maxAtk":56,"mAtk":56},{"itemId":602108,"className":"BRC02_108","name":"Bracer of Archer","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":9312,"sellPrice":2582,"equipType1":"Ring","minLevel":120,"minAtk":56,"maxAtk":56,"mAtk":56,"addMinAtk":11},{"itemId":602109,"className":"BRC02_109","name":"Wizard Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":14551,"sellPrice":2910,"equipType1":"Ring","minLevel":170,"minAtk":78,"maxAtk":78,"mAtk":78,"addMAtk":32},{"itemId":602110,"className":"BRC02_110","name":"Rapid Bangle","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":14551,"sellPrice":3900,"equipType1":"Ring","minLevel":170,"minAtk":78,"maxAtk":78,"mAtk":78},{"itemId":602111,"className":"BRC02_111","name":"Glass Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":14551,"sellPrice":3920,"equipType1":"Ring","minLevel":170,"minAtk":78,"maxAtk":78,"mAtk":78,"addMDef":20},{"itemId":602112,"className":"BRC02_112","name":"Merregina Bangle","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Ring","minLevel":15,"minAtk":9,"maxAtk":9,"mAtk":9,"poisonRes":9},{"itemId":602113,"className":"BRC02_113","name":"Bearkaras Bracelet","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":5149,"sellPrice":1245,"equipType1":"Ring","minLevel":75,"minAtk":36,"maxAtk":36,"pAtk":8,"mAtk":36},{"itemId":602114,"className":"BRC02_114","name":"Novice Bangle","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":240,"sellPrice":48,"equipType1":"Ring","minLevel":1,"minAtk":2,"maxAtk":2,"mAtk":2},{"itemId":602115,"className":"BRC02_115","name":"Kranto Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":19603,"sellPrice":0,"equipType1":"Ring","minLevel":220,"minAtk":101,"maxAtk":101,"mAtk":101},{"itemId":602116,"className":"BRC02_116","name":"Bronza Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":1728,"sellPrice":345,"equipType1":"Ring","minLevel":15,"minAtk":9,"maxAtk":9,"mAtk":9},{"itemId":602117,"className":"BRC02_117","name":"Argint Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":2184,"sellPrice":907,"equipType1":"Ring","minLevel":40,"minAtk":20,"maxAtk":20,"mAtk":20},{"itemId":602118,"className":"BRC02_118","name":"Auru Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Ring","minLevel":75,"minAtk":36,"maxAtk":36,"mAtk":36},{"itemId":602119,"className":"BRC02_119","name":"Platina Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1638,"equipType1":"Ring","minLevel":75,"minAtk":36,"maxAtk":36,"mAtk":36},{"itemId":602120,"className":"BRC02_120","name":"Anti-Dark Property Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":9312,"sellPrice":1621,"equipType1":"Ring","minLevel":120,"minAtk":56,"maxAtk":56,"mAtk":56,"darkRes":61},{"itemId":602121,"className":"BRC02_121","name":"Anti-Cold Property Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":9312,"sellPrice":1621,"equipType1":"Ring","minLevel":120,"minAtk":56,"maxAtk":56,"mAtk":56,"iceRes":61},{"itemId":602122,"className":"BRC02_122","name":"Kantravi Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":9312,"sellPrice":1621,"equipType1":"Ring","minLevel":120,"minAtk":56,"maxAtk":56,"mAtk":56},{"itemId":602123,"className":"BRC02_123","name":"Tablet Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":9312,"sellPrice":1621,"equipType1":"Ring","minLevel":120,"minAtk":56,"maxAtk":56,"mAtk":56},{"itemId":602124,"className":"BRC02_124","name":"Fyrmes Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":345,"equipType1":"Ring","minLevel":75,"minAtk":36,"maxAtk":36,"mAtk":36,"addMAtk":10},{"itemId":602125,"className":"BRC02_125","name":"Predji Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":345,"equipType1":"Ring","minLevel":75,"minAtk":36,"maxAtk":36,"pAtk":10,"mAtk":36},{"itemId":603101,"className":"BRC03_101","name":"Gladiator Band","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":5149,"sellPrice":1862,"equipType1":"Ring","minLevel":75,"minAtk":39,"maxAtk":39,"mAtk":39},{"itemId":603102,"className":"BRC03_102","name":"Bracelet of Linne","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":9312,"sellPrice":2582,"equipType1":"Ring","minLevel":120,"minAtk":61,"maxAtk":61,"mAtk":61,"poisonRes":10},{"itemId":603103,"className":"BRC03_103","name":"Pora","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":19603,"sellPrice":4838,"equipType1":"Ring","minLevel":220,"minAtk":111,"maxAtk":111,"mAtk":111,"darkRes":21},{"itemId":603104,"className":"BRC03_104","name":"Pore","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":19603,"sellPrice":4838,"equipType1":"Ring","minLevel":220,"minAtk":111,"maxAtk":111,"mAtk":111,"holyRes":21},{"itemId":603105,"className":"BRC03_105","name":"Zachariel Bangle","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":5149,"sellPrice":1621,"equipType1":"Ring","minLevel":75,"minAtk":39,"maxAtk":39,"mAtk":39},{"itemId":603106,"className":"BRC03_106","name":"Abomination Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":2184,"sellPrice":436,"equipType1":"Ring","minLevel":40,"minAtk":22,"maxAtk":22,"mAtk":22,"darkRes":4},{"itemId":603107,"className":"BRC03_107","name":"Elements Dance","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":14551,"sellPrice":48,"equipType1":"Ring","minLevel":170,"minAtk":86,"maxAtk":86,"mAtk":86,"addMDef":-105,"fireRes":147,"iceRes":147,"lightningRes":147,"poisonRes":147},{"itemId":603108,"className":"BRC03_108","name":"Archmage Bangle","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":19603,"sellPrice":4780,"equipType1":"Ring","minLevel":220,"minAtk":111,"maxAtk":111,"mAtk":111,"addMAtk":40},{"itemId":603109,"className":"BRC03_109","name":"Rhevisan Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":14551,"sellPrice":3112,"equipType1":"Ring","minLevel":170,"minAtk":86,"maxAtk":86,"mAtk":86,"addMDef":20},{"itemId":603110,"className":"BRC03_110","name":"Smurto Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":23904,"sellPrice":3920,"equipType1":"Ring","minLevel":260,"minAtk":131,"maxAtk":131,"pAtk":18,"mAtk":131},{"itemId":603111,"className":"BRC03_111","name":"Ismintis Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":23904,"sellPrice":3900,"equipType1":"Ring","minLevel":260,"minAtk":131,"maxAtk":131,"mAtk":131,"addMAtk":40},{"itemId":603112,"className":"BRC03_112","name":"Stipiria Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29280,"sellPrice":3920,"equipType1":"Ring","minLevel":300,"minAtk":150,"maxAtk":150,"pAtk":25,"mAtk":150},{"itemId":603113,"className":"BRC03_113","name":"Svenus Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29280,"sellPrice":3920,"equipType1":"Ring","minLevel":300,"minAtk":150,"maxAtk":150,"mAtk":150,"addMAtk":45},{"itemId":603114,"className":"BRC03_114","name":"Worspej Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29280,"sellPrice":4800,"equipType1":"Ring","minLevel":315,"minAtk":158,"maxAtk":158,"mAtk":158,"addDef":10},{"itemId":603115,"className":"BRC03_115","name":"Viproti Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29280,"sellPrice":4800,"equipType1":"Ring","minLevel":315,"minAtk":158,"maxAtk":158,"mAtk":158,"addDef":15},{"itemId":603116,"className":"BRC03_116","name":"Basme Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29280,"sellPrice":3920,"equipType1":"Ring","minLevel":315,"minAtk":158,"maxAtk":158,"mAtk":158,"addDef":10,"fireRes":87,"iceRes":-80,"earthRes":15},{"itemId":603117,"className":"BRC03_117","name":"Symaere Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29280,"sellPrice":3920,"equipType1":"Ring","minLevel":315,"minAtk":158,"maxAtk":158,"mAtk":158,"addDef":10,"iceRes":15,"holyRes":86,"darkRes":-70},{"itemId":603118,"className":"BRC03_118","name":"Mejstra Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":19603,"sellPrice":1862,"equipType1":"Ring","minLevel":220,"minAtk":111,"maxAtk":111,"mAtk":111,"addMAtk":37},{"itemId":603119,"className":"BRC03_119","name":"Svijes Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":19603,"sellPrice":1862,"equipType1":"Ring","minLevel":220,"minAtk":111,"maxAtk":111,"mAtk":111,"addMAtk":12},{"itemId":603120,"className":"BRC03_120","name":"Dhrag Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":24000,"sellPrice":5856,"equipType1":"Ring","minLevel":270,"minAtk":136,"maxAtk":136,"mAtk":136,"addMDef":20},{"itemId":603121,"className":"BRC03_121","name":"Atikha Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":19603,"sellPrice":1862,"equipType1":"Ring","minLevel":220,"minAtk":111,"maxAtk":111,"mAtk":111},{"itemId":603122,"className":"BRC03_122","name":"Manosierdi Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":19603,"sellPrice":1862,"equipType1":"Ring","minLevel":220,"minAtk":111,"maxAtk":111,"mAtk":111},{"itemId":603123,"className":"BRC03_123","name":"Achiva Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29280,"sellPrice":1862,"equipType1":"Ring","minLevel":315,"minAtk":158,"maxAtk":158,"mAtk":158},{"itemId":603124,"className":"BRC03_124","name":"Mirti Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29280,"sellPrice":1862,"equipType1":"Ring","minLevel":315,"minAtk":158,"maxAtk":158,"pAtk":23,"mAtk":158},{"itemId":603125,"className":"BRC03_125","name":"Ufhor Pearl Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29280,"sellPrice":1862,"equipType1":"Ring","minLevel":315,"minAtk":158,"maxAtk":158,"mAtk":158,"addMAtk":31},{"itemId":603126,"className":"BRC03_126","name":"Pik'o Pearl Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29280,"sellPrice":1862,"equipType1":"Ring","minLevel":315,"minAtk":158,"maxAtk":158,"mAtk":158},{"itemId":603127,"className":"BRC03_127","name":"Himil Legacy","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29280,"sellPrice":2234,"equipType1":"Ring","minLevel":330,"minAtk":165,"maxAtk":165,"mAtk":165},{"itemId":603128,"className":"BRC03_128","name":"Schaffen Bracelet Fragment","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29280,"sellPrice":2234,"equipType1":"Ring","minLevel":330,"minAtk":165,"maxAtk":165,"mAtk":165},{"itemId":603129,"className":"BRC03_129","name":"Heretic's Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29280,"sellPrice":2234,"equipType1":"Ring","minLevel":330,"minAtk":165,"maxAtk":165,"mAtk":165},{"itemId":604101,"className":"BRC04_101","name":"Sissel Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":14551,"sellPrice":4761,"equipType1":"Ring","minLevel":170,"minAtk":98,"maxAtk":98,"pAtk":21,"mAtk":98},{"itemId":604102,"className":"BRC04_102","name":"Lolopanther Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":24000,"sellPrice":5856,"equipType1":"Ring","minLevel":270,"minAtk":197,"maxAtk":197,"mAtk":197,"addDef":23,"darkRes":45},{"itemId":604103,"className":"BRC04_103","name":"Phada","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":19603,"sellPrice":3920,"equipType1":"Ring","minLevel":220,"minAtk":126,"maxAtk":126,"pAtk":30,"mAtk":126},{"itemId":604104,"className":"BRC04_104","name":"Solmiki Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":29280,"sellPrice":7771,"equipType1":"Ring","minLevel":330,"minAtk":240,"maxAtk":240,"mAtk":240,"addDef":49,"holyRes":91,"darkRes":91},{"itemId":604105,"className":"BRC04_105","name":"Solmiki Bracelet (Leather)","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":29280,"sellPrice":7771,"equipType1":"Ring","minLevel":330,"minAtk":240,"maxAtk":240,"mAtk":240,"addDef":49,"holyRes":91,"darkRes":91},{"itemId":604106,"className":"BRC04_106","name":"Solmiki Bracelet (Plate)","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":29280,"sellPrice":7771,"equipType1":"Ring","minLevel":330,"minAtk":240,"maxAtk":240,"mAtk":240,"addDef":49,"holyRes":91,"darkRes":91},{"itemId":604107,"className":"BRC04_107","name":"Varpas Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":29280,"sellPrice":6655,"equipType1":"Ring","minLevel":315,"minAtk":179,"maxAtk":179,"mAtk":179,"addDef":-25},{"itemId":604108,"className":"BRC04_108","name":"Verijo Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":29280,"sellPrice":6655,"equipType1":"Ring","minLevel":315,"minAtk":179,"maxAtk":179,"mAtk":179,"addMAtk":60,"addDef":-20},{"itemId":604109,"className":"BRC04_109","name":"Lynnki Sit Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":29280,"sellPrice":6655,"equipType1":"Ring","minLevel":315,"minAtk":179,"maxAtk":179,"mAtk":179,"addMAtk":37},{"itemId":604110,"className":"BRC04_110","name":"Kite Moor Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":29280,"sellPrice":6655,"equipType1":"Ring","minLevel":315,"minAtk":179,"maxAtk":179,"mAtk":179,"addMAtk":17},{"itemId":604111,"className":"BRC04_111","name":"Pasiutes Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":29280,"sellPrice":6655,"equipType1":"Ring","minLevel":315,"minAtk":179,"maxAtk":179,"mAtk":179},{"itemId":604112,"className":"BRC04_112","name":"Frieno Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":29280,"sellPrice":6655,"equipType1":"Ring","minLevel":315,"minAtk":179,"maxAtk":179,"mAtk":179},{"itemId":604113,"className":"BRC04_113","name":"Akro Galia Bangle","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":24000,"sellPrice":4780,"equipType1":"Ring","minLevel":270,"minAtk":154,"maxAtk":154,"mAtk":154,"addMAtk":40},{"itemId":604114,"className":"BRC04_114","name":"Aiskus Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":24000,"sellPrice":4780,"equipType1":"Ring","minLevel":270,"minAtk":154,"maxAtk":154,"mAtk":154},{"itemId":604115,"className":"BRC04_115","name":"Nepagristas Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33279,"sellPrice":4780,"equipType1":"Ring","minLevel":350,"minAtk":199,"maxAtk":199,"pAtk":30,"mAtk":199},{"itemId":604116,"className":"BRC04_116","name":"Nematomas Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33279,"sellPrice":4780,"equipType1":"Ring","minLevel":350,"minAtk":199,"maxAtk":199,"mAtk":199,"addMaxAtk":125},{"itemId":604117,"className":"BRC04_117","name":"Rangovas Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33279,"sellPrice":4780,"equipType1":"Ring","minLevel":350,"minAtk":199,"maxAtk":199,"mAtk":199,"addDef":40},{"itemId":604118,"className":"BRC04_118","name":"Abyss Irredian Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":34194,"sellPrice":4780,"equipType1":"Ring","minLevel":380,"minAtk":216,"maxAtk":216,"mAtk":216},{"itemId":604119,"className":"BRC04_119","name":"Cevisa Irredian Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":34194,"sellPrice":4780,"equipType1":"Ring","minLevel":380,"minAtk":216,"maxAtk":216,"mAtk":216,"addMDef":235},{"itemId":604120,"className":"BRC04_120","name":"Pyktis Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":38765,"sellPrice":6655,"equipType1":"Ring","minLevel":400,"minAtk":227,"maxAtk":227,"mAtk":227},{"itemId":604121,"className":"BRC04_121","name":"Kantribe Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":38765,"sellPrice":6655,"equipType1":"Ring","minLevel":400,"minAtk":227,"maxAtk":227,"mAtk":227,"addDef":200},{"itemId":604122,"className":"BRC04_122","name":"Juoda Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":38765,"sellPrice":6655,"equipType1":"Ring","minLevel":400,"minAtk":227,"maxAtk":227,"mAtk":227},{"itemId":604123,"className":"BRC04_123","name":"Isbikimas Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":14551,"sellPrice":6655,"equipType1":"Ring","minLevel":170,"minAtk":98,"maxAtk":98,"pAtk":50,"mAtk":98,"addMAtk":50},{"itemId":605001,"className":"BRC05_001","name":"Drakonas Lynnki Sit Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":34194,"sellPrice":6655,"equipType1":"Ring","minLevel":380,"minAtk":276,"maxAtk":276,"mAtk":276},{"itemId":605002,"className":"BRC05_002","name":"Drakonas Kite Moor Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":34194,"sellPrice":6655,"equipType1":"Ring","minLevel":380,"minAtk":276,"maxAtk":276,"mAtk":276},{"itemId":605003,"className":"BRC05_003","name":"Drakonas Pasiutes Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":34194,"sellPrice":6655,"equipType1":"Ring","minLevel":380,"minAtk":276,"maxAtk":276,"mAtk":276},{"itemId":605004,"className":"BRC05_004","name":"Drakonas Frieno Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":34194,"sellPrice":6655,"equipType1":"Ring","minLevel":380,"minAtk":276,"maxAtk":276,"mAtk":276},{"itemId":605005,"className":"BRC05_005","name":"Carnas Magija Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":34194,"sellPrice":6655,"equipType1":"Ring","minLevel":380,"minAtk":276,"maxAtk":276,"mAtk":276,"addMAtk":75},{"itemId":605006,"className":"BRC05_006","name":"Carnas Zeisty Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":34194,"sellPrice":6655,"equipType1":"Ring","minLevel":380,"minAtk":276,"maxAtk":276,"mAtk":276},{"itemId":605007,"className":"BRC05_007","name":"Carnas Pyginis Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":34194,"sellPrice":6655,"equipType1":"Ring","minLevel":380,"minAtk":276,"maxAtk":276,"pAtk":75,"mAtk":276},{"itemId":605008,"className":"BRC05_008","name":"Moringponia Pyktis Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":38765,"sellPrice":6655,"equipType1":"Ring","minLevel":400,"minAtk":291,"maxAtk":291,"mAtk":291},{"itemId":605009,"className":"BRC05_009","name":"Moringponia Kantribe Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":38765,"sellPrice":6655,"equipType1":"Ring","minLevel":400,"minAtk":291,"maxAtk":291,"mAtk":291,"addDef":250},{"itemId":605010,"className":"BRC05_010","name":"Moringponia Juoda Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":38765,"sellPrice":6655,"equipType1":"Ring","minLevel":400,"minAtk":291,"maxAtk":291,"mAtk":291},{"itemId":605011,"className":"BRC05_011","name":"Moringponia Triukas Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":38765,"sellPrice":6655,"equipType1":"Ring","minLevel":400,"minAtk":291,"maxAtk":291,"mAtk":291},{"itemId":605012,"className":"BRC05_012","name":"Moringponia Isgarinti Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":38765,"sellPrice":6655,"equipType1":"Ring","minLevel":400,"minAtk":291,"maxAtk":291,"mAtk":291},{"itemId":609901,"className":"BRC_TEST_01","name":"Skill 1 Bracelet","type":"Equip","group":"Armor","weight":5,"maxStack":1,"price":2000,"sellPrice":100,"equipType1":"Ring","minLevel":1,"minAtk":2,"maxAtk":2,"mAtk":2},{"itemId":609902,"className":"BRC_TEST_02","name":"Skill 2 Bracelet","type":"Equip","group":"Armor","weight":5,"maxStack":1,"price":2000,"sellPrice":100,"equipType1":"Ring","minLevel":1,"minAtk":2,"maxAtk":2,"mAtk":2},{"itemId":609903,"className":"BRC_TEST_03","name":"Skill 3 Bracelet","type":"Equip","group":"Armor","weight":5,"maxStack":1,"price":2000,"sellPrice":100,"equipType1":"Ring","minLevel":1,"minAtk":2,"maxAtk":2,"mAtk":2},{"itemId":609904,"className":"BRC_TEST_04","name":"Skill 4 Bracelet","type":"Equip","group":"Armor","weight":5,"maxStack":1,"price":2000,"sellPrice":100,"equipType1":"Ring","minLevel":1,"minAtk":2,"maxAtk":2,"mAtk":2},{"itemId":620101,"className":"costume_Char1_2","name":"Highlander Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620102,"className":"costume_Char1_3","name":"Peltasta Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620103,"className":"costume_Char1_4","name":"Hoplite Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620104,"className":"costume_Char1_5","name":"Centurion Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620105,"className":"costume_Char1_6","name":"Barbarian Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620106,"className":"costume_Char1_7","name":"Cataphract Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620107,"className":"costume_Char1_8","name":"Corsair Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620108,"className":"costume_Char1_9","name":"Doppelsoeldner Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620109,"className":"costume_Char1_10","name":"Rodelero Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620110,"className":"costume_Char1_11","name":"Squire Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620111,"className":"costume_Char1_12","name":"Murmillo Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620112,"className":"costume_Char1_13","name":"Shinobi Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620113,"className":"costume_Char1_14","name":"Fencer Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620114,"className":"costume_Char1_15","name":"Dragoon Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620115,"className":"costume_Char1_16","name":"Templar Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620116,"className":"costume_Char1_17","name":"Lancer Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620117,"className":"costume_Char1_19","name":"Matador Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620118,"className":"costume_Char1_19_sp","name":"Matador Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620119,"className":"costume_Char1_19_2","name":"Matador Belbeast Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620120,"className":"costume_Char1_19_2_sp","name":"Matador Belbeast Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620121,"className":"costume_Char1_19_3","name":"Matador Bellanimal Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620122,"className":"costume_Char1_19_3_sp","name":"Matador Bellanimal Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620123,"className":"costume_Char1_18_1","name":"Retiarius Tiro Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620124,"className":"costume_Char1_18_1_sp","name":"Retiarius Tiro Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620125,"className":"costume_Char1_18_2","name":"Retiarius Provocator Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620126,"className":"costume_Char1_18_2_sp","name":"Retiarius Provocator Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620127,"className":"costume_Char1_18_3","name":"Retiarius Primus Palus Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620128,"className":"costume_Char1_18_3_sp","name":"Retiarius Primus Palus Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620129,"className":"costume_Char1_20","name":"Nak Muay Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620131,"className":"costume_Char1_19_4_sp","name":"Matador Velbestiary Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620132,"className":"costume_Char1_18_4","name":"Retiarius Rudiarius Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620133,"className":"costume_Char1_18_4_sp","name":"Retiarius Rudiarius Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620137,"className":"costume_Char1_22_1","name":"Blossom Blader Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620138,"className":"costume_Char1_22_1_sp","name":"Blossom Blader Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620139,"className":"costume_Char1_22_2","name":"Blossom Blader Red Blossom Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620140,"className":"costume_Char1_22_2_sp","name":"Blossom Blader Red Blossom Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620141,"className":"costume_Char1_22_2_event","name":"[Event] Blossom Blader Red Blossom Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620142,"className":"costume_Char1_23_1","name":"Luchador Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":620143,"className":"costume_Char1_23_2","name":"Luchador Plata Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621101,"className":"costume_Char2_2","name":"Pyromancer Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621102,"className":"costume_Char2_3","name":"Cryomancer Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621103,"className":"costume_Char2_4","name":"Psychokino Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621104,"className":"costume_Char2_5","name":"Alchemist Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621105,"className":"costume_Char2_6","name":"Sorcerer Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621106,"className":"costume_Char2_7","name":"Linker Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621107,"className":"costume_Char2_8","name":"Chronomancer Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621108,"className":"costume_Char2_9","name":"Necromancer Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621109,"className":"costume_Char2_10","name":"Thaumaturge Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621110,"className":"costume_Char2_11","name":"Elementalist Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621111,"className":"costume_Char2_12","name":"Mimic Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621113,"className":"costume_Char2_14","name":"Sage Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621114,"className":"costume_Char2_15","name":"Warlock Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621115,"className":"costume_Char2_16","name":"Featherfoot Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621116,"className":"costume_Char2_17","name":"Rune Caster Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621117,"className":"costume_Char2_18","name":"Enchanter Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621118,"className":"costume_Char2_19","name":"Shadowmancer Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621119,"className":"costume_Char2_19_sp","name":"Shadowmancer Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621120,"className":"costume_Char2_19_02","name":"Shadowmancer Sunhider Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621121,"className":"costume_Char2_19_02_sp","name":"Shadowmancer Sunhider Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621122,"className":"costume_Char2_19_03","name":"Shadowmancer Lunarhider Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621123,"className":"costume_Char2_19_03_sp","name":"Shadowmancer Lunarhider Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621124,"className":"costume_Char2_20_01","name":"Onmyoji Robe Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621125,"className":"costume_Char2_20_01_sp","name":"Onmyoji Robe Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621126,"className":"costume_Char2_20_02","name":"Onmyoji Kingdom Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621127,"className":"costume_Char2_20_02_sp","name":"Onmyoji Kingdom Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621128,"className":"costume_Char2_20_03","name":"Onmyoji Origin Costume ","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621129,"className":"costume_Char2_20_03_sp","name":"Onmyoji Origin Special Costume ","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621130,"className":"costume_Char2_20_04","name":"Onmyoji Royal Court Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621131,"className":"costume_Char2_20_04_sp","name":"Onmyoji Royal Court Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621136,"className":"costume_Char2_19_04_sp","name":"Shadowmancer Super Ensconcer Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621137,"className":"costume_Char2_23_01","name":"Terramancer Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621138,"className":"costume_Char2_23_01_sp","name":"Terramancer Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621139,"className":"costume_Char2_23_02","name":"Terramancer Oasis Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621140,"className":"costume_Char2_23_02_sp","name":"Terramancer Oasis Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621141,"className":"costume_Char2_23_01_event","name":"[Event] Terramancer Oasis Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621142,"className":"costume_Char2_24","name":"Keraunos Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621143,"className":"costume_Char2_24_1","name":"Keraunos Astrape Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622101,"className":"costume_Char3_2","name":"Hunter Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622102,"className":"costume_Char3_3","name":"Quarrel Shooter Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622103,"className":"costume_Char3_4","name":"Ranger Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622104,"className":"costume_Char3_5","name":"Sapper Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622105,"className":"costume_Char3_6","name":"Wugushi Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622106,"className":"costume_Char3_7","name":"Hackapell Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622107,"className":"costume_Char3_8","name":"Scout Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622108,"className":"costume_Char3_9","name":"Rogue Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622109,"className":"costume_Char3_10","name":"Schwarzer Reiter Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622110,"className":"costume_Char3_11","name":"Fletcher Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622111,"className":"costume_Char3_12","name":"Pied Piper Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622112,"className":"costume_Char3_13","name":"Appraiser Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622113,"className":"costume_Char3_14","name":"Falconer Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622114,"className":"costume_Char3_15","name":"Cannoneer Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622115,"className":"costume_Char3_16","name":"Musketeer Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622116,"className":"costume_Char3_17","name":"Mergen Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622117,"className":"costume_Char3_18","name":"Bullet Marker Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622118,"className":"costume_Char3_18_sp","name":"Bullet Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622119,"className":"costume_Char3_18_02","name":"Bullet Marker Matcher Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622120,"className":"costume_Char3_18_02_sp","name":"Bullet Marker Matcher Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622121,"className":"costume_Char3_18_03","name":"Bullet Marker Wheeler Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622122,"className":"costume_Char3_18_03_sp","name":"Bullet Marker Wheeler Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622125,"className":"costume_Char3_18_04_sp","name":"Bullet Marker Flinter Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622126,"className":"costume_Char3_12_01","name":"Pied Piper Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622127,"className":"costume_Char3_12_01_sp","name":"Pied Piper Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622128,"className":"costume_Char3_12_02","name":"Pied Piper Meinung Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622129,"className":"costume_Char3_12_02_sp","name":"Pied Piper Meinung Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622130,"className":"costume_Char3_12_03","name":"Pied Piper Candy-Blower Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622131,"className":"costume_Char3_12_03_sp","name":"Pied Piper Candy-Blower Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622132,"className":"costume_Char3_12_04","name":"Pied Piper Bergefuehrender Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622133,"className":"costume_Char3_12_04_sp","name":"Pied Piper Bergefuehrender Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622136,"className":"costume_Char3_19_01","name":"Tiger Hunter Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622137,"className":"costume_Char3_19_02","name":"Tiger Hunter White Tiger Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622138,"className":"costume_Char3_19_sp","name":"Tiger Hunter Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622139,"className":"costume_Char3_19_sp_02","name":"Tiger Hunter White Tiger Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622140,"className":"costume_Char3_18_MAT_01","name":"Matross Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622141,"className":"costume_Char3_18_MAT_sp","name":"Matross Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622142,"className":"costume_Char3_18_MAT_02","name":"Matross Victor Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622143,"className":"costume_Char3_18_MAT_sp_02","name":"Matross Victor Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622144,"className":"costume_Char3_19_02_Evnet","name":"[Event] Tiger Hunter White Tiger Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622145,"className":"costume_Char3_18_MAT_02_Evnet","name":"[Event] Matross Victor Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622150,"className":"costume_Char3_20_01","name":"Arbalester Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622151,"className":"costume_Char3_20_01_sp","name":"Arbalester Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622152,"className":"costume_Char3_20_02","name":"Arbalester Pursuer Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622153,"className":"costume_Char3_20_02_sp","name":"Arbalester Pursuer Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622154,"className":"costume_Char3_20_02_event","name":"[Event] Arbalester Pursuer Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622155,"className":"costume_Char3_21_01","name":"Arquebusier Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622156,"className":"costume_Char3_21_01_sp","name":"Arquebusier Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622157,"className":"costume_Char3_21_02","name":"Arquebusier Vinacensors Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622158,"className":"costume_Char3_21_02_sp","name":"Arquebusier Vinacensors Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622159,"className":"costume_Char3_22_01","name":"Hwarang Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622160,"className":"costume_Char3_22_02","name":"Hwarang Zinnia Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622161,"className":"costume_Char3_23_01","name":"ITEM_20230703_028608","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622162,"className":"costume_Char3_23_02","name":"ITEM_20230703_028610","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623101,"className":"costume_Char4_2","name":"Priest Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623102,"className":"costume_Char4_3","name":"Krivis Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623103,"className":"costume_Char4_4","name":"Bokor Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623104,"className":"costume_Char4_5","name":"Druid Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623105,"className":"costume_Char4_6","name":"Sadhu Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623106,"className":"costume_Char4_7","name":"Dievdirbys Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623107,"className":"costume_Char4_8","name":"Oracle Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623108,"className":"costume_Char4_9","name":"Monk Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623109,"className":"costume_Char4_10","name":"Pardoner Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623110,"className":"costume_Char4_11","name":"Paladin Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623111,"className":"costume_Char4_12","name":"Chaplain Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623112,"className":"costume_Char4_13","name":"Shepherd Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623113,"className":"costume_Char4_14","name":"Plague Doctor Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623114,"className":"costume_Char4_15","name":"Kabbalist Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623115,"className":"costume_Char4_16","name":"Inquisitor Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623116,"className":"costume_Char4_17","name":"Taoist Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623117,"className":"costume_Char4_18","name":"Miko Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623118,"className":"costume_Char4_19","name":"Kannushi Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623119,"className":"costume_Char4_20","name":"Zealot Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623120,"className":"costume_Char4_20_sp","name":"Zealot Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623121,"className":"costume_Char4_20_02","name":"Zealot Contrition Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623122,"className":"costume_Char4_20_02_sp","name":"Zealot Contrition Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623123,"className":"costume_Char4_20_03","name":"Zealot Petition Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623124,"className":"costume_Char4_20_03_sp","name":"Zealot Petition Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623127,"className":"costume_Char4_20_04_sp","name":"Zealot Divine Vesture Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623128,"className":"costume_exorcist01","name":"Exorcist Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623129,"className":"costume_exorcist01_sp","name":"Costume Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623130,"className":"costume_exorcist02","name":"Exorcist Soul Binder Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623131,"className":"costume_exorcist02_sp","name":"Exorcist Soul Binder Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623132,"className":"costume_exorcist02_red","name":"Exorcist Rubric Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623133,"className":"costume_exorcist02_red_sp","name":"Exorcist Rubric Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623134,"className":"costume_exorcist03","name":"Exorcist Concordat Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623135,"className":"costume_exorcist03_sp","name":"Exorcist Concordat Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623138,"className":"costume_Char4_21_01","name":"Crusader Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623139,"className":"costume_Char4_21_01_sp","name":"Crusader Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623140,"className":"costume_Char4_21_02","name":"Crusader Decency Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623141,"className":"costume_Char4_21_02_sp","name":"Crusader Decency Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623142,"className":"costume_Char4_21_02_event","name":"[Event] Crusader Decency Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623143,"className":"costume_Char4_22","name":"Lama Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623144,"className":"costume_Char4_22_01","name":"Darsana-marga of Lama Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623999,"className":"costume_Char4_99","name":"GM Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625001,"className":"costume_sct_001","name":"Outlaw Thug Duds","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625002,"className":"costume_sct_002","name":"Outlaw Brigand Outfit","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625003,"className":"costume_sct_003","name":"Outlaw Ruffian Livery","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625004,"className":"costume_sct_004","name":"Outlaw Desperado Attire","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625005,"className":"costume_sct_001sp","name":"Outlaw Thug Duds Special Costume","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625006,"className":"costume_sct_002sp","name":"Outlaw Brigand Outfit Special Costume","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625007,"className":"costume_sct_003sp","name":"Outlaw Ruffian Livery Special Costume","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625008,"className":"costume_sct_004sp","name":"Outlaw Desperado Attire Special Costume","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625009,"className":"costume_sct_009","name":"Assassin Lizdas Fledger","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625010,"className":"costume_sct_010","name":"Assassin Lizdas Keeper","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625011,"className":"costume_sct_011","name":"Assassin Lizdas Vanas","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625012,"className":"costume_sct_012","name":"Assassin Lizdas Prabanga","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625013,"className":"costume_sct_013","name":"Assassin Lizdas Phoenix","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625014,"className":"costume_sct_014","name":"Outlaw Desperado Attire (Male)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":625015,"className":"costume_sct_015","name":"Outlaw Desperado Attire (Female)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":625016,"className":"costume_sct_016","name":"Assassin Lizdas Phoenix (Male)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":625017,"className":"costume_sct_017","name":"Assassin Lizdas Phoenix (Female)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":625018,"className":"costume_Char5_13_01","name":"Ardito Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625019,"className":"costume_Char5_13_02","name":"Ardito Seasoned Troops Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625020,"className":"costume_Char5_13_sp","name":"Ardito Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625021,"className":"costume_Char5_13_sp_02","name":"Ardito Seasoned Troops Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625022,"className":"costume_Char5_14_01","name":"Sheriff Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625023,"className":"costume_Char5_14_02","name":"Sheriff Raven Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625024,"className":"costume_Char5_14_sp","name":"Sheriff Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625025,"className":"costume_Char5_14_sp_02","name":"Sheriff Raven Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625026,"className":"costume_Char5_13_02_Event","name":"[Event] Ardito Seasoned Troops Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625027,"className":"costume_Char5_14_02_Event","name":"[Event] Sheriff Raven Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625032,"className":"costume_Char5_15_01","name":"Rangda Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625033,"className":"costume_Char5_15_02","name":"Rangda Kegelapan Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625037,"className":"costume_Char5_15_02_event","name":"[Event] Rangda Kegelapan Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625038,"className":"costume_Char5_16_01","name":"Clown Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625039,"className":"costume_Char5_16_01_sp","name":"Clown Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625040,"className":"costume_Char5_16_02","name":"Clown Sutemos Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625041,"className":"costume_Char5_16_02_sp","name":"Clown Sutemos Special Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625042,"className":"costume_Char5_17","name":"Hakkapeliter Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625043,"className":"costume_Char5_18","name":"Jaguar Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625044,"className":"costume_Char5_18_01","name":"Jaguar Panther Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625045,"className":"costume_Char1_24","name":"ITEM_20230308_028372","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625046,"className":"costume_Char1_24_01","name":"ITEM_20230308_028374","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":628001,"className":"Hat_628001","name":"Cat Ears","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628002,"className":"Hat_628002","name":"Crystal Headband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628005,"className":"Hat_628005","name":"Pony Tail","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628006,"className":"Hat_628006","name":"Steel Visor","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628007,"className":"Hat_628007","name":"Wings Visor","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628008,"className":"Hat_628008","name":"Fedora","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628010,"className":"Hat_628010","name":"Goggles","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628012,"className":"Hat_628012","name":"Lepusbunny Headband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628013,"className":"Hat_628013","name":"Ginkgo Leaf","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628014,"className":"Hat_628014","name":"Tiger Swallowtail","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628015,"className":"Hat_628015","name":"Eagle Feather","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628016,"className":"Hat_628016","name":"Muscharia Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628017,"className":"Hat_628017","name":"Crown","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628018,"className":"Hat_628018","name":"White Flower Hairpin","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628019,"className":"Hat_628019","name":"Tiger Mask","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628020,"className":"Hat_628020","name":"Tini Doll","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628021,"className":"Hat_628021","name":"Wing Helmet","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628022,"className":"Hat_628022","name":"Wing Decoration","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628023,"className":"Hat_628023","name":"Nesting Egg","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628024,"className":"Hat_628024","name":"Nesting Chick","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628025,"className":"Hat_628025","name":"Nesting Chicken","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628026,"className":"Hat_628026","name":"Campaign Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628027,"className":"Hat_628027","name":"Gentleman's Dignity","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628028,"className":"Hat_628028","name":"Stylish Glasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628029,"className":"Hat_628029","name":"Ice Bag","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628030,"className":"Hat_628030","name":"Rosa Rugosa","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628031,"className":"Hat_628031","name":"Feather Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628032,"className":"Hat_628032","name":"Maple Leaf","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628033,"className":"Hat_628033","name":"Red Tassel Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628034,"className":"Hat_628034","name":"Nurse Headband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628035,"className":"Hat_628035","name":"Kateen Flower Decoration","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628036,"className":"Hat_628036","name":"Dog Ears","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628037,"className":"Hat_628037","name":"Cow Headband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628038,"className":"Hat_628038","name":"Small Lion Mask","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628039,"className":"Hat_628039","name":"Big Lion Mask","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628040,"className":"Hat_628040","name":"Tengu Mask","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628041,"className":"Hat_628041","name":"Fox Mask","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628042,"className":"Hat_628042","name":"Glasses from the Otherworld","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628043,"className":"Hat_628043","name":"Goat Horns","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628044,"className":"Hat_628044","name":"Demon Wings","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628045,"className":"Hat_628045","name":"Silver Tiara","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628046,"className":"Hat_628046","name":"Bear Eyemask","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628047,"className":"Hat_628047","name":"Symbol of Wealth","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628048,"className":"Hat_628048","name":"Golden Rabbit Hairpin","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628049,"className":"Hat_628049","name":"Antler Horns","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628050,"className":"Hat_628050","name":"Officer Helmet","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628051,"className":"Hat_628051","name":"Gilt Helmet","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628052,"className":"Hat_628052","name":"Steel Helmet","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628053,"className":"Hat_628053","name":"Black Rabbit Ears","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628054,"className":"Hat_628054","name":"Kepa Doll","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628055,"className":"Hat_628055","name":"Pink Bunny","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628056,"className":"Hat_628056","name":"Stake","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628057,"className":"Hat_628057","name":"White Tiger Mask","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628058,"className":"Hat_628058","name":"Glasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628059,"className":"Hat_628059","name":"Unicorn Horn","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628060,"className":"Hat_628060","name":"Red Horns","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628061,"className":"Hat_628061","name":"Desert Chupacabra Ears","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628062,"className":"Hat_628062","name":"Mirtis Helmet","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628063,"className":"Hat_628063","name":"Red Devil Wings","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628064,"className":"Hat_628064","name":"Angel Wings","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628065,"className":"Hat_628065","name":"Fallen Angel Wings","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628066,"className":"Hat_628066","name":"Maid Headband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628067,"className":"Hat_628067","name":"Miao Hair Ornament","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628068,"className":"Hat_628068","name":"Earplugs","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628069,"className":"Hat_628069","name":"Luxury Hairpin","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628070,"className":"Hat_628070","name":"Feather Helmet","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628071,"className":"Hat_628071","name":"Shaman Mask","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628072,"className":"Hat_628072","name":"Sprout","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628073,"className":"Hat_628073","name":"Fried Egg","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628074,"className":"Hat_628074","name":"Tribal Hair Ornament","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628075,"className":"Hat_628075","name":"Party Cone","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628076,"className":"Hat_628076","name":"Cat Hairpin","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628077,"className":"Hat_628077","name":"Imperial Helm","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628078,"className":"Hat_628078","name":"Ball from Another World","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628079,"className":"Hat_628079","name":"Burdensome Ribbon","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628080,"className":"Hat_628080","name":"Paper Crane","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628081,"className":"Hat_628081","name":"Ghost Headband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628082,"className":"Hat_628082","name":"Square Black Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628083,"className":"Hat_628083","name":"Carnival Mask","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628084,"className":"Hat_628084","name":"Peacock Feather","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628086,"className":"Hat_628086","name":"Pineapple","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628087,"className":"Hat_628087","name":"Desert Outlaw","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628088,"className":"Hat_628088","name":"Clown Cap","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628089,"className":"Hat_628089","name":"Owl","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628090,"className":"Hat_628090","name":"Crown Headband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628091,"className":"Hat_628091","name":"Pudding","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628092,"className":"Hat_628092","name":"Bride Coronet","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628093,"className":"Hat_628093","name":"Flower Branch","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628094,"className":"Hat_628094","name":"Polka Dot Ribbon","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628095,"className":"Hat_628095","name":"Blue Ribbon","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628096,"className":"Hat_628096","name":"Mint Chocolate Cupcake","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628097,"className":"Hat_628097","name":"Strawberry Cupcake","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628098,"className":"Hat_628098","name":"Lama","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628099,"className":"Hat_628099","name":"Mergen Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628101,"className":"Hat_628101","name":"Decorative Ribbon Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628102,"className":"Hat_628102","name":"White Ribbon Decoration Boater","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628103,"className":"Hat_628103","name":"Red Ribbon Decoration Boater","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628104,"className":"Hat_628104","name":"Winter Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628105,"className":"Hat_628105","name":"New Hat 05","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628106,"className":"Hat_628106","name":"Small Brim Feather Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628107,"className":"Hat_628107","name":"Boater","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628108,"className":"Hat_628108","name":"Luxury Hat and Rose","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628109,"className":"Hat_628109","name":"Noble Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628110,"className":"Hat_628110","name":"Dual Color Boater","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628111,"className":"Hat_628111","name":"Outdoors Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628112,"className":"Hat_628112","name":"ITEM_20230424_028386","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628113,"className":"Hat_628113","name":"Sailor Cap","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628114,"className":"Hat_628114","name":"Blue Sailor Cap","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628115,"className":"Hat_628115","name":"Noble Flower Bonnet","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628116,"className":"Hat_628116","name":"Dignity Miter","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628117,"className":"Hat_628117","name":"Prestige Miter","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628118,"className":"Hat_628118","name":"Imposing Miter","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628119,"className":"Hat_628119","name":"Maid Hair Accessory","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628120,"className":"Hat_628120","name":"Ceremonial Officer Cap","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628121,"className":"Hat_628121","name":"New Hat 21","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628122,"className":"Hat_628122","name":"New Hat 22","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628123,"className":"Hat_628123","name":"Tribal Chief Head Decoration","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628124,"className":"Hat_628124","name":"Canine Head Decoration","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628125,"className":"Hat_628125","name":"Ancient Crown","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628126,"className":"Hat_628126","name":"New Hat 26","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628127,"className":"Hat_628127","name":"Ceremonial Veil","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628128,"className":"Hat_628128","name":"Ritual Veil","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628129,"className":"Hat_628129","name":"Rosy Bowler","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628131,"className":"Hat_628131","name":"Ritual Headdress","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628132,"className":"Hat_628132","name":"White Flower Headgear","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628133,"className":"Hat_628133","name":"Red Flower Headgear","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628134,"className":"Hat_628134","name":"Event Balloon","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628135,"className":"Hat_628135","name":"Cat's Feet Handband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628136,"className":"Hat_628136","name":"Major Spade Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628137,"className":"Hat_628137","name":"Diamond Magician Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628138,"className":"Hat_628138","name":"Queen Diamond's Tiara","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628139,"className":"Hat_628139","name":"Sailor Heart Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628140,"className":"Hat_628140","name":"Clover Feather Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628141,"className":"Hat_628141","name":"White Bunny Hairband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628142,"className":"Hat_628142","name":"Red-feathered Corolla","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628143,"className":"Hat_628143","name":"Pink-feathered Corolla","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628144,"className":"Hat_628144","name":"Beach Fedora","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628145,"className":"Hat_628145","name":"Huckleberry Hair Accessory","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628146,"className":"Hat_628146","name":"Sailor Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628147,"className":"Hat_628147","name":"Polka Dot Lime Ribbon","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628148,"className":"Hat_628148","name":"Snorkeling Mask","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628149,"className":"Hat_628149","name":"Swimming Goggles","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628150,"className":"Hat_628150","name":"Beach Straw Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628151,"className":"Hat_628151","name":"Aloha Flower Crown","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628152,"className":"Hat_628152","name":"Butterfly Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628153,"className":"Hat_628153","name":"Lotus Cup Hair Accessory","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628154,"className":"Hat_628154","name":"Hatter's Cake Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628155,"className":"Hat_628155","name":"Parfait and Mouse Ear Headband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628156,"className":"Hat_628156","name":"Dodo Hair Accessory","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628157,"className":"Hat_628157","name":"Chesirecat Hair Accessory","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628158,"className":"Hat_628158","name":"White Rabbit Hair Accessory","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628159,"className":"Hat_628159","name":"Alice's Key Hair Accessory","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628160,"className":"Hat_628160","name":"TestHairAccessory1","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628161,"className":"Hat_628161","name":"TestHairAccessory2","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628162,"className":"Hat_628162","name":"TestHairAccessory3","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628163,"className":"Hat_628163","name":"TestHairAccessory4","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628164,"className":"Hat_628164","name":"TestHairAccessory5","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628165,"className":"Hat_628165","name":"TestHairAccessory6","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628166,"className":"Hat_628166","name":"TestHairAccessory7","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628167,"className":"Hat_628167","name":"TestHairAccessory8","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628168,"className":"Hat_628168","name":"TestHairAccessory9","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628169,"className":"Hat_628169","name":"TestHairAccessory10","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628170,"className":"Hat_628170","name":"TestHairAccessory11","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628171,"className":"Hat_628171","name":"TestHairAccessory12","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628172,"className":"Hat_628172","name":"TestHairAccessory13","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628173,"className":"Hat_628173","name":"ITEM_20230424_028387","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628174,"className":"Hat_628174","name":"Maid Ribbon","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628175,"className":"Hat_628175","name":"TestHairAccessory16","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628176,"className":"Hat_628176","name":"TestHairAccessory17","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628177,"className":"Hat_628177","name":"TestHairAccessory18","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628178,"className":"Hat_628178","name":"TestHairAccessory19","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628179,"className":"Hat_628179","name":"TestHairAccessory20","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628180,"className":"Hat_628180","name":"Flarestone Horn","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628181,"className":"Hat_628181","name":"Flamingo","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628182,"className":"Hat_628182","name":"Hamster","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628183,"className":"Hat_628183","name":"TestHairAccessory24","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628184,"className":"Hat_628184","name":"TestHairAccessory25","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628185,"className":"Hat_628185","name":"Black Feather Ornament","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628186,"className":"Hat_628186","name":"TestHairAccessory27","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628187,"className":"Hat_628187","name":"Female Traditional Hair Ornament","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628188,"className":"Hat_628188","name":"TestHairAccessory29","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628189,"className":"Hat_628189","name":"Heart Hairpin","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628190,"className":"Hat_628190","name":"Queen Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628191,"className":"Hat_628191","name":"Lightning Cloud","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628192,"className":"Hat_628192","name":"Menu","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628193,"className":"Hat_628193","name":"Paper Ticket","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628194,"className":"Hat_628194","name":"Rain Cloud","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628195,"className":"Hat_628195","name":"Pancake","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628196,"className":"Hat_628196","name":"Penguin","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628197,"className":"Hat_628197","name":"Peach-colored Rose Horn","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628198,"className":"Hat_628198","name":"Pirate Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628199,"className":"Hat_628199","name":"Purple Flower Headband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628200,"className":"Hat_628200","name":"Queenly Crown","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628201,"className":"Hat_628201","name":"Radishu","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628202,"className":"Hat_628202","name":"Red Flower Headband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628203,"className":"Hat_628203","name":"Sky Blue Ribbon","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628204,"className":"Hat_628204","name":"Winding Key","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628205,"className":"Hat_628205","name":"Slid-off Glasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628206,"className":"Hat_628206","name":"Sun","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628207,"className":"Hat_628207","name":"Sunflower Seed","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628208,"className":"Hat_628208","name":"Salmon Egg Sushi","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628209,"className":"Hat_628209","name":"Egg Sushi","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628210,"className":"Hat_628210","name":"Shrimp Sushi","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628211,"className":"Hat_628211","name":"Tuna Sushi","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628212,"className":"Hat_628212","name":"Salmon Sushi","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628213,"className":"Hat_628213","name":"Roll","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628214,"className":"Hat_628214","name":"Fried Shrimp","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628215,"className":"Hat_628215","name":"Salmon Egg Roll","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628216,"className":"Hat_628216","name":"Salmon Roll","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628217,"className":"Hat_628217","name":"Avocado Roll","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628218,"className":"Hat_628218","name":"Octopus Roll","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628219,"className":"Hat_628219","name":"Huge Sweat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628220,"className":"Hat_628220","name":"Toaster","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628221,"className":"Hat_628221","name":"Good Idea!","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628222,"className":"Hat_628222","name":"Rage!","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628223,"className":"Hat_628223","name":"Wi-Fi","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628224,"className":"Hat_628224","name":"Autumn-colored Rose Horn","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628225,"className":"Hat_628225","name":"Fancy Dandy Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628226,"className":"Hat_628226","name":"Banana Peel","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628227,"className":"Hat_628227","name":"Hipster Glasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628228,"className":"Hat_628228","name":"Blue Laced Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628229,"className":"Hat_628229","name":"Watery Rose Horn","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628230,"className":"Hat_628230","name":"Buried Carrot","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628231,"className":"Hat_628231","name":"Cloud","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628232,"className":"Hat_628232","name":"Pink Pudding","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628233,"className":"Hat_628233","name":"Black Checker","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628234,"className":"Hat_628234","name":"Black Gold-laced Butterfly Wings","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628235,"className":"Hat_628235","name":"Boss Bear Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628236,"className":"Hat_628236","name":"Red Checker","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628237,"className":"Hat_628237","name":"Golden Rose Horn","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628238,"className":"Hat_628238","name":"Spartan Helmet","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628239,"className":"Hat_628239","name":"Key-Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628240,"className":"Hat_628240","name":"Sky Blue Striped Crown","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628241,"className":"Hat_628241","name":"Navy Blue Featherhat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628242,"className":"Hat_628242","name":"Sea-themed Headband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628243,"className":"Hat_628243","name":"Laced Black Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628244,"className":"Hat_628244","name":"Bison Helmet","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628245,"className":"Hat_628245","name":"Ribboned Marne Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628246,"className":"Hat_628246","name":"Angelic Halo","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628247,"className":"Hat_628247","name":"White Key-Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628248,"className":"Hat_628248","name":"Sleeping Leopard","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628249,"className":"Hat_628249","name":"Watery Shell Ornament","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628250,"className":"Hat_628250","name":"Reindeer Crown","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628251,"className":"Hat_628251","name":"Red Pudding Crown","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628252,"className":"Hat_628252","name":"Slacking Sloth","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628253,"className":"Hat_628253","name":"Grey Crown","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628254,"className":"Hat_628254","name":"Puppy Balloon","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628255,"className":"Hat_628255","name":"Horned Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628256,"className":"Hat_628256","name":"Umbrella","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628257,"className":"Hat_628257","name":"Lotus Leaf","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628258,"className":"Hat_628258","name":"Nabe","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628259,"className":"Hat_628259","name":"Bowl","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628260,"className":"Hat_628260","name":"Feather Helmet","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628261,"className":"Hat_628261","name":"Crocus","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628262,"className":"Hat_628262","name":"Carve World Tree","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628263,"className":"Hat_628263","name":"Valorous Ceremonial Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628264,"className":"Hat_628264","name":"Decorated Ceremonial Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628265,"className":"Hat_628265","name":"Tactical Ceremonial Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628266,"className":"Hat_628266","name":"Swift Ceremonial Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628267,"className":"Hat_628267","name":"Serving Ceremonial Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628268,"className":"Hat_628268","name":"Jack-O-Lantern Hair Ornament","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628269,"className":"Hat_628269","name":"Star Hairpin","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628270,"className":"Hat_628270","name":"White Leather Brimmed Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628271,"className":"Hat_628271","name":"Black Leather Brimmed Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628272,"className":"Hat_628272","name":"High Brim Teal Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628273,"className":"Hat_628273","name":"High Brim Orange Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628274,"className":"Hat_628274","name":"Black Western Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628275,"className":"Hat_628275","name":"Pink Western Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628276,"className":"Hat_628276","name":"Smart Short Brim Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628277,"className":"Hat_628277","name":"Smart Outdoors Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628278,"className":"Hat_628278","name":"Drum Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628279,"className":"Hat_628279","name":"Soldier Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628280,"className":"Hat_628280","name":"Strawberry Moon Pie","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628281,"className":"Hat_628281","name":"Bunny Cupcake","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628282,"className":"Hat_628282","name":"Black Crown","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628283,"className":"Hat_628283","name":"White Crown","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628284,"className":"Hat_628284","name":"Rudolph Antler Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628285,"className":"Hat_628285","name":"Bell Ornament Winter Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628286,"className":"Hat_628286","name":"Rudolph Headband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628287,"className":"Hat_628287","name":"Christmas Tree Snowglobe","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628288,"className":"Hat_628288","name":"Rudolph Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628289,"className":"Hat_628289","name":"Christmas Cone Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628290,"className":"Hat_628290","name":"Pink Rooster Headband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628291,"className":"Hat_628291","name":"Velcoffer Horns","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628292,"className":"Hat_628292","name":"Velcoffer Wings Ornament","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628293,"className":"Hat_628293","name":"Rooster Hair Accessory","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628294,"className":"Hat_628294","name":"Hen Hair Accessory","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628295,"className":"Hat_628295","name":"Grey Cat Ears","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628296,"className":"Hat_628296","name":"Orange Cat Ears","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628297,"className":"Hat_628297","name":"White Cat Ears","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628298,"className":"Hat_628298","name":"Grey Rabbit Ears","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628299,"className":"Hat_628299","name":"White Rabbit Ears","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628300,"className":"Hat_628300","name":"Orange Rabbit Ears","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628301,"className":"Hat_628301","name":"Picnic Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628302,"className":"Hat_628302","name":"Orange Candy","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628303,"className":"Hat_628303","name":"Heart Crown Cake","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628304,"className":"Hat_628304","name":"Pink Heart Hair Accessory","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628305,"className":"Hat_628305","name":"Pink Candy","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628306,"className":"Hat_628306","name":"Sweet Biscuit","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628307,"className":"Hat_628307","name":"Strawberry Cake","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628308,"className":"Hat_628308","name":"Heart Candy","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628309,"className":"Hat_628309","name":"Toy Paper Ticket","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628310,"className":"Hat_628310","name":"Paper Boat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628311,"className":"Hat_628311","name":"Golden Pup Doll","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628312,"className":"Hat_628312","name":"Golden Pup Paw Print","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628313,"className":"Hat_628313","name":"Smiley Orange","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628314,"className":"Hat_628314","name":"Sardine Coffee","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628315,"className":"Hat_628315","name":"Spiral Glasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628316,"className":"Hat_628316","name":"Cherry Blossom Hairpin","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628317,"className":"Hat_628317","name":"Tricolor Treat Hairpin","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628318,"className":"Hat_628318","name":"Soccer Fan Headband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628319,"className":"Hat_628319","name":"Marine Beret","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628320,"className":"Hat_628320","name":"Sailor Beret","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628321,"className":"Hat_628321","name":"Blue Anchor","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628322,"className":"Hat_628322","name":"Marine Stripe Glasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628323,"className":"Hat_628323","name":"Romantic Marine Scarf","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628324,"className":"Hat_628324","name":"Lighthouse","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628325,"className":"Hat_628325","name":"ITEM_20230425_028536","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628326,"className":"Hat_628326","name":"Ebony King Crown","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628327,"className":"Hat_628327","name":"Ivory Queen Crown","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628328,"className":"Hat_628328","name":"Bishop Fedora","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628329,"className":"Hat_628329","name":"Ebony Knight","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628330,"className":"Hat_628330","name":"Knight Galea","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628331,"className":"Hat_628331","name":"Chessboard","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628332,"className":"Hat_628332","name":"Ebony Rook","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628333,"className":"Hat_628333","name":"Red Hair Bow","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628334,"className":"Hat_628334","name":"Big Red Hair Bow","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628335,"className":"Hat_628335","name":"Latte Art: Bunny","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628336,"className":"Hat_628336","name":"Latte Art: Kitty","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628337,"className":"Hat_628337","name":"Latte Art: Popolion","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628338,"className":"Hat_628338","name":"Horse Medal","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628339,"className":"Hat_628339","name":"Satgat Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628340,"className":"Hat_628340","name":"Black Gat Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628341,"className":"Hat_628341","name":"Wolf Mask","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628342,"className":"Hat_628342","name":"Black Cat Ears","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628343,"className":"Hat_628343","name":"Pumpkin Hair Accessory","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628344,"className":"Hat_628344","name":"Purple Ribbon Witch Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628345,"className":"Hat_628345","name":"Red Ribbon Witch Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628346,"className":"Hat_628346","name":"Latte Art: Bunny","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628347,"className":"Hat_628347","name":"Nicopolis Guard Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628348,"className":"Hat_628348","name":"Cozy Polar Bear Ears","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628349,"className":"Hat_628349","name":"Elegant Snow Fox Ears","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628350,"className":"Hat_628350","name":"Small Present Hairpin","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628351,"className":"Hat_628351","name":"Small Star Hairpin","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628352,"className":"Hat_628352","name":"Groucho Glasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628353,"className":"Hat_628353","name":"Grandpa Groucho Glasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628354,"className":"Hat_628354","name":"Neon Popolion","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628355,"className":"Hat_628355","name":"Tantalizer Feelers","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628356,"className":"Hat_628356","name":"Moringponia Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628357,"className":"Hat_628357","name":"Firebird Hair Brooch","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628358,"className":"Hat_628358","name":"Red Hair Knot","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628359,"className":"Hat_628359","name":"Gabija Feather Hairband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628360,"className":"Hat_628360","name":"Messenger of Fire","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628361,"className":"Hat_628361","name":"Snowy Reindeer Antlers","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628362,"className":"Hat_628362","name":"Snowy Deer Antlers","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628363,"className":"Hat_628363","name":"Jingle Bell Earmuffs","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628364,"className":"Hat_628364","name":"Present Wrapper Ribbon","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628365,"className":"Hat_628365","name":"Christmas Party Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628366,"className":"Hat_628366","name":"Snowman Nose","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628367,"className":"Hat_628367","name":"Santa Beard","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628368,"className":"Hat_628368","name":"Magical Savior Double Ribbon","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628369,"className":"Hat_628369","name":"Magical Savior Pure Ribbon","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628370,"className":"Hat_628370","name":"Magical Savior Brooch Ribbon","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628371,"className":"Hat_628371","name":"Magical Savior Clover Ribbon","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628372,"className":"Hat_628372","name":"Magical Savior Neon Heart","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628373,"className":"Hat_628373","name":"Magical Savior Wing Decoration","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628374,"className":"Hat_628374","name":"Magical Savior Red Frill Ribbon","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628375,"className":"Hat_628375","name":"Magical Savior Spade Ribbon","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628376,"className":"Hat_628376","name":"Popo Pop Tint Sunglasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628377,"className":"Hat_628377","name":"Popo Pop Neon Sunglasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628378,"className":"Hat_628378","name":"Popo Pop Black Mask","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628379,"className":"Hat_628379","name":"Popo Pop Stage Microphone","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628380,"className":"Hat_628380","name":"Popo Pop Fandom Hairband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628381,"className":"Hat_628381","name":"Flower Deer's Horn Headband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628382,"className":"Hat_628382","name":"Blue Magpie Headband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628383,"className":"Hat_628383","name":"Panda Sleeping Mask","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628384,"className":"Hat_628384","name":"Panda Hairpin","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628385,"className":"Hat_628343_Trade","name":"Pumpkin Hair Accessory","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628386,"className":"Hat_628386","name":"Dragoon Helmet","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628387,"className":"Hat_628182_NoTrade","name":"[Event] Hamster","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628388,"className":"Hat_628194_NoTrade","name":"[Event] Rain Cloud ","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628389,"className":"Hat_628223_NoTrade","name":"[Event] Wi-Fi","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628390,"className":"Hat_628205_NoTrade","name":"[Event] Slid-off Glasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628391,"className":"Hat_628253_NoTrade","name":"[Event] Grey Crown","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628392,"className":"Hat_628079_NoTrade","name":"[Event] Burdensome Ribbon","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628393,"className":"Hat_628295_NoTrade","name":"[Event] Grey Cat Ears","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628394,"className":"Hat_628207_NoTrade","name":"[Event] Sunflower Seed","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628395,"className":"Hat_628193_NoTrade","name":"[Event] Paper Ticket","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628396,"className":"Hat_628094_NoTrade","name":"[Event] Polka Dot Ribbon","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628397,"className":"Hat_628300_NoTrade","name":"[Event] Orange Rabbit Ears","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628398,"className":"Hat_628354_NoTrade","name":"[Event] Neon Popolion","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628399,"className":"Hat_628399","name":"[Event] Neon Kepa Gone Bad","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628400,"className":"Hat_628400","name":"[Event] Neon Hanaming","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628401,"className":"Hat_628401","name":"ITEM_20230703_028612","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":628402,"className":"Hat_628017_1","name":"Crown","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629001,"className":"Hat_629001","name":"War Bonnet","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629002,"className":"Hat_629002","name":"Cornus Helmet","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629003,"className":"Hat_629003","name":"Hanaming Doll","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629004,"className":"Hat_629004","name":"Popolion Doll","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629005,"className":"steam_Hat_629003","name":"Hanaming Doll","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629006,"className":"steam_Hat_629004","name":"Popolion Doll","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629007,"className":"Hat_629004_NoTrade","name":"Popolion Doll [Event]","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629008,"className":"Hat_629008","name":"Premium Snowflake Crown","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629009,"className":"Hat_629009","name":"White Snowflake Unicorn Horn","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629010,"className":"Hat_629010","name":"White Snowflake Glasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629011,"className":"Hat_629011","name":"Genealogical Standards Manual","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629012,"className":"Hat_629012","name":"Nerd Glasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629013,"className":"Hat_629013","name":"Potted Flower","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629014,"className":"Hat_629014","name":"Fruit Snack Basket","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629015,"className":"Hat_629015","name":"Little Grain of Rice","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629016,"className":"Hat_629016","name":"Golden Fairy Laurel","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629017,"className":"Hat_629017","name":"Golden Fairy Flower Tiara","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629018,"className":"Hat_629018","name":"Dawn Fairy Flower Bud","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629019,"className":"Hat_629019","name":"Pink Fairy Flower Bud","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629020,"className":"Hat_629020","name":"Teal Teeny Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629021,"className":"Hat_629021","name":"Pink Teeny Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629022,"className":"Hat_629022","name":"Pixel Sunglasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629023,"className":"Hat_629023","name":"Boeing Sunglasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629024,"className":"Hat_629024","name":"Gehong's Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629025,"className":"Hat_629025","name":"Hitomiko's Wreath","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629026,"className":"Hat_629026","name":"Colorful Boeing Sunglasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629027,"className":"Hat_629027","name":"Mystic Savior - Heart Ribbon","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629028,"className":"Hat_629028","name":"Mystic Savior - Diamond Ribbon","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629029,"className":"Hat_629029","name":"Baby Chick","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629030,"className":"Hat_629030","name":"Laima Kindergarten Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629031,"className":"Hat_629031","name":"Little Budding Sprout","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629032,"className":"Hat_629032","name":"Blue Twin Ribbons","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629033,"className":"Hat_629033","name":"Honorable Medal Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629034,"className":"Hat_629034","name":"Rose Knight Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629035,"className":"Hat_629035","name":"Elegant Noble Capeline","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629036,"className":"Hat_629036","name":"Twilight Star Head Ornament","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629037,"className":"Hat_629037","name":"Twilight Star Winged Helm","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629038,"className":"Hat_629038","name":"Bubble Tea Accessory","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629039,"className":"accessary_beachwear01","name":"Hibiscus Straw Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629040,"className":"accessary_beachwear02","name":"Lobelia Straw Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629041,"className":"accessary_beachwear03","name":"Ribbon Straw Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629042,"className":"accessary_beachwear04","name":"Cool Shades","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629043,"className":"accessary_beachwear05","name":"Manly Man Beard","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629044,"className":"accessory_gaviya","name":"Gabija Doll Accessory","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629045,"className":"accessory_travelHat","name":"Explorer's Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629046,"className":"accessory_blackbear_ear","name":"Black Bear Ears","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629047,"className":"Hat_629047","name":"Champa Hairpin","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629048,"className":"Hat_629048","name":"Chef Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629049,"className":"Hat_629049","name":"Culinary Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629050,"className":"Hat_629050","name":"Toque Blanche","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629051,"className":"Hat_629051","name":"Head Chef Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629052,"className":"Hat_629052","name":"Fox Spirit Mask","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629053,"className":"Hat_629053","name":"Yellow Beanie","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629054,"className":"Hat_629054","name":"Checkered Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629055,"className":"Hat_629055","name":"TOS Ranger Hairpin","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629056,"className":"Hat_629056","name":"TOS Ranger Glasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629057,"className":"Hat_629057","name":"Clown Mask","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629058,"className":"Hat_629058","name":"Butcher Knife Headband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629059,"className":"Hat_629059","name":"Skull Party Mask","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629060,"className":"Hat_629004_NoTrade_steam","name":"Popolion Doll [Event]","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629061,"className":"Hat_629060","name":"Solcomm Visor","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat"},{"itemId":629062,"className":"Hat_629062","name":"Asiomage's Horn Crown","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629063,"className":"steam_Hat_629503_ev","name":"Leaf Ornament Helmet","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629501,"className":"Hat_629501","name":"Red Beret","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629502,"className":"Hat_629502","name":"Event Hat 2","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629503,"className":"Hat_629503","name":"Leaf Ornament Helmet","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629504,"className":"Hat_629504","name":"Blue Beret","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629505,"className":"Hat_629505","name":"Green Beret","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629506,"className":"Hat_629506","name":"Cherry Blossom Hairpin","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629507,"className":"Hat_629507","name":"Tricolor Treat Hairpin","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629508,"className":"Hat_628336_event","name":"Latte Art: Cat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629509,"className":"Hat_629509","name":"Yellow Beret","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629510,"className":"Hat_629510","name":"Tini Latte Art","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629511,"className":"accessory_2020hairband","name":"2020 New Years Headband ","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629512,"className":"Hat_629506_NoTrade","name":"[Event] Cherry Blossom Hairpin","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629513,"className":"Hat_628336_NoTrade","name":"[Event] Latte Art: Cat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":629514,"className":"Hat_629507_NoTrade","name":"[Event] Tricolor Treat Hairpin","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":633102,"className":"costume_Com_102","name":"Frill Ornament Fairy Costume (Male)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633103,"className":"costume_Com_103","name":"Frill Ornament Fairy Costume (Female)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633147,"className":"costume_Com_147","name":"Jack-O-Lantern Costume (Male)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":633148,"className":"costume_Com_148","name":"Jack-O-Lantern Costume (Female)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":633151,"className":"costume_Com_151","name":"Golden Champion Costume (90 Days)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":633152,"className":"costume_Com_152","name":"Black Champion Costume","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":633153,"className":"costume_Com_153","name":"Black Champion Costume (1 Day)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":633193,"className":"costume_Com_193","name":"Mystic Boy Form Change - Heart (M)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":633194,"className":"costume_Com_194","name":"Mystic Boy Form Change - Diamond (M)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":633195,"className":"costume_Com_195","name":"Mystic Girl Form Change - Heart (M)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":633196,"className":"costume_Com_196","name":"Mystic Girl Form Change - Diamond (M)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":633197,"className":"costume_Com_197","name":"Mystic Girl Form Change - Heart (F)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":633198,"className":"costume_Com_198","name":"Mystic Girl Form Change - Diamond (F)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":633213,"className":"costume_Com_213","name":"Red Champion Costume","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":633214,"className":"costume_Com_214","name":"White Champion Costume","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":633215,"className":"costume_Com_215","name":"Blue Champion Costume","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":633316,"className":"costume_Com_147_trade","name":"Jack-O-Lantern Costume (Male)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":633317,"className":"costume_Com_148_trade","name":"Jack-O-Lantern Costume (Female)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":633319,"className":"costume_Com_213_1","name":"[Team Battle League] Red Champion Costume","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":633320,"className":"costume_Com_214_1","name":"[Team Battle League] White Champion Costume","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":633321,"className":"costume_Com_215_1","name":"[Team Battle League] Blue Champion Costume","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":633322,"className":"costume_Com_152_1","name":"[Team Battle League] Black Champion Costume","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":634015,"className":"Artefact_634015","name":"Chessboard Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":634018,"className":"Artefact_634018","name":"Wooden Pane Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":634019,"className":"Artefact_634019","name":"Horse Medal Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":634043,"className":"Artefact_634043","name":"Gingerbread Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":634055,"className":"Artefact_634055","name":"Fluffy Kitty Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":634069,"className":"Artefact_634069","name":"Crunchy Choco Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":634085,"className":"Artefact_634085","name":"Twilight Star Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":634107,"className":"Artefact_634107","name":"Steering Wheel Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":634120,"className":"Artefact_634120","name":"Grilled Platter Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":634125,"className":"Artefact_634125","name":"Pot-lid Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":634149,"className":"Artefact_634149","name":"TOS Ranger Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":634165,"className":"Artefact_634165","name":"Occult Paper Charm Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":634179,"className":"Artefact_634179","name":"Twinkle Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":634203,"className":"Artefact_634203","name":"Magical Savior Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":634212,"className":"Artefact_634212","name":"Popo Pop Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":635015,"className":"HAND02_123_14d","name":"Cafrisun Gloves (14 Days)","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1296,"sellPrice":0,"equipType1":"Gloves","minLevel":15,"def":74,"mDef":74,"material":"Leather"},{"itemId":635016,"className":"FOOT02_123_14d","name":"Cafrisun Boots (14 Days)","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":1296,"sellPrice":0,"equipType1":"Boots","minLevel":15,"def":74,"mDef":74,"material":"Leather"},{"itemId":635017,"className":"LEG02_123_14d","name":"Cafrisun Pants (14 Days)","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":2592,"sellPrice":0,"equipType1":"Pants","minLevel":15,"def":122,"mDef":122,"material":"Leather"},{"itemId":635018,"className":"TOP02_123_14d","name":"Cafrisun Armor (14 Days)","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":2592,"sellPrice":0,"equipType1":"Shirt","minLevel":15,"def":136,"mDef":136,"material":"Leather","poisonRes":8},{"itemId":635030,"className":"E_TOP01_139","name":"Leather Armor [Event]","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Shirt","minLevel":1,"def":19,"mDef":19,"material":"Leather"},{"itemId":635031,"className":"E_LEG01_139","name":"Leather Pants [Event]","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Pants","minLevel":1,"def":19,"mDef":19,"material":"Leather"},{"itemId":635032,"className":"E_FOOT01_139","name":"Leather Boots [Event]","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Boots","minLevel":1,"def":12,"mDef":12,"material":"Leather"},{"itemId":635033,"className":"E_HAND01_139","name":"Leather Gloves [Event]","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Gloves","minLevel":1,"def":12,"mDef":12,"material":"Leather"},{"itemId":635034,"className":"E_TOP01_121","name":"Brigandine Armor [Event]","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Shirt","minLevel":1,"def":19,"mDef":19,"material":"Leather"},{"itemId":635035,"className":"E_LEG01_121","name":"Brigandine Pants [Event]","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Pants","minLevel":1,"def":19,"mDef":19,"material":"Leather"},{"itemId":635036,"className":"E_FOOT01_121","name":"Brigandine Boots [Event]","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Boots","minLevel":1,"def":12,"mDef":12,"material":"Leather"},{"itemId":635037,"className":"E_HAND01_121","name":"Brigandine Gloves [Event]","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Gloves","minLevel":1,"def":12,"mDef":12,"material":"Leather"},{"itemId":635044,"className":"E_SHD04_104","name":"[Event][Appearance] Solmiki Shield","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":92,"mDef":92,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":635054,"className":"E_HAIR_M_116","name":"[EVENT] Cockatrice Head (Male)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"CockatriesM"}},{"itemId":635055,"className":"E_HAIR_F_117","name":"[EVENT] Cockatrice Head (Female)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"CockatriesF"}},{"itemId":635056,"className":"E_BRC04_101","name":"[EVENT] Sissel Bracelet","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":14551,"sellPrice":0,"equipType1":"Ring","minLevel":170,"minAtk":98,"maxAtk":98,"pAtk":21,"mAtk":98},{"itemId":635057,"className":"E_BRC02_109","name":"[EVENT] Wizard Bracelet","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":14551,"sellPrice":0,"equipType1":"Ring","minLevel":170,"minAtk":78,"maxAtk":78,"mAtk":78,"addMAtk":32},{"itemId":635058,"className":"E_BRC03_108","name":"[EVENT] Archmage Bangle","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":19603,"sellPrice":0,"equipType1":"Ring","minLevel":220,"minAtk":111,"maxAtk":111,"mAtk":111,"addMAtk":40},{"itemId":635059,"className":"E_BRC04_103","name":"[EVENT] Phada","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":19603,"sellPrice":0,"equipType1":"Ring","minLevel":220,"minAtk":126,"maxAtk":126,"pAtk":30,"mAtk":126},{"itemId":635060,"className":"E_BRC03_120","name":"[EVENT] Dhrag Bracelet","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":24000,"sellPrice":0,"equipType1":"Ring","minLevel":270,"minAtk":136,"maxAtk":136,"mAtk":136,"addMDef":20},{"itemId":635061,"className":"E_FOOT04_101","name":"[EVENT] Wind Runner","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Boots","minLevel":75,"def":240,"mDef":240,"material":"Leather"},{"itemId":635071,"className":"E_SHD04_102","name":"[EVENT] Aias","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":4536,"sellPrice":0,"equipType1":"Shield","minLevel":50,"def":660,"mDef":660,"material":"Shield"},{"itemId":635081,"className":"E_TOP01_121_2","name":"[Level Up Event] Brigandine Armor","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":3276,"sellPrice":2431,"equipType1":"Shirt","minLevel":40,"def":145,"mDef":145,"material":"Leather"},{"itemId":635082,"className":"E_LEG01_121_2","name":"[Level Up Event] Brigandine Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":3276,"sellPrice":2431,"equipType1":"Pants","minLevel":40,"def":145,"mDef":145,"material":"Leather"},{"itemId":635083,"className":"E_HAND01_121_2","name":"[Level Up Event] Brigandine Gloves","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":1638,"sellPrice":1215,"equipType1":"Gloves","minLevel":40,"def":97,"mDef":97,"material":"Leather"},{"itemId":635084,"className":"E_FOOT01_121_2","name":"[Level Up Event] Brigandine Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":1638,"sellPrice":1215,"equipType1":"Boots","minLevel":40,"def":97,"mDef":97,"material":"Leather"},{"itemId":635094,"className":"E_TOP01_148","name":"[Level Up Event] Skirmisher Tunic","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":14256,"sellPrice":5820,"equipType1":"Shirt","minLevel":125,"def":421,"mDef":421,"material":"Leather"},{"itemId":635095,"className":"E_LEG01_148","name":"[Level Up Event] Superior Skirmisher Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":14256,"sellPrice":4516,"equipType1":"Pants","minLevel":125,"def":421,"mDef":421,"material":"Leather"},{"itemId":635096,"className":"E_HAND01_148","name":"[Level Up Event] Superior Skirmisher Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":7128,"sellPrice":2182,"equipType1":"Gloves","minLevel":125,"def":280,"mDef":280,"material":"Leather"},{"itemId":635097,"className":"E_FOOT01_148","name":"[Level Up Event] Superior Skirmisher Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":7128,"sellPrice":2213,"equipType1":"Boots","minLevel":125,"def":280,"mDef":280,"material":"Leather"},{"itemId":635108,"className":"E_TOP01_204","name":"[Level Up Event] Blint Leather Robe","type":"Equip","group":"Armor","weight":125,"maxStack":1,"price":29405,"sellPrice":8784,"equipType1":"Shirt","minLevel":225,"def":745,"mDef":745,"material":"Leather"},{"itemId":635109,"className":"E_LEG01_204","name":"[Level Up Event] Blint Leather Pants","type":"Equip","group":"Armor","weight":125,"maxStack":1,"price":29405,"sellPrice":8784,"equipType1":"Pants","minLevel":225,"def":745,"mDef":745,"material":"Leather"},{"itemId":635110,"className":"E_HAND01_204","name":"[Level Up Event] Blint Leather Gloves","type":"Equip","group":"Armor","weight":27,"maxStack":1,"price":14702,"sellPrice":4392,"equipType1":"Gloves","minLevel":225,"def":496,"mDef":496,"material":"Leather"},{"itemId":635111,"className":"E_FOOT01_204","name":"[Level Up Event] Blint Leather Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":14702,"sellPrice":4392,"equipType1":"Boots","minLevel":225,"def":496,"mDef":496,"material":"Leather"},{"itemId":635122,"className":"E_Artefact_631001","name":"[Event] Shining Four Leaf Clover","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Ring","minLevel":1},{"itemId":635139,"className":"E2_SHD03_306","name":"[Event] Savior's Shield (30 Days)","type":"Equip","group":"Armor","weight":90,"maxStack":1,"price":8106,"sellPrice":5000,"equipType1":"Shield","minLevel":100,"def":5760,"mDef":0,"addMDef":138,"material":"Iron"},{"itemId":635140,"className":"E2_TOP03_130","name":"[Event] Savior's Robe (30 Days)","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":12159,"sellPrice":8784,"equipType1":"Shirt","minLevel":100,"def":864,"mDef":1728,"material":"Cloth"},{"itemId":635141,"className":"E2_LEG03_130","name":"[Event] Savior's Pants (30 Days)","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":12159,"sellPrice":8784,"equipType1":"Pants","minLevel":100,"def":864,"mDef":1728,"material":"Cloth"},{"itemId":635142,"className":"E2_HAND03_130","name":"[Event] Savior's Gloves (30 Days)","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":6079,"sellPrice":4392,"equipType1":"Gloves","minLevel":100,"def":576,"mDef":1152,"material":"Cloth"},{"itemId":635143,"className":"E2_FOOT03_130","name":"[Event] Savior's Boots (30 Days)","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":6079,"sellPrice":4392,"equipType1":"Boots","minLevel":100,"def":576,"mDef":1152,"material":"Cloth"},{"itemId":635144,"className":"E2_TOP03_131","name":"[Event] Savior's Leather Armor (30 Days)","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":12159,"sellPrice":8784,"equipType1":"Shirt","minLevel":100,"def":1296,"mDef":1296,"material":"Leather"},{"itemId":635145,"className":"E2_LEG03_131","name":"[Event] Savior's Leather Pants (30 Days)","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":12159,"sellPrice":8784,"equipType1":"Pants","minLevel":100,"def":1296,"mDef":1296,"material":"Leather"},{"itemId":635146,"className":"E2_FOOT03_131","name":"[Event] Savior's Leather Boots (30 Days)","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":6079,"sellPrice":4392,"equipType1":"Boots","minLevel":100,"def":864,"mDef":864,"material":"Leather"},{"itemId":635147,"className":"E2_HAND03_131","name":"[Event] Savior's Leather Gloves (30 Days)","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":6079,"sellPrice":4392,"equipType1":"Gloves","minLevel":100,"pAtk":19,"def":864,"mDef":864,"material":"Leather"},{"itemId":635148,"className":"E2_TOP03_132","name":"[Event] Savior's Plate Mail (30 Days)","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":12159,"sellPrice":8784,"equipType1":"Shirt","minLevel":100,"def":1728,"mDef":864,"material":"Iron","fireRes":23},{"itemId":635149,"className":"E2_LEG03_132","name":"[Event] Savior's Plate Leggings (30 Days)","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":12159,"sellPrice":8784,"equipType1":"Pants","minLevel":100,"def":1728,"mDef":864,"material":"Iron","fireRes":21},{"itemId":635150,"className":"E2_FOOT03_132","name":"[Event] Savior's Plate Greaves (30 Days)","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":6079,"sellPrice":4392,"equipType1":"Boots","minLevel":100,"def":1152,"mDef":576,"material":"Iron"},{"itemId":635151,"className":"E2_HAND03_132","name":"[Event] Savior's Plate Gauntlets (30 Days)","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":6079,"sellPrice":4392,"equipType1":"Gloves","minLevel":100,"def":1152,"mDef":576,"material":"Iron"},{"itemId":635152,"className":"E2_NECK03_112","name":"[Event] Savior's Medal (30 Days)","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":8106,"sellPrice":3920,"equipType1":"Neck","minLevel":100},{"itemId":635153,"className":"E2_NECK03_113","name":"[Event] Savior's Necklace (30 Days)","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":8106,"sellPrice":3920,"equipType1":"Neck","minLevel":100},{"itemId":635154,"className":"E2_BRC03_112","name":"[Event] Savior's Band (30 Days)","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":8106,"sellPrice":3920,"equipType1":"Ring","minLevel":100,"pAtk":25},{"itemId":635155,"className":"E2_BRC03_113","name":"[Event] Savior's Bracelet (30 Days)","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":8106,"sellPrice":3920,"equipType1":"Ring","minLevel":100,"addMAtk":45},{"itemId":635158,"className":"E_TOP03_130","name":"[Event] Newt Robe","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Shirt","minLevel":270,"def":726,"mDef":1452,"material":"Cloth"},{"itemId":635159,"className":"E_TOP03_131","name":"[Event] Newt Leather Armor","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Shirt","minLevel":270,"def":1089,"mDef":1089,"material":"Leather"},{"itemId":635160,"className":"E_TOP03_132","name":"[Event] Newt Plate Armor","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Shirt","minLevel":270,"def":1452,"mDef":726,"material":"Iron","fireRes":23},{"itemId":635161,"className":"E_LEG03_130","name":"[Event] Newt Pants","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Pants","minLevel":270,"def":726,"mDef":1452,"material":"Cloth"},{"itemId":635162,"className":"E_LEG03_131","name":"[Event] Newt Leather Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Pants","minLevel":270,"def":1089,"mDef":1089,"material":"Leather"},{"itemId":635163,"className":"E_LEG03_132","name":"[Event] Newt Plate Leggings","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":36000,"sellPrice":8784,"equipType1":"Pants","minLevel":270,"def":1452,"mDef":726,"material":"Iron","fireRes":21},{"itemId":635164,"className":"E_FOOT03_130","name":"[Event] Newt Boots","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Boots","minLevel":270,"def":484,"mDef":968,"material":"Cloth"},{"itemId":635165,"className":"E_FOOT03_131","name":"[Event] Newt Leather Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Boots","minLevel":270,"def":726,"mDef":726,"material":"Leather"},{"itemId":635166,"className":"E_FOOT03_132","name":"[Event] Newt Plate Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Boots","minLevel":270,"def":968,"mDef":484,"material":"Iron"},{"itemId":635167,"className":"E_HAND03_130","name":"[Event] Newt Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Gloves","minLevel":270,"def":484,"mDef":968,"material":"Cloth"},{"itemId":635168,"className":"E_HAND03_131","name":"[Event] Newt Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Gloves","minLevel":270,"pAtk":19,"def":726,"mDef":726,"material":"Leather"},{"itemId":635169,"className":"E_HAND03_132","name":"[Event] Newt Plate Gauntlets","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":18000,"sellPrice":4392,"equipType1":"Gloves","minLevel":270,"def":968,"mDef":484,"material":"Iron"},{"itemId":635191,"className":"TOP01_124_EVENT_1710_NEWCHARACTER","name":"[Event] Vubbe Armor ( 30 Days)","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Shirt","minLevel":15,"def":79,"mDef":79,"material":"Leather"},{"itemId":635192,"className":"LEG01_124_EVENT_1710_NEWCHARACTER","name":"[Event] Vubbe Pants (30 Days)","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":2592,"sellPrice":518,"equipType1":"Pants","minLevel":15,"def":79,"mDef":79,"material":"Leather"},{"itemId":635202,"className":"TOP01_106_EVENT_1710_NEWCHARACTER","name":"[Event] Mark Tunic (30 Days)","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Shirt","minLevel":40,"def":178,"mDef":178,"material":"Leather"},{"itemId":635203,"className":"LEG01_106_EVENT_1710_NEWCHARACTER","name":"[Event] Mark Pants (30 Days)","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":3276,"sellPrice":1360,"equipType1":"Pants","minLevel":40,"def":178,"mDef":178,"material":"Leather"},{"itemId":635213,"className":"TOP01_121_EVENT_1710_NEWCHARACTER","name":"[Event] Brigandine Armor (30 Days)","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Shirt","minLevel":75,"def":316,"mDef":316,"material":"Leather"},{"itemId":635214,"className":"LEG01_121_EVENT_1710_NEWCHARACTER","name":"[Event] Brigandine Pants (30 Days)","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":7724,"sellPrice":2431,"equipType1":"Pants","minLevel":75,"def":316,"mDef":316,"material":"Leather"},{"itemId":635224,"className":"TOP01_142_EVENT_1710_NEWCHARACTER","name":"[Event] Hunting Armor (30 Days)","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":13968,"sellPrice":3874,"equipType1":"Shirt","minLevel":120,"def":495,"mDef":495,"material":"Leather"},{"itemId":635225,"className":"LEG01_142_EVENT_1710_NEWCHARACTER","name":"[Event] Hunting Pants (30 Days)","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":13968,"sellPrice":3874,"equipType1":"Pants","minLevel":120,"def":495,"mDef":495,"material":"Leather"},{"itemId":635236,"className":"TOP01_151_EVENT_1710_NEWCHARACTER","name":"[Event] Veteran Tunic (30 Days)","type":"Equip","group":"Armor","weight":125,"maxStack":1,"price":21826,"sellPrice":5881,"equipType1":"Shirt","minLevel":170,"def":693,"mDef":693,"material":"Leather"},{"itemId":635237,"className":"LEG01_151_EVENT_1710_NEWCHARACTER","name":"[Event] Veteran Pants (30 Days)","type":"Equip","group":"Armor","weight":125,"maxStack":1,"price":21826,"sellPrice":5881,"equipType1":"Pants","minLevel":170,"def":693,"mDef":693,"material":"Leather"},{"itemId":635249,"className":"TOP01_155_EVENT_1710_NEWCHARACTER","name":"[Event] Bandit Armor (30 Days)","type":"Equip","group":"Armor","weight":125,"maxStack":1,"price":29405,"sellPrice":7113,"equipType1":"Shirt","minLevel":220,"def":891,"mDef":891,"material":"Leather"},{"itemId":635250,"className":"LEG01_155_EVENT_1710_NEWCHARACTER","name":"[Event] Bandit Pants (30 Days)","type":"Equip","group":"Armor","weight":125,"maxStack":1,"price":29405,"sellPrice":5881,"equipType1":"Pants","minLevel":220,"def":891,"mDef":891,"material":"Leather"},{"itemId":635251,"className":"LEG04_130_STEMA_DLC","name":"Primus Irellis Pants [Untradable]","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":350,"def":1065,"mDef":2130,"material":"Cloth"},{"itemId":635252,"className":"LEG04_131_STEMA_DLC","name":"Primus Jevenellis Leather Pants [Untradable]","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":350,"def":1597,"mDef":1597,"material":"Leather"},{"itemId":635253,"className":"LEG04_132_STEMA_DLC","name":"Primus Basticle Plate Pants [Untradable]","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":350,"def":2130,"mDef":1065,"material":"Iron"},{"itemId":635254,"className":"TOP04_130_STEMA_DLC","name":"Primus Irellis Robe [Untradable]","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":350,"def":1065,"mDef":2130,"material":"Cloth"},{"itemId":635255,"className":"TOP04_131_STEMA_DLC","name":"Primus Jevenellis Leather Armor [Untradable]","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":350,"def":1597,"mDef":1597,"material":"Leather"},{"itemId":635256,"className":"TOP04_132_STEMA_DLC","name":"Primus Basticle Plate Armor [Untradable]","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":350,"def":2130,"mDef":1065,"material":"Iron"},{"itemId":635257,"className":"HAND04_131_STEMA_DLC","name":"Primus Irellis Gloves [Untradable]","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":350,"def":710,"mDef":1420,"material":"Cloth"},{"itemId":635258,"className":"HAND04_132_STEMA_DLC","name":"Primus Jevenellis Leather Gloves [Untradable]","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":350,"def":1065,"mDef":1065,"material":"Leather"},{"itemId":635259,"className":"HAND04_133_STEMA_DLC","name":"Primus Basticle Gauntlets [Untradable]","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":350,"def":1420,"mDef":710,"material":"Iron"},{"itemId":635260,"className":"FOOT04_130_STEMA_DLC","name":"Primus Irellis Boots [Untradable]","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Boots","minLevel":350,"def":710,"mDef":1420,"material":"Cloth"},{"itemId":635261,"className":"FOOT04_131_STEMA_DLC","name":"Primus Jevenellis Leather Boots [Untradable]","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Boots","minLevel":350,"def":1065,"mDef":1065,"material":"Leather"},{"itemId":635262,"className":"FOOT04_132_STEMA_DLC","name":"Primus Basticle Greaves [Untradable]","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Boots","minLevel":350,"def":1420,"mDef":710,"material":"Iron"},{"itemId":635278,"className":"SHD04_112_STEMA_DLC","name":"Primus Raffye Shield [Untradable]","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":33279,"sellPrice":0,"equipType1":"Shield","minLevel":350,"def":4260,"mDef":0,"material":"Iron"},{"itemId":635294,"className":"SHD04_105_STEAM_NT","name":"Emengard Shield [Untradable]","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":29280,"sellPrice":8868,"equipType1":"Shield","minLevel":315,"def":3840,"mDef":0,"addDef":22,"addMDef":440,"material":"Iron"},{"itemId":635295,"className":"TOP04_127_STEAM_NT","name":"Primus Oksinis Robe [Untradable]","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Shirt","minLevel":315,"def":960,"mDef":1920,"material":"Cloth"},{"itemId":635296,"className":"TOP04_128_STEAM_NT","name":"Primus Kaulas Leather Armor [Untradable]","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Shirt","minLevel":315,"def":1440,"mDef":1440,"material":"Leather"},{"itemId":635297,"className":"TOP04_129_STEAM_NT","name":"Primus Krisius Plate Armor [Untradable]","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Shirt","minLevel":315,"def":1920,"mDef":960,"material":"Iron"},{"itemId":635298,"className":"LEG04_127_STEAM_NT","name":"Primus Oksinis Pants [Untradable]","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Pants","minLevel":315,"def":960,"mDef":1920,"material":"Cloth"},{"itemId":635299,"className":"LEG04_128_STEAM_NT","name":"Primus Kaulas Leather Pants [Untradable]","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Pants","minLevel":315,"def":1440,"mDef":1440,"material":"Leather"},{"itemId":635300,"className":"LEG04_129_STEAM_NT","name":"Primus Krisius Plate Pants [Untradable]","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Pants","minLevel":315,"def":1920,"mDef":960,"material":"Iron"},{"itemId":635301,"className":"HAND04_128_STEAM_NT","name":"Primus Oksinis Gloves [Untradable]","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Gloves","minLevel":315,"def":640,"mDef":1280,"material":"Cloth"},{"itemId":635302,"className":"HAND04_129_STEAM_NT","name":"Primus Kaulas Leather Gloves [Untradable]","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Gloves","minLevel":315,"def":960,"mDef":960,"material":"Leather"},{"itemId":635303,"className":"HAND04_130_STEAM_NT","name":"Primus Krisius Gauntlets [Untradable]","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Gloves","minLevel":315,"def":1280,"mDef":640,"material":"Iron"},{"itemId":635304,"className":"FOOT04_127_STEAM_NT","name":"Primus Oksinis Boots [Untradable]","type":"Equip","group":"Armor","weight":25,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Boots","minLevel":315,"def":640,"mDef":1280,"material":"Cloth"},{"itemId":635305,"className":"FOOT04_128_STEAM_NT","name":"Primus Kaulas Leather Boots [Untradable]","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Boots","minLevel":315,"def":960,"mDef":960,"material":"Leather"},{"itemId":635306,"className":"FOOT04_129_STEAM_NT","name":"Primus Krisius Greaves [Untradable]","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Boots","minLevel":315,"def":1280,"mDef":640,"material":"Iron"},{"itemId":635321,"className":"TOP04_125_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Albinosas Leather Armor (30 Days)","type":"Equip","group":"Armor","weight":160,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Shirt","minLevel":270,"def":1237,"mDef":1237,"material":"Leather"},{"itemId":635322,"className":"LEG04_125_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Albinosas Leather Pants (30 Days)","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Pants","minLevel":270,"def":1237,"mDef":1237,"material":"Leather"},{"itemId":635337,"className":"TOP04_128_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Kaulas Leather Armor (30 Days)","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Shirt","minLevel":315,"def":1440,"mDef":1440,"material":"Leather"},{"itemId":635338,"className":"LEG04_128_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Kaulas Leather Pants (30 Days)","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Pants","minLevel":315,"def":1440,"mDef":1440,"material":"Leather"},{"itemId":635341,"className":"EVENT_1803_Hat_628305","name":"[Event] Pink Candy","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":635349,"className":"SHD03_313_1710_NEWCHARACTER","name":"Berthas Raffye Shield ","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":33279,"sellPrice":0,"equipType1":"Shield","minLevel":350,"def":3748,"mDef":3748,"material":"Shield"},{"itemId":635367,"className":"SHD04_112_1807_NEWCHARACTER","name":"[Event] Primus Raffye Shield (30 Days)","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":33279,"sellPrice":0,"equipType1":"Shield","minLevel":350,"def":4260,"mDef":4260,"material":"Shield"},{"itemId":635376,"className":"TOP04_131_1807_NEWCHARACTER","name":"[Event] Primus Jenevellis Leather Armor (30 Days)","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":350,"def":1597,"mDef":1597,"material":"Leather"},{"itemId":635377,"className":"LEG04_131_1807_NEWCHARACTER","name":"[Event] Primus Jenevellis Leather Pants (30 Days)","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":350,"def":1597,"mDef":1597,"material":"Leather"},{"itemId":635385,"className":"SHD03_313_1710_Steam_Friend_Event","name":"[Friend] Berthas Raffye Shield ","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":33279,"sellPrice":0,"equipType1":"Shield","minLevel":350,"def":3748,"mDef":0,"material":"Iron"},{"itemId":635409,"className":"SHD04_105_STEAM_Returning_Event","name":"[Return] Emengard Shield (30 Days)","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":19603,"sellPrice":0,"equipType1":"Shield","minLevel":230,"def":3840,"mDef":0,"addDef":22,"addMDef":440,"material":"Iron"},{"itemId":635419,"className":"SHD04_113_NEWCHARACTER","name":"[Re:Build] Masinios Shield","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":33279,"sellPrice":0,"equipType1":"Shield","minLevel":350,"def":4260,"mDef":4260,"addMDef":437,"material":"Shield","strike":234},{"itemId":635436,"className":"SHD01_102_NEWCHARACTER","name":"[Event] Wooden Buckler (30 Days)","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":1728,"sellPrice":0,"equipType1":"Shield","minLevel":15,"def":211,"mDef":211,"material":"Shield"},{"itemId":635437,"className":"SHD01_105_NEWCHARACTER","name":"[Event] Round Shield (30 Days)","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":2184,"sellPrice":0,"equipType1":"Shield","minLevel":40,"def":475,"mDef":475,"material":"Shield"},{"itemId":635438,"className":"SHD03_309_NEWCHARACTER","name":"[Event] Berthas Sketis Shield (30 Days)","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":5149,"sellPrice":0,"equipType1":"Shield","minLevel":75,"def":844,"mDef":844,"material":"Shield"},{"itemId":635439,"className":"SHD03_307_NEWCHARACTER","name":"[Event] Berthas Spike Kindl (30 Days)","type":"Equip","group":"Armor","weight":88,"maxStack":1,"price":9312,"sellPrice":0,"equipType1":"Shield","minLevel":120,"def":1320,"mDef":1320,"material":"Shield"},{"itemId":635440,"className":"SHD03_308_NEWCHARACTER","name":"[Event] Berthas Rodeleine Shield (30 Days)","type":"Equip","group":"Armor","weight":112,"maxStack":1,"price":14551,"sellPrice":0,"equipType1":"Shield","minLevel":170,"def":1848,"mDef":1848,"material":"Shield"},{"itemId":635441,"className":"SHD03_310_NEWCHARACTER","name":"[Event] Berthas Pajoritas Shield (30 Days)","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":19603,"sellPrice":0,"equipType1":"Shield","minLevel":220,"def":2376,"mDef":2376,"material":"Shield"},{"itemId":635442,"className":"SHD04_110_NEWCHARACTER","name":"[Event] Primus Migantis Shield (30 Days)","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":24000,"sellPrice":0,"equipType1":"Shield","minLevel":270,"def":3300,"mDef":3300,"material":"Shield"},{"itemId":635443,"className":"SHD04_111_NEWCHARACTER","name":"[Event] Primus Pevordimas Shield (30 Days)","type":"Equip","group":"Armor","weight":90,"maxStack":1,"price":29280,"sellPrice":0,"equipType1":"Shield","minLevel":315,"def":3840,"mDef":3840,"material":"Shield"},{"itemId":635466,"className":"SHD04_115_EVENT_1812_XMAS","name":"[Event] Wastrel Zvaigzde Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Shield","minLevel":380,"def":4620,"mDef":4620,"addMDef":358,"material":"Shield"},{"itemId":635482,"className":"SHD04_116_EVENT_1812_XMAS","name":"[Event] Asio Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Shield","minLevel":380,"def":4620,"mDef":4620,"addMDef":357,"material":"Shield"},{"itemId":635498,"className":"SHD04_113_NEWCHARACTER2","name":"[Event] Masinios Shield","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":33279,"sellPrice":0,"equipType1":"Shield","minLevel":350,"def":4260,"mDef":4260,"addMDef":437,"material":"Shield","strike":234},{"itemId":635507,"className":"Steam_Event_costume_Com_17","name":"Male Festival Costume (30 Days)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":635508,"className":"Steam_Event_costume_Com_18","name":"Female Festival Costume (30 Days)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":635541,"className":"Event_SHD05_103","name":"[Event] Savinose Legva Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Shield","minLevel":400,"def":6220,"mDef":6220,"material":"Shield"},{"itemId":635542,"className":"Event_HAND05_107","name":"[Event] Savinose Pilgriste Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1036,"mDef":2073,"material":"Cloth"},{"itemId":635543,"className":"Event_FOOT05_107","name":"[Event] Savinose Pilgriste Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1036,"mDef":2073,"material":"Cloth"},{"itemId":635544,"className":"Event_LEG05_107","name":"[Event] Savinose Pilgriste Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":1555,"mDef":3110,"material":"Cloth"},{"itemId":635545,"className":"Event_TOP05_107","name":"[Event] Savinose Pilgriste Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":1555,"mDef":3110,"material":"Cloth"},{"itemId":635546,"className":"Event_HAND05_108","name":"[Event] Savinose Vymedzai Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1555,"mDef":1555,"material":"Leather"},{"itemId":635547,"className":"Event_FOOT05_108","name":"[Event] Savinose Vymedzai Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1555,"mDef":1555,"material":"Leather"},{"itemId":635548,"className":"Event_LEG05_108","name":"[Event] Savinose Vymedzai Leather Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":2332,"mDef":2332,"material":"Leather"},{"itemId":635549,"className":"Event_TOP05_108","name":"[Event] Savniose Vymedzai Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":2332,"mDef":2332,"material":"Leather"},{"itemId":635550,"className":"Event_HAND05_109","name":"[Event] Savinose Akmo Gauntlets","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":2073,"mDef":1036,"material":"Iron"},{"itemId":635551,"className":"Event_FOOT05_109","name":"[Event] Savinose Akmo Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":2073,"mDef":1036,"material":"Iron"},{"itemId":635552,"className":"Event_LEG05_109","name":"[Event] Savinose Akmo Plate Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":3110,"mDef":1555,"material":"Iron"},{"itemId":635553,"className":"Event_TOP05_109","name":"[Event] Savinose Akmo Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":3110,"mDef":1555,"material":"Iron"},{"itemId":635561,"className":"SHD04_116_EVENT_NewChar01","name":"[Event] Asio Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Shield","minLevel":380,"def":4620,"mDef":4620,"addMDef":357,"material":"Shield"},{"itemId":635588,"className":"FOREVER_SHD05_103","name":"[4ever] Savinose Legva Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Shield","minLevel":400,"def":6220,"mDef":6220,"material":"Shield"},{"itemId":635589,"className":"FOREVER_HAND05_107","name":"[4ever] Savinose Pilgriste Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1036,"mDef":2073,"material":"Cloth"},{"itemId":635590,"className":"FOREVER_FOOT05_107","name":"[4ever] Savinose Pilgriste Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1036,"mDef":2073,"material":"Cloth"},{"itemId":635591,"className":"FOREVER_LEG05_107","name":"[4ever] Savinose Pilgriste Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":1555,"mDef":3110,"material":"Cloth"},{"itemId":635592,"className":"FOREVER_TOP05_107","name":"[4ever] Savinose Pilgriste Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":1555,"mDef":3110,"material":"Cloth"},{"itemId":635593,"className":"FOREVER_HAND05_108","name":"[4ever] Savinose Vymedzai Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1555,"mDef":1555,"material":"Leather"},{"itemId":635594,"className":"FOREVER_FOOT05_108","name":"[4ever] Savinose Vymedzai Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1555,"mDef":1555,"material":"Leather"},{"itemId":635595,"className":"FOREVER_LEG05_108","name":"[4ever] Savinose Vymedzai Leather Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":2332,"mDef":2332,"material":"Leather"},{"itemId":635596,"className":"FOREVER_TOP05_108","name":"[4ever] Savinose Vymedzai Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":2332,"mDef":2332,"material":"Leather"},{"itemId":635597,"className":"FOREVER_HAND05_109","name":"[4ever] Savinose Akmo Gauntlet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":2073,"mDef":1036,"material":"Iron"},{"itemId":635598,"className":"FOREVER_FOOT05_109","name":"[4ever] Savinose Akmo Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":2073,"mDef":1036,"material":"Iron"},{"itemId":635599,"className":"FOREVER_LEG05_109","name":"[4ever] Savinose Akmo Plate Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":3110,"mDef":1555,"material":"Iron"},{"itemId":635600,"className":"FOREVER_TOP05_109","name":"[4ever] Savinose Akmo Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":3110,"mDef":1555,"material":"Iron"},{"itemId":635616,"className":"2020NEWYEAR_SHD05_103","name":"[Blossom Pack] Savinose Legva Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Shield","minLevel":400,"def":6220,"mDef":6220,"material":"Shield"},{"itemId":635617,"className":"2020NEWYEAR_HAND05_107","name":"[Blossom Pack] Savinose Pilgriste Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1036,"mDef":2073,"material":"Cloth"},{"itemId":635618,"className":"2020NEWYEAR_FOOT05_107","name":"[Blossom Pack] Savinose Pilgriste Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1036,"mDef":2073,"material":"Cloth"},{"itemId":635619,"className":"2020NEWYEAR_LEG05_107","name":"[Blossom Pack] Savinose Pilgriste Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":1555,"mDef":3110,"material":"Cloth"},{"itemId":635620,"className":"2020NEWYEAR_TOP05_107","name":"[Blossom Pack] Savinose Pilgriste Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":1555,"mDef":3110,"material":"Cloth"},{"itemId":635621,"className":"2020NEWYEAR_HAND05_108","name":"[Blossom Pack] Savinose Vymedzai Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1555,"mDef":1555,"material":"Leather"},{"itemId":635622,"className":"2020NEWYEAR_FOOT05_108","name":"[Blossom Pack] Savinose Vymedzai Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1555,"mDef":1555,"material":"Leather"},{"itemId":635623,"className":"2020NEWYEAR_LEG05_108","name":"[Blossom Pack] Savinose Vymedzai Leather Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":2332,"mDef":2332,"material":"Leather"},{"itemId":635624,"className":"2020NEWYEAR_TOP05_108","name":"[Blossom Pack] Savinose Vymedzai Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":2332,"mDef":2332,"material":"Leather"},{"itemId":635625,"className":"2020NEWYEAR_HAND05_109","name":"[Blossom Pack] Savinose Akmo Gauntlets","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":2073,"mDef":1036,"material":"Iron"},{"itemId":635626,"className":"2020NEWYEAR_FOOT05_109","name":"[Blossom Pack] Savinose Akmo Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":2073,"mDef":1036,"material":"Iron"},{"itemId":635627,"className":"2020NEWYEAR_LEG05_109","name":"[Blossom Pack] Savinose Akmo Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":3110,"mDef":1555,"material":"Iron"},{"itemId":635628,"className":"2020NEWYEAR_TOP05_109","name":"[Blossom Pack] Savinose Akmo Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":3110,"mDef":1555,"material":"Iron"},{"itemId":635637,"className":"EVENT_1803_Hat_628305_NoTrade","name":"[Event] Pink Candy","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":636010,"className":"T_TOP01_139","name":"[Kupole] Leather Armor","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Shirt","minLevel":1,"def":729,"mDef":729,"material":"Leather"},{"itemId":636011,"className":"T_LEG01_139","name":"[Kupole] Leather Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Pants","minLevel":1,"def":729,"mDef":729,"material":"Leather"},{"itemId":636012,"className":"T_FOOT01_139","name":"[Kupole] Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Boots","minLevel":1,"def":486,"mDef":486,"material":"Leather"},{"itemId":636013,"className":"T_HAND01_139","name":"[Kupole] Leather Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Gloves","minLevel":1,"def":486,"mDef":486,"material":"Leather"},{"itemId":636014,"className":"T_TOP01_140","name":"[Kupole] Mage Robe","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Shirt","minLevel":1,"def":486,"mDef":972,"material":"Cloth"},{"itemId":636015,"className":"T_LEG01_140","name":"[Kupole] Mage Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Pants","minLevel":1,"def":486,"mDef":972,"material":"Cloth"},{"itemId":636016,"className":"T_FOOT01_140","name":"[Kupole] Mage Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Boots","minLevel":1,"def":324,"mDef":648,"material":"Cloth"},{"itemId":636017,"className":"T_HAND01_140","name":"[Kupole] Mage Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Gloves","minLevel":1,"def":324,"mDef":648,"material":"Cloth"},{"itemId":636018,"className":"T_TOP01_141","name":"[Kupole] Plate Mail","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Shirt","minLevel":1,"def":972,"mDef":486,"material":"Iron"},{"itemId":636019,"className":"T_LEG01_141","name":"[Kupole] Plate Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Pants","minLevel":1,"def":972,"mDef":486,"material":"Iron"},{"itemId":636020,"className":"T_FOOT01_141","name":"[Kupole] Plate Greaves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Boots","minLevel":1,"def":648,"mDef":324,"material":"Iron"},{"itemId":636021,"className":"T_HAND01_141","name":"[Kupole] Plate Gauntlets","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Gloves","minLevel":1,"def":648,"mDef":324,"material":"Iron"},{"itemId":636022,"className":"T_NECK100_101","name":"[Kupole] Kupole Necklace","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":91,"maxAtk":91,"mAtk":91},{"itemId":636023,"className":"T_BRC100_101","name":"[Kupole] Kupole Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":91,"maxAtk":91,"mAtk":91,"addMinAtk":2},{"itemId":636024,"className":"T_SHD100_101","name":"[Kupole] Steel Buckler","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":1944,"mDef":1944,"material":"Shield"},{"itemId":636044,"className":"T_SHD03_110","name":"[Kupole] Lion Head Shield","type":"Equip","group":"Armor","weight":80,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":3379,"mDef":3379,"addDef":15,"addMDef":325,"material":"Shield"},{"itemId":636052,"className":"SHD04_113_NEWCHARACTER_KU","name":"[Kupole] Masinios Shield","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":33279,"sellPrice":0,"equipType1":"Shield","minLevel":350,"def":4260,"mDef":4260,"addMDef":437,"material":"Shield","strike":234},{"itemId":636110,"className":"PC_TOP01_139","name":"ITEM_20230425_028548","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Shirt","minLevel":1,"def":34,"mDef":34,"material":"Leather","script":{"strArg":"PC_Equip"}},{"itemId":636111,"className":"PC_LEG01_139","name":"ITEM_20230425_028549","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Pants","minLevel":1,"def":34,"mDef":34,"material":"Leather","script":{"strArg":"PC_Equip"}},{"itemId":636112,"className":"PC_FOOT01_139","name":"ITEM_20230425_028550","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Boots","minLevel":1,"def":23,"mDef":23,"material":"Leather","script":{"strArg":"PC_Equip"}},{"itemId":636113,"className":"PC_HAND01_139","name":"ITEM_20230425_028551","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Gloves","minLevel":1,"def":23,"mDef":23,"material":"Leather","script":{"strArg":"PC_Equip"}},{"itemId":636114,"className":"PC_TOP01_140","name":"ITEM_20230425_028552","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Shirt","minLevel":1,"def":23,"mDef":46,"material":"Cloth","script":{"strArg":"PC_Equip"}},{"itemId":636115,"className":"PC_LEG01_140","name":"ITEM_20230425_028553","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Pants","minLevel":1,"def":23,"mDef":46,"material":"Cloth","script":{"strArg":"PC_Equip"}},{"itemId":636116,"className":"PC_FOOT01_140","name":"ITEM_20230425_028554","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Boots","minLevel":1,"def":15,"mDef":30,"material":"Cloth","script":{"strArg":"PC_Equip"}},{"itemId":636117,"className":"PC_HAND01_140","name":"ITEM_20230425_028555","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Gloves","minLevel":1,"def":15,"mDef":30,"material":"Cloth","script":{"strArg":"PC_Equip"}},{"itemId":636118,"className":"PC_TOP01_141","name":"ITEM_20230425_028556","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Shirt","minLevel":1,"def":46,"mDef":23,"material":"Iron","script":{"strArg":"PC_Equip"}},{"itemId":636119,"className":"PC_LEG01_141","name":"ITEM_20230425_028557","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Pants","minLevel":1,"def":46,"mDef":23,"material":"Iron","script":{"strArg":"PC_Equip"}},{"itemId":636120,"className":"PC_FOOT01_141","name":"ITEM_20230425_028558","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Boots","minLevel":1,"def":30,"mDef":15,"material":"Iron","script":{"strArg":"PC_Equip"}},{"itemId":636121,"className":"PC_HAND01_141","name":"ITEM_20230425_028559","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Gloves","minLevel":1,"def":30,"mDef":15,"material":"Iron","script":{"strArg":"PC_Equip"}},{"itemId":636122,"className":"PC_SHD100_101","name":"ITEM_20230425_028560","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":92,"mDef":92,"material":"Shield","script":{"strArg":"PC_Equip"}},{"itemId":636222,"className":"ChangeJob_SHD100_101","name":"Shield","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"Growth_Item"}},{"itemId":636310,"className":"NEWYEAR_WEAPON_SHD100_101","name":"[Wake Up] Shield","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":72,"mDef":72,"material":"Shield","script":{"strArg":"Growth_Item_Unique"}},{"itemId":636410,"className":"POPO_SHOP_3D_SHD100_101","name":"[Popo Shop] Shield (3 Days)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":63,"mDef":63,"material":"Shield","script":{"strArg":"Growth_Item_Rare"}},{"itemId":636460,"className":"POPO_SHOP_7D_SHD100_101","name":"[Popo Shop] Shield (7 Days)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":63,"mDef":63,"material":"Shield","script":{"strArg":"Growth_Item_Rare"}},{"itemId":636510,"className":"STEAM_TO_BEGIN_1_SHD04_117","name":"To begin: Shield","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":72,"mDef":72,"material":"Shield","script":{"strArg":"Growth_Item_Unique"}},{"itemId":636616,"className":"PVP_SHD05_103","name":"Savinose Legva Shield (20 min)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":6220,"mDef":6220,"material":"Shield","script":{"strArg":"pvp_Mine"}},{"itemId":636617,"className":"PVP_HAND05_107","name":"Savinose Pilgriste Gloves (20 min)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Gloves","minLevel":1,"def":1036,"mDef":2073,"material":"Cloth","script":{"strArg":"pvp_Mine"}},{"itemId":636618,"className":"PVP_FOOT05_107","name":"Savinose Pilgriste Boots (20 min)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Boots","minLevel":1,"def":1036,"mDef":2073,"material":"Cloth","script":{"strArg":"pvp_Mine"}},{"itemId":636619,"className":"PVP_LEG05_107","name":"Savinose Pilgriste Pants (20 min)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Pants","minLevel":1,"def":1555,"mDef":3110,"material":"Cloth","script":{"strArg":"pvp_Mine"}},{"itemId":636620,"className":"PVP_TOP05_107","name":"Savinose Pilgriste Robe (20 min)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Shirt","minLevel":1,"def":1555,"mDef":3110,"material":"Cloth","script":{"strArg":"pvp_Mine"}},{"itemId":636621,"className":"PVP_HAND05_108","name":"Savinose Vymedzai Leather Gloves (20 min)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Gloves","minLevel":1,"def":1555,"mDef":1555,"material":"Leather","script":{"strArg":"pvp_Mine"}},{"itemId":636622,"className":"PVP_FOOT05_108","name":"Savinose Vymedzai Leather Boots (20 min)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Boots","minLevel":1,"def":1555,"mDef":1555,"material":"Leather","script":{"strArg":"pvp_Mine"}},{"itemId":636623,"className":"PVP_LEG05_108","name":"Savinose Vymedzai Leather Pants (20 min)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Pants","minLevel":1,"def":2332,"mDef":2332,"material":"Leather","script":{"strArg":"pvp_Mine"}},{"itemId":636624,"className":"PVP_TOP05_108","name":"Savniose Vymedzai Leather Armor (20 min)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Shirt","minLevel":1,"def":2332,"mDef":2332,"material":"Leather","script":{"strArg":"pvp_Mine"}},{"itemId":636625,"className":"PVP_HAND05_109","name":"Savinose Akmo Gauntlets (20 min)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Gloves","minLevel":1,"def":2073,"mDef":1036,"material":"Iron","script":{"strArg":"pvp_Mine"}},{"itemId":636626,"className":"PVP_FOOT05_109","name":"Savinose Akmo Greaves (20 min)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Boots","minLevel":1,"def":2073,"mDef":1036,"material":"Iron","script":{"strArg":"pvp_Mine"}},{"itemId":636627,"className":"PVP_LEG05_109","name":"Savinose Akmo Plate Pants (20 min)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Pants","minLevel":1,"def":3110,"mDef":1555,"material":"Iron","script":{"strArg":"pvp_Mine"}},{"itemId":636628,"className":"PVP_TOP05_109","name":"Savinose Akmo Plate Armor (20 min)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Shirt","minLevel":1,"def":3110,"mDef":1555,"material":"Iron","script":{"strArg":"pvp_Mine"}},{"itemId":636629,"className":"PVP_NECK04_115","name":"Nepagristas Necklace (20 min)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":199,"maxAtk":199,"mAtk":199,"script":{"strArg":"pvp_Mine"}},{"itemId":636630,"className":"PVP_NECK04_116","name":"Nematomas Necklace (20 min)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":199,"maxAtk":199,"mAtk":199,"addMaxAtk":123,"script":{"strArg":"pvp_Mine"}},{"itemId":636631,"className":"PVP_NECK04_117","name":"Rangovas Necklace (20 min)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":199,"maxAtk":199,"mAtk":199,"addMDef":152,"script":{"strArg":"pvp_Mine"}},{"itemId":636632,"className":"PVP_NECK04_118","name":"Abyss Irredian Necklace (20 min)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":216,"maxAtk":216,"mAtk":216,"addMaxAtk":235,"script":{"strArg":"pvp_Mine"}},{"itemId":636633,"className":"PVP_NECK04_119","name":"Cevisa Irredian Necklace (20 min)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":216,"maxAtk":216,"mAtk":216,"addDef":432,"script":{"strArg":"pvp_Mine"}},{"itemId":636634,"className":"PVP_BRC04_115","name":"Nepagristas Bracelet (20 min)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":4780,"equipType1":"Ring","minLevel":1,"minAtk":199,"maxAtk":199,"pAtk":30,"mAtk":199,"script":{"strArg":"pvp_Mine"}},{"itemId":636635,"className":"PVP_BRC04_116","name":"Nematomas Bracelet (20 min)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":4780,"equipType1":"Ring","minLevel":1,"minAtk":199,"maxAtk":199,"mAtk":199,"addMaxAtk":125,"script":{"strArg":"pvp_Mine"}},{"itemId":636636,"className":"PVP_BRC04_117","name":"Rangovas Bracelet (20 min)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":4780,"equipType1":"Ring","minLevel":1,"minAtk":199,"maxAtk":199,"mAtk":199,"addDef":40,"script":{"strArg":"pvp_Mine"}},{"itemId":636637,"className":"PVP_BRC04_118","name":"Abyss Irredian Bracelet (20 min)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":4780,"equipType1":"Ring","minLevel":1,"minAtk":216,"maxAtk":216,"mAtk":216,"script":{"strArg":"pvp_Mine"}},{"itemId":636638,"className":"PVP_BRC04_119","name":"Cevisa Irredian Bracelet (20 min)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":4780,"equipType1":"Ring","minLevel":1,"minAtk":216,"maxAtk":216,"mAtk":216,"addMDef":235,"script":{"strArg":"pvp_Mine"}},{"itemId":636653,"className":"PVP_SHD04_122","name":"Vaivora Shield - Concentrated Defence (20 minutes)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":5220,"mDef":5220,"material":"Shield","script":{"strArg":"pvp_Mine"}},{"itemId":636683,"className":"PVP_EP12_NECK05_HIGH_001","name":"Karaliene Juoda Necklace (20 minutes)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"pvp_Mine"}},{"itemId":636684,"className":"PVP_EP12_NECK05_HIGH_002","name":"Karaliene Isgarinti Necklace (20 minutes)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"pvp_Mine"}},{"itemId":636685,"className":"PVP_EP12_NECK05_HIGH_003","name":"Karaliene Kantribe Necklace (20 minutes)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":312,"maxAtk":312,"mAtk":312,"addDef":2500,"script":{"strArg":"pvp_Mine"}},{"itemId":636686,"className":"PVP_EP12_NECK05_HIGH_004","name":"Karaliene Vargeras Necklace (20 minutes)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":312,"maxAtk":312,"mAtk":312,"addMDef":2500,"script":{"strArg":"pvp_Mine"}},{"itemId":636687,"className":"PVP_EP12_NECK05_HIGH_005","name":"Karaliene Pyktis Necklace (20 minutes)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"pvp_Mine"}},{"itemId":636688,"className":"PVP_EP12_NECK05_HIGH_006","name":"Karaliene Triukas Necklace (20 minutes)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"pvp_Mine"}},{"itemId":636689,"className":"PVP_EP12_NECK05_HIGH_007","name":"Karaliene Prideti Necklace (20 minutes)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"pvp_Mine"}},{"itemId":636690,"className":"PVP_EP12_BRC05_HIGH_001","name":"Karaliene Juoda Bracelet (20 minutes)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"pvp_Mine"}},{"itemId":636691,"className":"PVP_EP12_BRC05_HIGH_002","name":"Karaliene Isgarinti Bracelet (20 minutes)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"pvp_Mine"}},{"itemId":636692,"className":"PVP_EP12_BRC05_HIGH_003","name":"Karaliene Kantribe Bracelet (20 minutes)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":6655,"equipType1":"Ring","minLevel":1,"minAtk":312,"maxAtk":312,"mAtk":312,"addDef":1250,"script":{"strArg":"pvp_Mine"}},{"itemId":636693,"className":"PVP_EP12_BRC05_HIGH_004","name":"Karaliene Vargeras Bracelet (20 Minutes)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":6655,"equipType1":"Ring","minLevel":1,"minAtk":312,"maxAtk":312,"mAtk":312,"addMDef":1250,"script":{"strArg":"pvp_Mine"}},{"itemId":636694,"className":"PVP_EP12_BRC05_HIGH_005","name":"Karaliene Pyktis Bracelet (20 minutes)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":6655,"equipType1":"Ring","minLevel":1,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"pvp_Mine"}},{"itemId":636695,"className":"PVP_EP12_BRC05_HIGH_006","name":"Karaliene Triukas Bracelet (20 minutes)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":6655,"equipType1":"Ring","minLevel":1,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"pvp_Mine"}},{"itemId":636696,"className":"PVP_EP12_BRC05_HIGH_007","name":"Karaliene Prideti Bracelet (20 minutes)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":6655,"equipType1":"Ring","minLevel":1,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"pvp_Mine"}},{"itemId":636708,"className":"Event_SHD05_104","name":"[Moonlight] Skiaclipse Varna Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Shield","minLevel":400,"def":6220,"mDef":6220,"material":"Shield"},{"itemId":636811,"className":"NEWYEAR_WEAPON_SHD100_102","name":"[Harvest] Shield","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":92,"mDef":92,"material":"Shield","script":{"strArg":"Growth_Item_Legend"}},{"itemId":636901,"className":"Grimoire_TOP04_139","name":"[Event] Ignas Robe","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Shirt","minLevel":380,"def":1155,"mDef":2310,"material":"Cloth"},{"itemId":636902,"className":"Grimoire_TOP04_140","name":"[Event] Ignas Leather Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Shirt","minLevel":380,"def":1732,"mDef":1732,"material":"Leather"},{"itemId":636903,"className":"Grimoire_TOP04_141","name":"[Event] Ignas Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Shirt","minLevel":380,"def":2310,"mDef":1155,"material":"Iron"},{"itemId":636904,"className":"Grimoire_LEG04_139","name":"[Event] Ignas Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Pants","minLevel":380,"def":1155,"mDef":2310,"material":"Cloth"},{"itemId":636905,"className":"Grimoire_LEG04_140","name":"[Event] Ignas Leather Pants","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Pants","minLevel":380,"def":1732,"mDef":1732,"material":"Leather"},{"itemId":636906,"className":"Grimoire_LEG04_141","name":"[Event] Ignas Plate Pants","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Pants","minLevel":380,"def":2310,"mDef":1155,"material":"Iron"},{"itemId":636907,"className":"Grimoire_FOOT04_139","name":"[Event] Ignas Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Boots","minLevel":380,"def":770,"mDef":1540,"material":"Cloth"},{"itemId":636908,"className":"Grimoire_FOOT04_140","name":"[Event] Ignas Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Boots","minLevel":380,"def":1155,"mDef":1155,"material":"Leather"},{"itemId":636909,"className":"Grimoire_FOOT04_141","name":"[Event] Ignas Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Boots","minLevel":380,"def":1540,"mDef":770,"material":"Iron"},{"itemId":636910,"className":"Grimoire_HAND04_140","name":"[Event] Ignas Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Gloves","minLevel":380,"def":770,"mDef":1540,"material":"Cloth"},{"itemId":636911,"className":"Grimoire_HAND04_141","name":"[Event] Ignas Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Gloves","minLevel":380,"def":1155,"mDef":1155,"material":"Leather"},{"itemId":636912,"className":"Grimoire_HAND04_142","name":"[Event] Ignas Plate Gauntlet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Gloves","minLevel":380,"def":1540,"mDef":770,"material":"Iron"},{"itemId":636924,"className":"Grimoire_SHD04_116","name":"[Event] Asio Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Shield","minLevel":380,"def":4620,"mDef":4620,"addMDef":357,"material":"Shield"},{"itemId":636940,"className":"Grimoire_SHD04_115","name":"[Event] Wastrel Zvaigzde Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Shield","minLevel":380,"def":4620,"mDef":4620,"addMDef":358,"material":"Shield"},{"itemId":637017,"className":"wing_inspector_bundle","name":"Knapsack","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637019,"className":"wing_inspector_scroll2","name":"Top Secret Royal Scrolls","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637999,"className":"WingTest","name":"Wing Test","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":638000,"className":"SpecialCostume_ShadowMancer","name":"Winter Night","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"SpecialCostume","minLevel":1},{"itemId":638001,"className":"SpecialCostume_Matador","name":"Clear End","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"SpecialCostume","minLevel":1},{"itemId":638002,"className":"SpecialCostume_BulletMarker","name":"Tuned Fireworks","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"SpecialCostume","minLevel":1},{"itemId":638003,"className":"SpecialCostume_Zealot","name":"Prophecy Wings","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"SpecialCostume","minLevel":1},{"itemId":638004,"className":"SpecialCostume_Retiarii","name":"Missio Galerus","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"SpecialCostume","minLevel":1},{"itemId":638005,"className":"SpecialCostume_Onmyoji","name":"Regents Diploma Sash","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"SpecialCostume","minLevel":1},{"itemId":638006,"className":"SpecialCostume_Exorcist","name":"Vertex Beacon","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"SpecialCostume","minLevel":1},{"itemId":638007,"className":"SpecialCostume_PiedPiper","name":"The Blessings of Terpsichora","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"SpecialCostume","minLevel":1},{"itemId":638008,"className":"SpecialCostume_Outlaw","name":"Savelock","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"SpecialCostume","minLevel":1},{"itemId":638009,"className":"SpecialCostume_sanpo","name":"Doggaebi Epaulet","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"SpecialCostume","minLevel":1},{"itemId":638010,"className":"SpecialCostume_mat","name":"Wings of Victory","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"SpecialCostume","minLevel":1},{"itemId":638011,"className":"SpecialCostume_serip","name":"Star Badge","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"SpecialCostume","minLevel":1},{"itemId":638012,"className":"SpecialCostume_ardit","name":"Grenade","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"SpecialCostume","minLevel":1},{"itemId":638013,"className":"SpecialCostume_BlossomBlader","name":"Blossom Epaulette","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"SpecialCostume","minLevel":1},{"itemId":638014,"className":"SpecialCostume_TerraMancer","name":"Communion Bangle","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"SpecialCostume","minLevel":1},{"itemId":638015,"className":"SpecialCostume_Arbalester","name":"Commander Loop","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"SpecialCostume","minLevel":1},{"itemId":638016,"className":"SpecialCostume_Arquebusier","name":"Tassel of Punishment","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"SpecialCostume","minLevel":1},{"itemId":638017,"className":"SpecialCostume_Crusader","name":"Austas Emblem","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"SpecialCostume","minLevel":1},{"itemId":638018,"className":"SpecialCostume_Clown","name":"Persona","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"SpecialCostume","minLevel":1},{"itemId":639000,"className":"Hat_700000","name":"Half Lycanthropy","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":639001,"className":"HAIR_M_10000","name":"Half Lycanthropy (M)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"hair_lycan"}},{"itemId":639002,"className":"HAIR_F_10000","name":"Half Lycanthropy (F)","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"hair_lycan"}},{"itemId":639003,"className":"costume_lycan","name":"Half Lycanthropy","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":639004,"className":"costume_lycan_no_tale","name":"Half Lycanthropy","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":639010,"className":"Hat_700001","name":"Dragoon Helmet","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":639716,"className":"SHD01_105_QUEST_REWARD","name":"Kedoran Round Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":2184,"sellPrice":0,"equipType1":"Shield","minLevel":40,"def":475,"mDef":475,"material":"Shield"},{"itemId":639717,"className":"TOP01_126_QUEST_REWARD","name":"Kedoran Acolyte Robe","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":3276,"sellPrice":0,"equipType1":"Shirt","minLevel":40,"def":118,"mDef":237,"material":"Cloth"},{"itemId":639718,"className":"LEG01_126_QUEST_REWARD","name":"Kedoran Acolyte Pants","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":3276,"sellPrice":0,"equipType1":"Pants","minLevel":40,"def":118,"mDef":237,"material":"Cloth"},{"itemId":639719,"className":"FOOT01_126_QUEST_REWARD","name":"Kedoran Acolyte Boots","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":1638,"sellPrice":0,"equipType1":"Boots","minLevel":40,"def":79,"mDef":158,"material":"Cloth"},{"itemId":639720,"className":"HAND01_126_QUEST_REWARD","name":"Kedoran Acolyte Gloves","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":1638,"sellPrice":0,"equipType1":"Gloves","minLevel":40,"def":79,"mDef":158,"material":"Cloth"},{"itemId":639721,"className":"TOP01_106_QUEST_REWARD","name":"Kedoran Mark Tunic","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":3276,"sellPrice":0,"equipType1":"Shirt","minLevel":40,"def":178,"mDef":178,"material":"Leather"},{"itemId":639722,"className":"LEG01_106_QUEST_REWARD","name":"Kedoran Mark Pants","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":3276,"sellPrice":0,"equipType1":"Pants","minLevel":40,"def":178,"mDef":178,"material":"Leather"},{"itemId":639723,"className":"FOOT01_106_QUEST_REWARD","name":"Kedoran Mark Boots","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":1638,"sellPrice":0,"equipType1":"Boots","minLevel":40,"def":118,"mDef":118,"material":"Leather"},{"itemId":639724,"className":"HAND01_106_QUEST_REWARD","name":"Kedoran Mark Gloves","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":1638,"sellPrice":0,"equipType1":"Gloves","minLevel":40,"def":118,"mDef":118,"material":"Leather"},{"itemId":639725,"className":"TOP01_110_QUEST_REWARD","name":"Kedoran Scale Mail","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":3276,"sellPrice":0,"equipType1":"Shirt","minLevel":40,"def":237,"mDef":118,"material":"Iron"},{"itemId":639726,"className":"LEG01_110_QUEST_REWARD","name":"Kedoran Scale Leggings","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":3276,"sellPrice":0,"equipType1":"Pants","minLevel":40,"def":237,"mDef":118,"material":"Iron"},{"itemId":639727,"className":"FOOT01_110_QUEST_REWARD","name":"Kedoran Scale Boots","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":1638,"sellPrice":0,"equipType1":"Boots","minLevel":40,"def":158,"mDef":79,"material":"Iron"},{"itemId":639728,"className":"HAND01_110_QUEST_REWARD","name":"Kedoran Scale Gloves","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":1638,"sellPrice":0,"equipType1":"Gloves","minLevel":40,"def":158,"mDef":79,"material":"Iron"},{"itemId":639744,"className":"SHD01_113_QUEST_REWARD","name":"Kedoran Scallop Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":5149,"sellPrice":0,"equipType1":"Shield","minLevel":75,"def":844,"mDef":844,"material":"Shield"},{"itemId":639745,"className":"TOP01_153_QUEST_REWARD","name":"Kedoran Superior Grima Robe","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Shirt","minLevel":75,"def":211,"mDef":422,"material":"Cloth"},{"itemId":639746,"className":"LEG01_153_QUEST_REWARD","name":"Kedoran Superior Grima Pants","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Pants","minLevel":75,"def":211,"mDef":422,"material":"Cloth"},{"itemId":639747,"className":"FOOT01_153_QUEST_REWARD","name":"Kedoran Superior Grima Boots","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Boots","minLevel":75,"def":140,"mDef":281,"material":"Cloth"},{"itemId":639748,"className":"HAND01_153_QUEST_REWARD","name":"Superior Grima Gloves","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Gloves","minLevel":75,"def":140,"mDef":281,"material":"Cloth"},{"itemId":639749,"className":"TOP01_113_QUEST_REWARD","name":"Kedroan Hard Veris Tunic","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Shirt","minLevel":75,"def":316,"mDef":316,"material":"Leather"},{"itemId":639750,"className":"LEG01_113_QUEST_REWARD","name":"Kedoran Hard Veris Pants","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Pants","minLevel":75,"def":316,"mDef":316,"material":"Leather"},{"itemId":639751,"className":"FOOT01_113_QUEST_REWARD","name":"Kedoran Hard Veris Boots","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Boots","minLevel":75,"def":211,"mDef":211,"material":"Leather"},{"itemId":639752,"className":"HAND01_113_QUEST_REWARD","name":"Kedoran Hard Veris Gloves","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Gloves","minLevel":75,"def":211,"mDef":211,"material":"Leather"},{"itemId":639753,"className":"TOP01_137_QUEST_REWARD","name":"Kedoran Full Plate Armor","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Shirt","minLevel":75,"def":422,"mDef":211,"material":"Iron"},{"itemId":639754,"className":"LEG01_137_QUEST_REWARD","name":"Kedoran Full Plate Leggings","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":7724,"sellPrice":0,"equipType1":"Pants","minLevel":75,"def":422,"mDef":211,"material":"Iron"},{"itemId":639755,"className":"FOOT01_137_QUEST_REWARD","name":"Kedoran Full Plate Greaves","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Boots","minLevel":75,"def":281,"mDef":140,"material":"Iron"},{"itemId":639756,"className":"HAND01_137_QUEST_REWARD","name":"Kedoran Full Plate Gauntlets","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":3862,"sellPrice":0,"equipType1":"Gloves","minLevel":75,"def":281,"mDef":140,"material":"Iron"},{"itemId":639772,"className":"SHD01_115_QUEST_REWARD","name":"Kedoran Fedimian Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":9312,"sellPrice":0,"equipType1":"Shield","minLevel":120,"def":1320,"mDef":1320,"material":"Shield"},{"itemId":639773,"className":"TOP01_138_QUEST_REWARD","name":"Kedoran Fedimian Robe","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Shirt","minLevel":120,"def":330,"mDef":660,"material":"Cloth"},{"itemId":639774,"className":"LEG01_138_QUEST_REWARD","name":"Kedoran Fedimian Pants","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Pants","minLevel":120,"def":330,"mDef":660,"material":"Cloth"},{"itemId":639775,"className":"FOOT01_138_QUEST_REWARD","name":"Kedoran Fedimian Boots","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Boots","minLevel":120,"def":220,"mDef":440,"material":"Cloth"},{"itemId":639776,"className":"HAND01_138_QUEST_REWARD","name":"Kedoran Fedimian Gloves","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Gloves","minLevel":120,"def":220,"mDef":440,"material":"Cloth"},{"itemId":639777,"className":"TOP01_139_QUEST_REWARD","name":"Kedoran Fedimian Leather Armor","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Shirt","minLevel":120,"def":495,"mDef":495,"material":"Leather"},{"itemId":639778,"className":"LEG01_139_QUEST_REWARD","name":"Kedoran Fedimian Leather Pants","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Pants","minLevel":120,"def":495,"mDef":495,"material":"Leather"},{"itemId":639779,"className":"FOOT01_139_QUEST_REWARD","name":"Kedoran Fedimian Leather Boots","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Boots","minLevel":120,"def":330,"mDef":330,"material":"Leather"},{"itemId":639780,"className":"HAND01_139_QUEST_REWARD","name":"Kedoran Fedimian Leather Gloves","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Gloves","minLevel":120,"def":330,"mDef":330,"material":"Leather"},{"itemId":639781,"className":"TOP01_140_QUEST_REWARD","name":"Kedoran Fedimian Armor","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Shirt","minLevel":120,"def":660,"mDef":330,"material":"Iron"},{"itemId":639782,"className":"LEG01_140_QUEST_REWARD","name":"Kedoran Fedimian Leggings","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Pants","minLevel":120,"def":660,"mDef":330,"material":"Iron"},{"itemId":639783,"className":"FOOT01_140_QUEST_REWARD","name":"Kedoran Fedimian Greaves","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Boots","minLevel":120,"def":440,"mDef":220,"material":"Iron"},{"itemId":639784,"className":"HAND01_140_QUEST_REWARD","name":"Kedoran Fedimian Gauntlets","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Gloves","minLevel":120,"def":440,"mDef":220,"material":"Iron"},{"itemId":639800,"className":"SHD03_101_QUEST_REWARD","name":"Kedoran Wall Guard","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":14551,"sellPrice":0,"equipType1":"Shield","minLevel":170,"def":1848,"mDef":1848,"material":"Shield"},{"itemId":639801,"className":"TOP03_111_QUEST_REWARD","name":"Kedoran Roxona Robe","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":21826,"sellPrice":0,"equipType1":"Shirt","minLevel":170,"def":462,"mDef":924,"material":"Cloth"},{"itemId":639802,"className":"LEG03_111_QUEST_REWARD","name":"Kedoran Roxona Pants","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":21826,"sellPrice":0,"equipType1":"Pants","minLevel":170,"def":462,"mDef":924,"material":"Cloth","lightningRes":9},{"itemId":639803,"className":"FOOT03_111_QUEST_REWARD","name":"Kedoran Roxona Boots","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":10913,"sellPrice":0,"equipType1":"Boots","minLevel":170,"def":308,"mDef":616,"material":"Cloth"},{"itemId":639804,"className":"HAND03_111_QUEST_REWARD","name":"Kedoran Roxona Gloves","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":10913,"sellPrice":0,"equipType1":"Gloves","minLevel":170,"pAtk":5,"def":308,"mDef":616,"material":"Cloth"},{"itemId":639805,"className":"TOP03_112_QUEST_REWARD","name":"Kedoran Roxona Leather Armor","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":21826,"sellPrice":0,"equipType1":"Shirt","minLevel":170,"def":693,"mDef":693,"material":"Leather"},{"itemId":639806,"className":"LEG03_112_QUEST_REWARD","name":"Kedoran Roxona Leather Pants","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":21826,"sellPrice":0,"equipType1":"Pants","minLevel":170,"def":693,"mDef":693,"material":"Leather","ariesDef":7,"darkRes":8},{"itemId":639807,"className":"FOOT03_112_QUEST_REWARD","name":"Kedoran Roxona Leather Boots","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":10913,"sellPrice":0,"equipType1":"Boots","minLevel":170,"def":462,"mDef":462,"material":"Leather"},{"itemId":639808,"className":"HAND03_112_QUEST_REWARD","name":"Kedoran Roxona Leather Gloves","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":10913,"sellPrice":0,"equipType1":"Gloves","minLevel":170,"def":462,"mDef":462,"material":"Leather"},{"itemId":639809,"className":"TOP03_113_QUEST_REWARD","name":"Kedoran Roxona Plate Armor","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":21826,"sellPrice":0,"equipType1":"Shirt","minLevel":170,"def":924,"mDef":462,"material":"Iron","iceRes":8},{"itemId":639810,"className":"LEG03_113_QUEST_REWARD","name":"Kedoran Roxona Plate Pants","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":21826,"sellPrice":0,"equipType1":"Pants","minLevel":170,"def":924,"mDef":462,"material":"Iron","iceRes":6},{"itemId":639811,"className":"FOOT03_113_QUEST_REWARD","name":"Kedoran Roxona Plate Boots","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":10913,"sellPrice":0,"equipType1":"Boots","minLevel":170,"def":616,"mDef":308,"material":"Iron"},{"itemId":639812,"className":"HAND03_113_QUEST_REWARD","name":"Kedoran Roxona Plate Gauntlets","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":10913,"sellPrice":0,"equipType1":"Gloves","minLevel":170,"def":616,"mDef":308,"material":"Iron"},{"itemId":639828,"className":"SHD02_119_QUEST_REWARD","name":"Kedoran Didel Tower Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":19603,"sellPrice":0,"equipType1":"Shield","minLevel":220,"def":2376,"mDef":2376,"addMDef":96,"material":"Shield"},{"itemId":639829,"className":"TOP03_114_QUEST_REWARD","name":"Kedoran Virtov Robe","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":29405,"sellPrice":0,"equipType1":"Shirt","minLevel":220,"def":594,"mDef":1188,"material":"Cloth"},{"itemId":639830,"className":"LEG03_114_QUEST_REWARD","name":"Kedoran Virtov Pants","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":29405,"sellPrice":0,"equipType1":"Pants","minLevel":220,"def":594,"mDef":1188,"material":"Cloth"},{"itemId":639831,"className":"FOOT03_114_QUEST_REWARD","name":"Kedoran Virtov Boots","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":14702,"sellPrice":0,"equipType1":"Boots","minLevel":220,"def":396,"mDef":792,"material":"Cloth"},{"itemId":639832,"className":"HAND03_114_QUEST_REWARD","name":"Kedoran Virtov Gloves","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":14702,"sellPrice":0,"equipType1":"Gloves","minLevel":220,"def":396,"mDef":792,"material":"Cloth"},{"itemId":639833,"className":"TOP03_115_QUEST_REWARD","name":"Kedoran Virtov Leather Robes","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":29405,"sellPrice":0,"equipType1":"Shirt","minLevel":220,"def":891,"mDef":891,"material":"Leather"},{"itemId":639834,"className":"LEG03_115_QUEST_REWARD","name":"Kedoran Virtov Leather Pants","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":29405,"sellPrice":0,"equipType1":"Pants","minLevel":220,"def":891,"mDef":891,"material":"Leather"},{"itemId":639835,"className":"FOOT03_115_QUEST_REWARD","name":"Kedoran Virtov Leather Boots","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":14702,"sellPrice":0,"equipType1":"Boots","minLevel":220,"def":594,"mDef":594,"material":"Leather"},{"itemId":639836,"className":"HAND03_115_QUEST_REWARD","name":"Kedoran Virtov Leather Gloves","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":14702,"sellPrice":0,"equipType1":"Gloves","minLevel":220,"pAtk":19,"def":594,"mDef":594,"material":"Leather"},{"itemId":639837,"className":"TOP03_116_QUEST_REWARD","name":"Kedoran Virtov Plate Robes","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":29405,"sellPrice":0,"equipType1":"Shirt","minLevel":220,"def":1188,"mDef":594,"material":"Iron","fireRes":23},{"itemId":639838,"className":"LEG03_116_QUEST_REWARD","name":"Kedoran Virtov Plate Pants","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":29405,"sellPrice":0,"equipType1":"Pants","minLevel":220,"def":1188,"mDef":594,"material":"Iron","fireRes":21},{"itemId":639839,"className":"FOOT03_116_QUEST_REWARD","name":"Kedoran Virtov Plate Boots","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":14702,"sellPrice":0,"equipType1":"Boots","minLevel":220,"def":792,"mDef":396,"material":"Iron"},{"itemId":639840,"className":"HAND03_116_QUEST_REWARD","name":"Kedoran Virtov Plate Gloves","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":14702,"sellPrice":0,"equipType1":"Gloves","minLevel":220,"def":792,"mDef":396,"material":"Iron"},{"itemId":639856,"className":"SHD04_105_QUEST_REWARD_NT","name":"Kedoran Emengard Shield","type":"Equip","group":"Armor","weight":100,"maxStack":1,"price":29280,"sellPrice":8868,"equipType1":"Shield","minLevel":315,"def":3840,"mDef":3840,"addDef":22,"addMDef":440,"material":"Shield"},{"itemId":639872,"className":"SHD04_112_QUEST_REWARD","name":"Kedoran Raffye Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":33279,"sellPrice":0,"equipType1":"Shield","minLevel":350,"def":4260,"mDef":4260,"material":"Shield"},{"itemId":639880,"className":"SHD04_114_QUEST_REWARD","name":"Kedoran Zvaigzde Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Shield","minLevel":380,"def":4620,"mDef":4620,"material":"Shield"},{"itemId":639890,"className":"TOP04_136_QUEST_REWARD","name":"Kedoran Planeta Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Shirt","minLevel":380,"def":1155,"mDef":2310,"material":"Cloth"},{"itemId":639892,"className":"TOP04_137_QUEST_REWARD","name":"Kedoran Ukas Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Shirt","minLevel":380,"def":1732,"mDef":1732,"material":"Leather"},{"itemId":639893,"className":"TOP04_138_QUEST_REWARD","name":"Kedoran Galaktikos Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Shirt","minLevel":380,"def":2310,"mDef":1155,"material":"Iron"},{"itemId":639894,"className":"LEG04_136_QUEST_REWARD","name":"Kedoran Planeta Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Pants","minLevel":380,"def":1155,"mDef":2310,"material":"Cloth"},{"itemId":639895,"className":"LEG04_137_QUEST_REWARD","name":"Kedoran Ukas Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Pants","minLevel":380,"def":1732,"mDef":1732,"material":"Leather"},{"itemId":639896,"className":"LEG04_138_QUEST_REWARD","name":"Kedoran Galaktikos Plate Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":51291,"sellPrice":0,"equipType1":"Pants","minLevel":380,"def":2310,"mDef":1155,"material":"Iron"},{"itemId":639897,"className":"FOOT04_133_QUEST_REWARD","name":"Kedoran Planeta Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Boots","minLevel":380,"def":770,"mDef":1540,"material":"Cloth"},{"itemId":639898,"className":"FOOT04_134_QUEST_REWARD","name":"Kedoran Ukas Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Boots","minLevel":380,"def":1155,"mDef":1155,"material":"Leather"},{"itemId":639899,"className":"FOOT04_135_QUEST_REWARD","name":"Kedoran Galaktikos Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Boots","minLevel":380,"def":1540,"mDef":770,"material":"Iron"},{"itemId":639900,"className":"HAND04_137_QUEST_REWARD","name":"Kedoran Planeta Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Gloves","minLevel":380,"def":770,"mDef":1540,"material":"Cloth"},{"itemId":639901,"className":"HAND04_138_QUEST_REWARD","name":"Kedoran Ukas Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Gloves","minLevel":380,"def":1155,"mDef":1155,"material":"Leather"},{"itemId":639902,"className":"HAND04_139_QUEST_REWARD","name":"Kedoran Galaktikos Gauntlets","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":25645,"sellPrice":0,"equipType1":"Gloves","minLevel":380,"def":1540,"mDef":770,"material":"Iron"},{"itemId":639910,"className":"SHD04_110_QUEST_REWARD","name":"Kedoran Primus Migantis Shield","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":24000,"sellPrice":0,"equipType1":"Shield","minLevel":270,"def":3300,"mDef":3300,"material":"Shield"},{"itemId":639919,"className":"TOP04_124_QUEST_REWARD","name":"Kedoran Primus Kalinis Robe","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Shirt","minLevel":270,"def":825,"mDef":1650,"material":"Cloth"},{"itemId":639920,"className":"TOP04_125_QUEST_REWARD","name":"Kedoran Primus Albinosas Leather Armor","type":"Equip","group":"Armor","weight":160,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Shirt","minLevel":270,"def":1237,"mDef":1237,"material":"Leather"},{"itemId":639921,"className":"TOP04_126_QUEST_REWARD","name":"Kedoran Primus Tajtanas Plate Armor","type":"Equip","group":"Armor","weight":230,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Shirt","minLevel":270,"def":1650,"mDef":825,"material":"Iron"},{"itemId":639922,"className":"LEG04_124_QUEST_REWARD","name":"Kedoran Primus Kalinis Pants","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Pants","minLevel":270,"def":825,"mDef":1650,"material":"Cloth"},{"itemId":639923,"className":"LEG04_125_QUEST_REWARD","name":"Kedoran Primus Albinosas Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Pants","minLevel":270,"def":1237,"mDef":1237,"material":"Leather"},{"itemId":639924,"className":"LEG04_126_QUEST_REWARD","name":"Kedoran Primus Tajtanas Plate Pants","type":"Equip","group":"Armor","weight":220,"maxStack":1,"price":36000,"sellPrice":0,"equipType1":"Pants","minLevel":270,"def":1650,"mDef":825,"material":"Iron"},{"itemId":639925,"className":"FOOT04_124_QUEST_REWARD","name":"Kedoran Primus Kalinis Boots","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":18000,"sellPrice":0,"equipType1":"Boots","minLevel":270,"def":550,"mDef":1100,"material":"Cloth"},{"itemId":639926,"className":"FOOT04_125_QUEST_REWARD","name":"Kedoran Primus Albinosas Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":18000,"sellPrice":0,"equipType1":"Boots","minLevel":270,"def":825,"mDef":825,"material":"Leather"},{"itemId":639927,"className":"FOOT04_126_QUEST_REWARD","name":"Kedoran Primus Tajtanas Greaves","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":18000,"sellPrice":0,"equipType1":"Boots","minLevel":270,"def":1100,"mDef":550,"material":"Iron"},{"itemId":639928,"className":"HAND04_125_QUEST_REWARD","name":"Kedoran Primus Kalinis Gloves","type":"Equip","group":"Armor","weight":25,"maxStack":1,"price":18000,"sellPrice":0,"equipType1":"Gloves","minLevel":270,"def":550,"mDef":1100,"material":"Cloth"},{"itemId":639929,"className":"HAND04_126_QUEST_REWARD","name":"Kedoran Primus Albinosas Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":18000,"sellPrice":0,"equipType1":"Gloves","minLevel":270,"def":825,"mDef":825,"material":"Leather"},{"itemId":639930,"className":"HAND04_127_QUEST_REWARD","name":"Kedoran Primus Tajtanas Gauntlets","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":18000,"sellPrice":0,"equipType1":"Gloves","minLevel":270,"def":1100,"mDef":550,"material":"Iron"},{"itemId":639931,"className":"TOP04_127_QUEST_REWARD","name":"Kedoran Primus Oksinis Robe","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Shirt","minLevel":315,"def":960,"mDef":1920,"material":"Cloth"},{"itemId":639932,"className":"TOP04_128_QUEST_REWARD","name":"Kedoran Primus Kaulas Leather Armor","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Shirt","minLevel":315,"def":1440,"mDef":1440,"material":"Leather"},{"itemId":639933,"className":"TOP04_129_QUEST_REWARD","name":"Kedoran Primus Krisius Plate Armor","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Shirt","minLevel":315,"def":1920,"mDef":960,"material":"Iron"},{"itemId":639934,"className":"LEG04_127_QUEST_REWARD","name":"Kedoran Primus Oksinis Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Pants","minLevel":315,"def":960,"mDef":1920,"material":"Cloth"},{"itemId":639935,"className":"LEG04_128_QUEST_REWARD","name":"Kedoran Primus Kaulas Leather Pants","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Pants","minLevel":315,"def":1440,"mDef":1440,"material":"Leather"},{"itemId":639936,"className":"LEG04_129_QUEST_REWARD","name":"Kedoran Primus Krisius Plate Pants","type":"Equip","group":"Armor","weight":200,"maxStack":1,"price":43920,"sellPrice":0,"equipType1":"Pants","minLevel":315,"def":1920,"mDef":960,"material":"Iron"},{"itemId":639937,"className":"FOOT04_127_QUEST_REWARD","name":"Kedoran Primus Oksinis Boots","type":"Equip","group":"Armor","weight":25,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Boots","minLevel":315,"def":640,"mDef":1280,"material":"Cloth"},{"itemId":639938,"className":"FOOT04_128_QUEST_REWARD","name":"Kedoran Primus Kaulas Leather Boots","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Boots","minLevel":315,"def":960,"mDef":960,"material":"Leather"},{"itemId":639939,"className":"FOOT04_129_QUEST_REWARD","name":"Kedoran Primus Krisius Greaves","type":"Equip","group":"Armor","weight":60,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Boots","minLevel":315,"def":1280,"mDef":640,"material":"Iron"},{"itemId":639940,"className":"HAND04_128_QUEST_REWARD","name":"Kedoran Primus Oksinis Gloves","type":"Equip","group":"Armor","weight":20,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Gloves","minLevel":315,"def":640,"mDef":1280,"material":"Cloth"},{"itemId":639941,"className":"HAND04_129_QUEST_REWARD","name":"Kedoran Primus Kaulas Leather Gloves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Gloves","minLevel":315,"def":960,"mDef":960,"material":"Leather"},{"itemId":639942,"className":"HAND04_130_QUEST_REWARD","name":"Kedoran Primus Krisius Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":21960,"sellPrice":0,"equipType1":"Gloves","minLevel":315,"def":1280,"mDef":640,"material":"Iron"},{"itemId":639943,"className":"TOP04_130_QUEST_REWARD","name":"Kedoran Primus Irellis Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":350,"def":1065,"mDef":2130,"material":"Cloth"},{"itemId":639944,"className":"TOP04_131_QUEST_REWARD","name":"Kedoran Primus Jevenellis Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":350,"def":1597,"mDef":1597,"material":"Leather"},{"itemId":639945,"className":"TOP04_132_QUEST_REWARD","name":"Kedoran Primus Basticle Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Shirt","minLevel":350,"def":2130,"mDef":1065,"material":"Iron"},{"itemId":639946,"className":"LEG04_130_QUEST_REWARD","name":"Kedoran Primus Irellis Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":350,"def":1065,"mDef":2130,"material":"Cloth"},{"itemId":639947,"className":"LEG04_131_QUEST_REWARD","name":"Kedoran Primus Jevenellis Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":350,"def":1597,"mDef":1597,"material":"Leather"},{"itemId":639948,"className":"LEG04_132_QUEST_REWARD","name":"Kedoran Primus Basticle Plate Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":49919,"sellPrice":0,"equipType1":"Pants","minLevel":350,"def":2130,"mDef":1065,"material":"Iron"},{"itemId":639949,"className":"FOOT04_130_QUEST_REWARD","name":"Kedoran Primus Irellis Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Boots","minLevel":350,"def":710,"mDef":1420,"material":"Cloth"},{"itemId":639950,"className":"FOOT04_131_QUEST_REWARD","name":"Kedoran Primus Jevenellis Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Boots","minLevel":350,"def":1065,"mDef":1065,"material":"Leather"},{"itemId":639951,"className":"FOOT04_132_QUEST_REWARD","name":"Kedoran Primus Basticle Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Boots","minLevel":350,"def":1420,"mDef":710,"material":"Iron"},{"itemId":639952,"className":"HAND04_131_QUEST_REWARD","name":"Kedoran Primus Irellis Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":350,"def":710,"mDef":1420,"material":"Cloth"},{"itemId":639953,"className":"HAND04_132_QUEST_REWARD","name":"Kedoran Primus Jevenellis Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":350,"def":1065,"mDef":1065,"material":"Leather"},{"itemId":639954,"className":"HAND04_133_QUEST_REWARD","name":"Kedoran Primus Basticle Gauntlets","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":24959,"sellPrice":0,"equipType1":"Gloves","minLevel":350,"def":1420,"mDef":710,"material":"Iron"},{"itemId":639962,"className":"SHD04_117_QUEST_REWARD","name":"Kedoran Primus Legva Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Shield","minLevel":400,"def":4860,"mDef":4860,"material":"Shield"},{"itemId":639971,"className":"TOP04_142_QUEST_REWARD","name":"Kedoran Primus Pilgriste Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":1215,"mDef":2430,"material":"Cloth"},{"itemId":639972,"className":"TOP04_143_QUEST_REWARD","name":"Kedoran Primus Vymedzai Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":1822,"mDef":1822,"material":"Leather"},{"itemId":639973,"className":"TOP04_144_QUEST_REWARD","name":"Kedoran Primus Akmo Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":2430,"mDef":1215,"material":"Iron"},{"itemId":639974,"className":"LEG04_142_QUEST_REWARD","name":"Kedoran Primus Pilgriste Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":1215,"mDef":2430,"material":"Cloth"},{"itemId":639975,"className":"LEG04_143_QUEST_REWARD","name":"Kedoran Primus Vymedzai Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":1822,"mDef":1822,"material":"Leather"},{"itemId":639976,"className":"LEG04_144_QUEST_REWARD","name":"Kedoran Primus Akmo Plate Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":2430,"mDef":1215,"material":"Iron"},{"itemId":639977,"className":"FOOT04_142_QUEST_REWARD","name":"Kedoran Primus Pilgriste Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":810,"mDef":1620,"material":"Cloth"},{"itemId":639978,"className":"FOOT04_143_QUEST_REWARD","name":"Kedoran Primus Vymedzai Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1215,"mDef":1215,"material":"Leather"},{"itemId":639979,"className":"FOOT04_144_QUEST_REWARD","name":"Kedoran Primus Akmo Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1620,"mDef":810,"material":"Iron"},{"itemId":639980,"className":"HAND04_144_QUEST_REWARD","name":"Kedoran Primus Pilgriste Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":810,"mDef":1620,"material":"Cloth"},{"itemId":639981,"className":"HAND04_145_QUEST_REWARD","name":"Kedoran Primus Vymedzai Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1215,"mDef":1215,"material":"Leather"},{"itemId":639982,"className":"HAND04_146_QUEST_REWARD","name":"Kedoran Primus Akmo Gauntlets","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1620,"mDef":810,"material":"Iron"},{"itemId":750000,"className":"skintone1","name":"Basic Skin 1","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Skin","equipType2":"Premium","minLevel":1,"script":{"strArg":"skintone1"}},{"itemId":750001,"className":"skintone2","name":"Basic Skin 2","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Skin","equipType2":"Premium","minLevel":1,"script":{"strArg":"skintone2"}},{"itemId":750002,"className":"skintone3","name":"Basic Skin 3","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Skin","equipType2":"Premium","minLevel":1,"script":{"strArg":"skintone3"}},{"itemId":750003,"className":"skintone4","name":"Premium Skin 1","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Skin","equipType2":"Premium","minLevel":1,"script":{"strArg":"skintone4"}},{"itemId":750004,"className":"skintone5","name":"Premium Skin 2","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Skin","equipType2":"Premium","minLevel":1,"script":{"strArg":"skintone5"}},{"itemId":750005,"className":"skintone6","name":"Premium Skin 3","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Skin","equipType2":"Premium","minLevel":1,"script":{"strArg":"skintone6"}},{"itemId":750006,"className":"skintone7","name":"Premium Skin 4","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Skin","equipType2":"Premium","minLevel":1,"script":{"strArg":"skintone7"}},{"itemId":750007,"className":"skintone8","name":"Premium Skin 5","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Skin","equipType2":"Premium","minLevel":1,"script":{"strArg":"skintone8"}},{"itemId":750008,"className":"skintone9","name":"Premium Skin 6","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Skin","equipType2":"Premium","minLevel":1,"script":{"strArg":"skintone9"}},{"itemId":830000,"className":"Hat_628030_Adv","name":"Explorer's Rosa Rugosa","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":830001,"className":"Hat_628008_Adv","name":"Explorer's Fedora","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":830002,"className":"Hat_628133_Adv","name":"Explorer's Red Flower Headgear","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":6360002,"className":"Hat_629004_teamtrade","name":"[Event] Popolion Doll","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":6360003,"className":"Hat_628297_teamtrade","name":"[Event] White Cat Ears","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":6360004,"className":"Hat_628316_teamtrade","name":"[Event] Cherry Blossom Hairpin","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":6360005,"className":"Hat_628313_teamtrade","name":"[Event] Smile Orange","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":6360006,"className":"Hat_628295_teamtrade","name":"[Event] Grey Cat Ears","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":6360007,"className":"Hat_628073_teamtrade","name":"[Event] Fried Egg","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":6360111,"className":"FOREVER_WEAPON_SHD100_102","name":"[4ever] Shield","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":92,"mDef":92,"material":"Shield","script":{"strArg":"Growth_Item_Legend"}},{"itemId":6370110,"className":"PVP_SHD04_122_1","name":"Vaivora Shield - Coordination (20 minutes)","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":5220,"mDef":5220,"material":"Shield","script":{"strArg":"pvp_Mine"}},{"itemId":6370117,"className":"PVP_SHD04_122_2","name":"Vaivora Dagger - Shield (20 minutes)","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":5220,"mDef":5220,"material":"Shield","script":{"strArg":"pvp_Mine"}},{"itemId":6530016,"className":"EP11_SHD05_103","name":"[EP11] Savinose Legva Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Shield","minLevel":400,"def":6220,"mDef":6220,"material":"Shield"},{"itemId":6530017,"className":"EP11_HAND05_107","name":"[EP11] Savinose Pilgriste Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1036,"mDef":2073,"material":"Cloth"},{"itemId":6530018,"className":"EP11_FOOT05_107","name":"[EP11] Savinose Pilgriste Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1036,"mDef":2073,"material":"Cloth"},{"itemId":6530019,"className":"EP11_LEG05_107","name":"[EP11] Savinose Pilgriste Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":1555,"mDef":3110,"material":"Cloth"},{"itemId":6530020,"className":"EP11_TOP05_107","name":"[EP11] Savinose Pilgriste Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":1555,"mDef":3110,"material":"Cloth"},{"itemId":6530021,"className":"EP11_HAND05_108","name":"[EP11] Savinose Vymedzai Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1555,"mDef":1555,"material":"Leather"},{"itemId":6530022,"className":"EP11_FOOT05_108","name":"[EP11] Savinose Vymedzai Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1555,"mDef":1555,"material":"Leather"},{"itemId":6530023,"className":"EP11_LEG05_108","name":"[EP11] Savinose Vymedzai Leather Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":2332,"mDef":2332,"material":"Leather"},{"itemId":6530024,"className":"EP11_TOP05_108","name":"[EP11] Savinose Vymedzai Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":2332,"mDef":2332,"material":"Leather"},{"itemId":6530025,"className":"EP11_HAND05_109","name":"[EP11] Savinose Akmo Gauntlets","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":2073,"mDef":1036,"material":"Iron"},{"itemId":6530026,"className":"EP11_FOOT05_109","name":"[EP11] Savinose Akmo Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":2073,"mDef":1036,"material":"Iron"},{"itemId":6530027,"className":"EP11_LEG05_109","name":"[EP11] Savinose Akmo Plate Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":3110,"mDef":1555,"material":"Iron"},{"itemId":6530028,"className":"EP11_TOP05_109","name":"[EP11] Savinose Akmo Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":3110,"mDef":1555,"material":"Iron"},{"itemId":6530030,"className":"test_dynamic","name":"Test item","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":9999993,"className":"NoWeapon_Shield","name":"Empty_weapon","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0},{"itemId":10003143,"className":"Event_Roulette_Glacier_box_2","name":"[Event] Glacia Unique Armor Selection Box","type":"Consume","group":"Armor","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003146,"className":"20Season_Disnai_Aromor_box","name":"[Event] +9 ENH and Stage 8 TRA Savinose Dysnai Armor Selection Box","type":"Consume","group":"Armor","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003213,"className":"20Season_Disnai_Aromor_box_2","name":"[Event] 10 ENH and Stage 5 TRA Savinose Dysnai Armor Selection Box","type":"Consume","group":"Armor","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003344,"className":"2021_NewYear_Disnai_Armor_box","name":"[2021] 11 ENH 10 TRA Savinose Dysnai Armor Selection Box","type":"Consume","group":"Armor","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10300001,"className":"Event_Hat_628376","name":"[Event] White Cat Ear","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":10300047,"className":"EVENT_Hat_629504","name":"Blue Beret","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":10300048,"className":"EVENT_accessory_snowflower","name":"Snowflake Hairpin","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":10300069,"className":"accessory_6th_glasses","name":"[Event] 6th Anniversary Sunglasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":10304000,"className":"Event_NECK04_118","name":"[Event] Abyss Irredian Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Neck","minLevel":380,"minAtk":216,"maxAtk":216,"mAtk":216,"addMaxAtk":235},{"itemId":10304001,"className":"Event_NECK04_119","name":"[Event] Cevisa Irredian Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Neck","minLevel":380,"minAtk":216,"maxAtk":216,"mAtk":216,"addDef":432},{"itemId":10304002,"className":"Event_BRC04_118","name":"[Event] Abyss Irredian Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":34194,"sellPrice":4780,"equipType1":"Ring","minLevel":380,"minAtk":216,"maxAtk":216,"mAtk":216},{"itemId":10304003,"className":"Event_BRC04_119","name":"[Event] Cevisa Irredian Necklace","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":34194,"sellPrice":4780,"equipType1":"Ring","minLevel":380,"minAtk":216,"maxAtk":216,"mAtk":216,"addMDef":235},{"itemId":10304004,"className":"2020_ARBORDAY_NECK05","name":"2020 Botanic Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":110,"maxAtk":110,"mAtk":110,"script":{"strArg":"Arborday"}},{"itemId":10304005,"className":"2020_ARBORDAY_BRC05","name":"2020 Botanic Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":110,"maxAtk":110,"mAtk":110,"script":{"strArg":"Arborday"}},{"itemId":10304006,"className":"2021_ARBORDAY_NECK05","name":"2021 Botanic Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":121,"maxAtk":121,"mAtk":121,"script":{"strArg":"Arborday"}},{"itemId":10304007,"className":"2021_ARBORDAY_BRC05","name":"2021 Botanic Bracelet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":121,"maxAtk":121,"mAtk":121,"script":{"strArg":"Arborday"}},{"itemId":10304162,"className":"Event_Growth_Neck","name":"[Growth] Necklace","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"minAtk":4,"maxAtk":4,"mAtk":4,"script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10304163,"className":"Event_Growth_Brc","name":"[Growth] Bracelet","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":4,"maxAtk":4,"mAtk":4,"script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306016,"className":"Event_SHD05_104_Roulette","name":"[Event] Skiaclipse Varna Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Shield","minLevel":400,"def":6220,"mDef":6220,"material":"Shield"},{"itemId":10306017,"className":"Event_TOP05_111_Roulette","name":"[Event] Skiaclipse Varna Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":1555,"mDef":3110,"material":"Cloth"},{"itemId":10306018,"className":"Event_TOP05_112_Roulette","name":"[Event] Skiaclipse Varna Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":2332,"mDef":2332,"material":"Leather"},{"itemId":10306019,"className":"Event_TOP05_110_Roulette","name":"[Event] Skiaclipse Varna Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Shirt","minLevel":400,"def":3110,"mDef":1555,"material":"Iron"},{"itemId":10306020,"className":"Event_LEG05_112_Roulette","name":"[Event] Skiaclipse Varna Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":1555,"mDef":3110,"material":"Cloth"},{"itemId":10306021,"className":"Event_LEG05_111_Roulette","name":"[Event] Skiaclipse Varna Leather Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":2332,"mDef":2332,"material":"Leather"},{"itemId":10306022,"className":"Event_LEG05_110_Roulette","name":"[Event] Skiaclipse Varna Plate Pants","type":"Equip","group":"Armor","weight":110,"maxStack":1,"price":58148,"sellPrice":0,"equipType1":"Pants","minLevel":400,"def":3110,"mDef":1555,"material":"Iron"},{"itemId":10306023,"className":"Event_FOOT05_112_Roulette","name":"[Event] Skiaclipse Varna Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1036,"mDef":2073,"material":"Cloth"},{"itemId":10306024,"className":"Event_FOOT05_111_Roulette","name":"[Event] Skiaclipse Varna Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":1555,"mDef":1555,"material":"Leather"},{"itemId":10306025,"className":"Event_FOOT05_110_Roulette","name":"[Event] Skiaclipse Varna Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Boots","minLevel":400,"def":2073,"mDef":1036,"material":"Iron"},{"itemId":10306026,"className":"Event_HAND05_112_Roulette","name":"[Event] Skiaclipse Varna Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1036,"mDef":2073,"material":"Cloth"},{"itemId":10306027,"className":"Event_HAND05_111_Roulette","name":"[Event] Skiaclipse Varna Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":1555,"mDef":1555,"material":"Leather"},{"itemId":10306028,"className":"Event_HAND05_110_Roulette","name":"[Event] Skiaclipse Varna Plate Gauntlet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29074,"sellPrice":0,"equipType1":"Gloves","minLevel":400,"def":2073,"mDef":1036,"material":"Iron"},{"itemId":10306029,"className":"Event_EP12_FIELD_TOP_001","name":"[Event] Savinose Dysnai Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":2050,"mDef":4101,"material":"Cloth"},{"itemId":10306030,"className":"Event_EP12_FIELD_TOP_002","name":"[Event] Savinose Dysnai Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":3075,"mDef":3075,"material":"Leather"},{"itemId":10306031,"className":"Event_EP12_FIELD_TOP_003","name":"[Event] Savinose Dysnai Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":4101,"mDef":2050,"material":"Iron"},{"itemId":10306032,"className":"Event_EP12_FIELD_LEG_001","name":"[Event] Savinose Dysnai Pants ","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":2050,"mDef":4101,"material":"Cloth"},{"itemId":10306033,"className":"Event_EP12_FIELD_LEG_002","name":"[Event] Savinose Dysnai Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":3075,"mDef":3075,"material":"Leather"},{"itemId":10306034,"className":"Event_EP12_FIELD_LEG_003","name":"[Event] Savinose Dysnai Plate Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":4101,"mDef":2050,"material":"Iron"},{"itemId":10306035,"className":"Event_EP12_FIELD_FOOT_001","name":"[Event] Savinose Dysnai Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":1367,"mDef":2734,"material":"Cloth"},{"itemId":10306036,"className":"Event_EP12_FIELD_FOOT_002","name":"[Event] Savinose Dysnai Leather Boots ","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":2050,"mDef":2050,"material":"Leather"},{"itemId":10306037,"className":"Event_EP12_FIELD_FOOT_003","name":"[Event] Savinose Dysnai Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":2734,"mDef":1367,"material":"Iron"},{"itemId":10306038,"className":"Event_EP12_FIELD_HAND_001","name":"[Event] Savinose Dysnai Gloves ","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":1367,"mDef":2734,"material":"Cloth"},{"itemId":10306039,"className":"Event_EP12_FIELD_HAND_002","name":"[Event] Savinose Dysnai Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":2050,"mDef":2050,"material":"Leather"},{"itemId":10306040,"className":"Event_EP12_FIELD_HAND_003","name":"[Event] Savinose Dysnai Plate Gauntlet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":2734,"mDef":1367,"material":"Iron"},{"itemId":10306048,"className":"Event_EP12_FIELD_SHIELD","name":"[Event] Savinose Dysnai Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":44251,"sellPrice":0,"equipType1":"Shield","minLevel":440,"def":7382,"mDef":7382,"material":"Shield"},{"itemId":10306058,"className":"Event2_EP12_FIELD_TOP_001","name":"[Event] Savinose Dysnai Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":2050,"mDef":4101,"material":"Cloth"},{"itemId":10306059,"className":"Event2_EP12_FIELD_TOP_002","name":"[Event] Savinose Dysnai Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":3075,"mDef":3075,"material":"Leather"},{"itemId":10306060,"className":"Event2_EP12_FIELD_TOP_003","name":"[Event] Savinose Dysnai Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":4101,"mDef":2050,"material":"Iron"},{"itemId":10306061,"className":"Event2_EP12_FIELD_LEG_001","name":"[Event] Savinose Dysnai Pants ","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":2050,"mDef":4101,"material":"Cloth"},{"itemId":10306062,"className":"Event2_EP12_FIELD_LEG_002","name":"[Event] Savinose Dysnai Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":3075,"mDef":3075,"material":"Leather"},{"itemId":10306063,"className":"Event2_EP12_FIELD_LEG_003","name":"[Event] Savinose Dysnai Plate Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":4101,"mDef":2050,"material":"Iron"},{"itemId":10306064,"className":"Event2_EP12_FIELD_FOOT_001","name":"[Event] Savinose Dysnai Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":1367,"mDef":2734,"material":"Cloth"},{"itemId":10306065,"className":"Event2_EP12_FIELD_FOOT_002","name":"[Event] Savinose Dysnai Leather Boots ","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":2050,"mDef":2050,"material":"Leather"},{"itemId":10306066,"className":"Event2_EP12_FIELD_FOOT_003","name":"[Event] Savinose Dysnai Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":2734,"mDef":1367,"material":"Iron"},{"itemId":10306067,"className":"Event2_EP12_FIELD_HAND_001","name":"[Event] Savinose Dysnai Gloves ","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":1367,"mDef":2734,"material":"Cloth"},{"itemId":10306068,"className":"Event2_EP12_FIELD_HAND_002","name":"[Event] Savinose Dysnai Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":2050,"mDef":2050,"material":"Leather"},{"itemId":10306069,"className":"Event2_EP12_FIELD_HAND_003","name":"[Event] Savinose Dysnai Plate Gauntlet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":2734,"mDef":1367,"material":"Iron"},{"itemId":10306077,"className":"Event2_EP12_FIELD_SHIELD","name":"[Event] Savinose Dysnai Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":44251,"sellPrice":0,"equipType1":"Shield","minLevel":440,"def":7382,"mDef":7382,"material":"Shield"},{"itemId":10306094,"className":"Event_EP12_RAID_SHIELD","name":"[Event] Glacia Legenda Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":44251,"sellPrice":0,"equipType1":"Shield","minLevel":440,"def":7382,"mDef":7382,"material":"Shield","script":{"strArg":"Legenda"}},{"itemId":10306123,"className":"Event_EP12_RAID_SHIELD_2","name":"[Event] Glacia Legenda Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":44251,"sellPrice":0,"equipType1":"Shield","minLevel":440,"def":7382,"mDef":7382,"material":"Shield","script":{"strArg":"Legenda"}},{"itemId":10306143,"className":"Event_Growth_Leather_Shirt","name":"[Growth] Leather Armor","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Shirt","minLevel":1,"def":34,"mDef":34,"material":"Leather","script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306144,"className":"Event_Growth_Leather_Pants","name":"[Growth] Leather Pants","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Pants","minLevel":1,"def":34,"mDef":34,"material":"Leather","script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306145,"className":"Event_Growth_Leather_Boots","name":"[Growth] Leather Boots","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Boots","minLevel":1,"def":23,"mDef":23,"material":"Leather","script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306146,"className":"Event_Growth_Leather_Gloves","name":"[Growth] Leather Gloves","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Gloves","minLevel":1,"def":23,"mDef":23,"material":"Leather","script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306147,"className":"Event_Growth_Cloth_Shirt","name":"[Growth] Robe","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Shirt","minLevel":1,"def":23,"mDef":46,"material":"Cloth","script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306148,"className":"Event_Growth_Cloth_Pants","name":"[Growth] Pants","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Pants","minLevel":1,"def":23,"mDef":46,"material":"Cloth","script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306149,"className":"Event_Growth_Cloth_Boots","name":"[Growth] Boots","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Boots","minLevel":1,"def":15,"mDef":30,"material":"Cloth","script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306150,"className":"Event_Growth_Cloth_Gloves","name":"[Growth] Gloves","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Gloves","minLevel":1,"def":15,"mDef":30,"material":"Cloth","script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306151,"className":"Event_Growth_Iron_Shirt","name":"[Growth] Plate Armor","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Shirt","minLevel":1,"def":46,"mDef":23,"material":"Iron","script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306152,"className":"Event_Growth_Iron_Pants","name":"[Growth] Plate Pants","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Pants","minLevel":1,"def":46,"mDef":23,"material":"Iron","script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306153,"className":"Event_Growth_Iron_Boots","name":"[Growth] Greaves","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Boots","minLevel":1,"def":30,"mDef":15,"material":"Iron","script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306154,"className":"Event_Growth_Iron_Gloves","name":"[Growth] Plate Gauntlet","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Gloves","minLevel":1,"def":30,"mDef":15,"material":"Iron","script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306155,"className":"Event_Growth_Shield","name":"[Growth] Shield","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":92,"mDef":92,"material":"Shield","script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10308000,"className":"Event_Shine_Bamboo_Leaf","name":"[Event] Shining Bamboo Leaves","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Ring","minLevel":430},{"itemId":10308001,"className":"Event_Lucky_Bamboo_Leaf","name":"[Event] Lucky Bamboo Leaves","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Ring","minLevel":430},{"itemId":10310035,"className":"SHD04_119_Ev","name":"[Event] Moringponia Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Shield","minLevel":400,"def":4860,"mDef":4860,"material":"Shield"},{"itemId":10310036,"className":"SHD04_120_Ev","name":"[Event] Misrus Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Shield","minLevel":400,"def":4860,"mDef":4860,"material":"Shield"},{"itemId":10310053,"className":"SHD_Galimybe","name":"Galimive Dysnai Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Shield","minLevel":430,"def":5220,"mDef":5220,"material":"Shield"},{"itemId":10310088,"className":"SHD04_119_Ev_2","name":"[Event] Moringponia Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Shield","minLevel":400,"def":4860,"mDef":4860,"material":"Shield"},{"itemId":10310089,"className":"SHD04_120_Ev_2","name":"[Event] Misrus Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Shield","minLevel":400,"def":4860,"mDef":4860,"material":"Shield"},{"itemId":10312001,"className":"Tuto_icor_1","name":"[Tutorial] Training Top","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Shirt","minLevel":1,"def":27,"mDef":27,"material":"Leather","script":{"strArg":"Tutorial"}},{"itemId":10312002,"className":"Tuto_icor_2","name":"[Tutorial] Training Bottom","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Pants","minLevel":1,"def":27,"mDef":27,"material":"Leather","script":{"strArg":"Tutorial"}},{"itemId":10312003,"className":"Tuto_icor_3","name":"[Tutorial] Training Shoes","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Boots","minLevel":1,"def":18,"mDef":18,"material":"Leather","script":{"strArg":"Tutorial"}},{"itemId":10315000,"className":"E_Lucky_Artefact_631001","name":"[Lucky Break] Lucky Four Leaf Clover","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Ring","minLevel":1},{"itemId":10800001,"className":"Episode12_EP12_FIELD_TOP_001","name":"[EP12] Savinose Dysnai Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":2050,"mDef":4101,"material":"Cloth"},{"itemId":10800002,"className":"Episode12_EP12_FIELD_TOP_002","name":"[EP12] Savinose Dysnai Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":3075,"mDef":3075,"material":"Leather"},{"itemId":10800003,"className":"Episode12_EP12_FIELD_TOP_003","name":"[EP12] Savinose Dysnai Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":4101,"mDef":2050,"material":"Iron"},{"itemId":10800004,"className":"Episode12_EP12_FIELD_LEG_001","name":"[EP12] Savinose Dysnai Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":2050,"mDef":4101,"material":"Cloth"},{"itemId":10800005,"className":"Episode12_EP12_FIELD_LEG_002","name":"[EP12] Savinose Dysnai Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":3075,"mDef":3075,"material":"Leather"},{"itemId":10800006,"className":"Episode12_EP12_FIELD_LEG_003","name":"[EP12] Savinose Dysnai Plate Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":4101,"mDef":2050,"material":"Iron"},{"itemId":10800007,"className":"Episode12_EP12_FIELD_FOOT_001","name":"[EP12] Savinose Dysnai Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":1367,"mDef":2734,"material":"Cloth"},{"itemId":10800008,"className":"Episode12_EP12_FIELD_FOOT_002","name":"[EP12] Savinose Dysnai Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":2050,"mDef":2050,"material":"Leather"},{"itemId":10800009,"className":"Episode12_EP12_FIELD_FOOT_003","name":"[EP12] Savinose Dysnai Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":2734,"mDef":1367,"material":"Iron"},{"itemId":10800010,"className":"Episode12_EP12_FIELD_HAND_001","name":"[EP12] Savinose Dysnai Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":1367,"mDef":2734,"material":"Cloth"},{"itemId":10800011,"className":"Episode12_EP12_FIELD_HAND_002","name":"[EP12] Savinose Dysnai Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":2050,"mDef":2050,"material":"Leather"},{"itemId":10800012,"className":"Episode12_EP12_FIELD_HAND_003","name":"[EP12] Savinose Dysnai Plate Gauntlet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":2734,"mDef":1367,"material":"Iron"},{"itemId":10800020,"className":"Episode12_EP12_FIELD_SHIELD","name":"[EP12] Savinose Dysnai Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":44251,"sellPrice":0,"equipType1":"Shield","minLevel":440,"def":7382,"mDef":7382,"material":"Shield"},{"itemId":10800030,"className":"2021_NewYear_EP12_FIELD_TOP_001","name":"[2021] Savinose Dysnai Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":2050,"mDef":4101,"material":"Cloth"},{"itemId":10800031,"className":"2021_NewYear_EP12_FIELD_TOP_002","name":"[2021] Savinose Dysnai Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":3075,"mDef":3075,"material":"Leather"},{"itemId":10800032,"className":"2021_NewYear_EP12_FIELD_TOP_003","name":"[2021] Savinose Dysnai Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":4101,"mDef":2050,"material":"Iron"},{"itemId":10800033,"className":"2021_NewYear_EP12_FIELD_LEG_001","name":"[2021] Savinose Dysnai Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":2050,"mDef":4101,"material":"Cloth"},{"itemId":10800034,"className":"2021_NewYear_EP12_FIELD_LEG_002","name":"[2021] Savinose Dysnai Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":3075,"mDef":3075,"material":"Leather"},{"itemId":10800035,"className":"2021_NewYear_EP12_FIELD_LEG_003","name":"[2021] Savinose Dysnai Plate Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":4101,"mDef":2050,"material":"Iron"},{"itemId":10800036,"className":"2021_NewYear_EP12_FIELD_FOOT_001","name":"[2021] Savinose Dysnai Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":1367,"mDef":2734,"material":"Cloth"},{"itemId":10800037,"className":"2021_NewYear_EP12_FIELD_FOOT_002","name":"[2021] Savinose Dysnai Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":2050,"mDef":2050,"material":"Leather"},{"itemId":10800038,"className":"2021_NewYear_EP12_FIELD_FOOT_003","name":"[2021] Savinose Dysnai Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":2734,"mDef":1367,"material":"Iron"},{"itemId":10800039,"className":"2021_NewYear_EP12_FIELD_HAND_001","name":"[2021] Savinose Dysnai Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":1367,"mDef":2734,"material":"Cloth"},{"itemId":10800040,"className":"2021_NewYear_EP12_FIELD_HAND_002","name":"[2021] Savinose Dysnai Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":2050,"mDef":2050,"material":"Leather"},{"itemId":10800041,"className":"2021_NewYear_EP12_FIELD_HAND_003","name":"[2021] Savinose Dysnai Plate Gauntlet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":2734,"mDef":1367,"material":"Iron"},{"itemId":10800049,"className":"2021_NewYear_EP12_FIELD_SHIELD","name":"[2021] Savinose Dysnai Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":44251,"sellPrice":0,"equipType1":"Shield","minLevel":440,"def":7382,"mDef":7382,"material":"Shield"},{"itemId":10999008,"className":"TOSHero_SHIELD","name":"Shield","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"minAtk":1000,"maxAtk":1000,"mAtk":1000,"def":1000,"mDef":1000,"script":{"strArg":"TOSHeroEquip"}},{"itemId":10999018,"className":"TOSHero_NECK_AS","name":"Tiplante's Necklace","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"script":{"strArg":"TOSHeroEquipNeck"}},{"itemId":10999019,"className":"TOSHero_NECK_AA","name":"Gaulim's Necklace","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"script":{"strArg":"TOSHeroEquipNeck"}},{"itemId":10999020,"className":"TOSHero_NECK_MB","name":"Nemetria's Necklace","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"script":{"strArg":"TOSHeroEquipNeck"}},{"itemId":10999021,"className":"TOSHero_NECK_MS","name":"Hroki's Necklace","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"script":{"strArg":"TOSHeroEquipNeck"}},{"itemId":10999022,"className":"TOSHero_NECK_PT","name":"Winata's Necklace","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","minLevel":1,"script":{"strArg":"TOSHeroEquipNeck"}},{"itemId":11000000,"className":"EP12_NECK05_HIGH_001","name":"Karaliene Juoda Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Neck","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"Acc_EP12"}},{"itemId":11000001,"className":"EP12_NECK05_HIGH_002","name":"Karaliene Isgarinti Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Neck","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"Acc_EP12"}},{"itemId":11000002,"className":"EP12_NECK05_HIGH_003","name":"Karaliene Kantribe Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Neck","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"addDef":2500,"script":{"strArg":"Acc_EP12"}},{"itemId":11000003,"className":"EP12_NECK05_HIGH_004","name":"Karaliene Vargeras Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Neck","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"addMDef":2500,"script":{"strArg":"Acc_EP12"}},{"itemId":11000004,"className":"EP12_NECK05_HIGH_005","name":"Karaliene Pyktis Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Neck","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"Acc_EP12"}},{"itemId":11000005,"className":"EP12_NECK05_HIGH_006","name":"Karaliene Triukas Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Neck","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"Acc_EP12"}},{"itemId":11000006,"className":"EP12_NECK05_HIGH_007","name":"Karaliene Prideti Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Neck","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"Acc_EP12"}},{"itemId":11000007,"className":"EP12_NECK05_LOW_001","name":"Incomplete Karaliene Juoda Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Neck","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"Half_Acc_EP12"}},{"itemId":11000008,"className":"EP12_NECK05_LOW_002","name":"Incomplete Karaliene Isgarinti Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Neck","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"Half_Acc_EP12"}},{"itemId":11000009,"className":"EP12_NECK05_LOW_003","name":"Incomplete Karaliene Kantribe Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Neck","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"addDef":1800,"script":{"strArg":"Half_Acc_EP12"}},{"itemId":11000010,"className":"EP12_NECK05_LOW_004","name":"Incomplete Karaliene Vargeras Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Neck","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"addMDef":1800,"script":{"strArg":"Half_Acc_EP12"}},{"itemId":11000011,"className":"EP12_NECK05_LOW_005","name":"Incomplete Karaliene Pyktis Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Neck","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"Half_Acc_EP12"}},{"itemId":11000012,"className":"EP12_NECK05_LOW_006","name":"Incomplete Karaliene Triukas Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Neck","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"Half_Acc_EP12"}},{"itemId":11000013,"className":"EP12_NECK05_LOW_007","name":"Incomplete Karaliene Prideti Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Neck","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"Half_Acc_EP12"}},{"itemId":11000014,"className":"EP12_NECK06_HIGH_001","name":"Luciferie Juoda Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Neck","minLevel":450,"minAtk":360,"maxAtk":360,"mAtk":360,"script":{"strArg":"Luciferi"}},{"itemId":11000015,"className":"EP12_NECK06_HIGH_002","name":"Luciferie Isgarinti Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Neck","minLevel":450,"minAtk":360,"maxAtk":360,"mAtk":360,"script":{"strArg":"Luciferi"}},{"itemId":11000016,"className":"EP12_NECK06_HIGH_003","name":"Luciferie Kantribe Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Neck","minLevel":450,"minAtk":360,"maxAtk":360,"mAtk":360,"addDef":2750,"addMDef":2750,"script":{"strArg":"Luciferi"}},{"itemId":11000017,"className":"EP12_NECK06_HIGH_004","name":"Luciferie Pyktis Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Neck","minLevel":450,"minAtk":360,"maxAtk":360,"mAtk":360,"script":{"strArg":"Luciferi"}},{"itemId":11000018,"className":"EP12_NECK06_HIGH_005","name":"Luciferie Triukas Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Neck","minLevel":450,"minAtk":360,"maxAtk":360,"mAtk":360,"script":{"strArg":"Luciferi"}},{"itemId":11000019,"className":"EP12_NECK06_HIGH_006","name":"Luciferie Prideti Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Neck","minLevel":450,"minAtk":360,"maxAtk":360,"mAtk":360,"script":{"strArg":"Luciferi"}},{"itemId":11001001,"className":"EP12_BRC05_HIGH_001","name":"Karaliene Juoda Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Ring","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"Acc_EP12"}},{"itemId":11001002,"className":"EP12_BRC05_HIGH_002","name":"Karaliene Isgarinti Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Ring","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"Acc_EP12"}},{"itemId":11001003,"className":"EP12_BRC05_HIGH_003","name":"Karaliene Kantribe Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":6655,"equipType1":"Ring","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"addDef":1250,"script":{"strArg":"Acc_EP12"}},{"itemId":11001004,"className":"EP12_BRC05_HIGH_004","name":"Karaliene Vargeras Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":6655,"equipType1":"Ring","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"addMDef":1250,"script":{"strArg":"Acc_EP12"}},{"itemId":11001005,"className":"EP12_BRC05_HIGH_005","name":"Karaliene Pyktis Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":6655,"equipType1":"Ring","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"Acc_EP12"}},{"itemId":11001006,"className":"EP12_BRC05_HIGH_006","name":"Karaliene Triukas Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":6655,"equipType1":"Ring","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"Acc_EP12"}},{"itemId":11001007,"className":"EP12_BRC05_HIGH_007","name":"Karaliene Prideti Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":6655,"equipType1":"Ring","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"Acc_EP12"}},{"itemId":11001008,"className":"EP12_BRC05_LOW_001","name":"Incomplete Karaliene Juoda Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Ring","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"Half_Acc_EP12"}},{"itemId":11001009,"className":"EP12_BRC05_LOW_002","name":"Incomplete Karaliene Isgarinti Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Ring","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"Half_Acc_EP12"}},{"itemId":11001010,"className":"EP12_BRC05_LOW_003","name":"Incomplete Karaliene Kantribe Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Ring","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"addDef":850,"script":{"strArg":"Half_Acc_EP12"}},{"itemId":11001011,"className":"EP12_BRC05_LOW_004","name":"Incomplete Karaliene Vargeras Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Ring","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"addMDef":850,"script":{"strArg":"Half_Acc_EP12"}},{"itemId":11001012,"className":"EP12_BRC05_LOW_005","name":"Incomplete Karaliene Pyktis Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Ring","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"Half_Acc_EP12"}},{"itemId":11001013,"className":"EP12_BRC05_LOW_006","name":"Incomplete Karaliene Triukas Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Ring","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"Half_Acc_EP12"}},{"itemId":11001014,"className":"EP12_BRC05_LOW_007","name":"Incomplete Karaliene Prideti Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Ring","minLevel":430,"minAtk":312,"maxAtk":312,"mAtk":312,"script":{"strArg":"Half_Acc_EP12"}},{"itemId":11001015,"className":"EP12_BRC06_HIGH_001","name":"Luciferie Juoda Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Ring","minLevel":450,"minAtk":360,"maxAtk":360,"mAtk":360,"script":{"strArg":"Luciferi"}},{"itemId":11001016,"className":"EP12_BRC06_HIGH_002","name":"Luciferie Isgarinti Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Ring","minLevel":450,"minAtk":360,"maxAtk":360,"mAtk":360,"script":{"strArg":"Luciferi"}},{"itemId":11001017,"className":"EP12_BRC06_HIGH_003","name":"Luciferie Kantribe Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":44342,"sellPrice":6655,"equipType1":"Ring","minLevel":450,"minAtk":360,"maxAtk":360,"mAtk":360,"addDef":1375,"addMDef":1375,"script":{"strArg":"Luciferi"}},{"itemId":11001018,"className":"EP12_BRC06_HIGH_004","name":"Luciferie Pyktis Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":44342,"sellPrice":6655,"equipType1":"Ring","minLevel":450,"minAtk":360,"maxAtk":360,"mAtk":360,"script":{"strArg":"Luciferi"}},{"itemId":11001019,"className":"EP12_BRC06_HIGH_005","name":"Luciferie Triukas Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":44342,"sellPrice":6655,"equipType1":"Ring","minLevel":450,"minAtk":360,"maxAtk":360,"mAtk":360,"script":{"strArg":"Luciferi"}},{"itemId":11001020,"className":"EP12_BRC06_HIGH_006","name":"Luciferie Prideti Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":44342,"sellPrice":6655,"equipType1":"Ring","minLevel":450,"minAtk":360,"maxAtk":360,"mAtk":360,"script":{"strArg":"Luciferi"}},{"itemId":11002018,"className":"EP12_SHD04_001","name":"Glacia Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Shield","minLevel":430,"def":5220,"mDef":5220,"material":"Shield"},{"itemId":11003001,"className":"EP12_TOP04_001","name":"Wonderous Robe - Stability","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Shirt","minLevel":430,"def":1305,"mDef":2610,"material":"Cloth"},{"itemId":11003002,"className":"EP12_TOP04_002","name":"Wonderous Leather Armor - Courage","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Shirt","minLevel":430,"def":1957,"mDef":1957,"material":"Leather"},{"itemId":11003003,"className":"EP12_TOP04_003","name":"Wonderous Plate Armor - Wisdom","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Shirt","minLevel":430,"def":2610,"mDef":1305,"material":"Iron"},{"itemId":11003004,"className":"EP12_LEG04_001","name":"Wonderous Pants - Stability","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Pants","minLevel":430,"def":1305,"mDef":2610,"material":"Cloth"},{"itemId":11003005,"className":"EP12_LEG04_002","name":"Wonderous Leather Pants - Courage","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Pants","minLevel":430,"def":1957,"mDef":1957,"material":"Leather"},{"itemId":11003006,"className":"EP12_LEG04_003","name":"Wonderous Plate Pants - Wisdom","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Pants","minLevel":430,"def":2610,"mDef":1305,"material":"Iron"},{"itemId":11003007,"className":"EP12_FOOT04_001","name":"Wonderous Boots - Stability","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Boots","minLevel":430,"def":870,"mDef":1740,"material":"Cloth"},{"itemId":11003008,"className":"EP12_FOOT04_002","name":"Wonderous Leather Boots - Courage","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Boots","minLevel":430,"def":1305,"mDef":1305,"material":"Leather"},{"itemId":11003009,"className":"EP12_FOOT04_003","name":"Wonderous Greaves - Wisdom","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Boots","minLevel":430,"def":1740,"mDef":870,"material":"Iron"},{"itemId":11003010,"className":"EP12_HAND04_001","name":"Wonderous Gloves - Stability","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Gloves","minLevel":430,"def":870,"mDef":1740,"material":"Cloth"},{"itemId":11003011,"className":"EP12_HAND04_002","name":"Wonderous Leather Gloves - Courage","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Gloves","minLevel":430,"def":1305,"mDef":1305,"material":"Leather"},{"itemId":11003012,"className":"EP12_HAND04_003","name":"Wonderous Plate Gauntlet - Wisdom","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Gloves","minLevel":430,"def":1740,"mDef":870,"material":"Iron"},{"itemId":11003013,"className":"EP12_TOP04_004","name":"Glacia Robe - Thaw","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Shirt","minLevel":430,"def":1305,"mDef":2610,"material":"Cloth"},{"itemId":11003014,"className":"EP12_TOP04_005","name":"Glacia Leather Armor - First Strike","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Shirt","minLevel":430,"def":1957,"mDef":1957,"material":"Leather"},{"itemId":11003015,"className":"EP12_TOP04_006","name":"Glacia Plate Armor - Imperturbable","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Shirt","minLevel":430,"def":2610,"mDef":1305,"material":"Iron"},{"itemId":11003016,"className":"EP12_LEG04_004","name":"Glacia Pants -Thaw","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Pants","minLevel":430,"def":1305,"mDef":2610,"material":"Cloth"},{"itemId":11003017,"className":"EP12_LEG04_005","name":"Glacia Leather Pants - First Strike","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Pants","minLevel":430,"def":1957,"mDef":1957,"material":"Leather"},{"itemId":11003018,"className":"EP12_LEG04_006","name":"Glacia Plate Pants - Imperturbable","type":"Equip","group":"Armor","weight":210,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Pants","minLevel":430,"def":2610,"mDef":1305,"material":"Iron"},{"itemId":11003019,"className":"EP12_FOOT04_004","name":"Glacia Boots - Thaw","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Boots","minLevel":430,"def":870,"mDef":1740,"material":"Cloth"},{"itemId":11003020,"className":"EP12_FOOT04_005","name":"Glacia Leather Boots - First Strike","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Boots","minLevel":430,"def":1305,"mDef":1305,"material":"Leather"},{"itemId":11003021,"className":"EP12_FOOT04_006","name":"Glacia Greaves - Imperturbable","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Boots","minLevel":430,"def":1740,"mDef":870,"material":"Iron"},{"itemId":11003022,"className":"EP12_HAND04_004","name":"Glacia Gloves - Thaw","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Gloves","minLevel":430,"def":870,"mDef":1740,"material":"Cloth"},{"itemId":11003023,"className":"EP12_HAND04_005","name":"Glacia Leather Gloves - First Strike","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Gloves","minLevel":430,"def":1305,"mDef":1305,"material":"Leather"},{"itemId":11003024,"className":"EP12_HAND04_006","name":"Glacia Plate Gauntlet - Imperturbable","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Gloves","minLevel":430,"def":1740,"mDef":870,"material":"Iron"},{"itemId":11003025,"className":"EP12_EVIL_TOP","name":"Ziburynas Leather Armor - Overload Raid","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":2403,"mDef":2403,"material":"Leather","script":{"strArg":"evil","numArg1":1}},{"itemId":11003026,"className":"EP12_EVIL_LEG","name":"Ziburynas Leather Pants - Overload Raid","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":2403,"mDef":2403,"material":"Leather","script":{"strArg":"evil","numArg1":1}},{"itemId":11003027,"className":"EP12_EVIL_FOOT","name":"Ziburynas Leather Boots - Overload Raid","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":1602,"mDef":1602,"material":"Leather","script":{"strArg":"evil","numArg1":1}},{"itemId":11003028,"className":"EP12_EVIL_HAND","name":"Ziburynas Leather Gloves - Overload Raid","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":1602,"mDef":1602,"material":"Leather","script":{"strArg":"evil","numArg1":1}},{"itemId":11003029,"className":"EP12_Vakarine_TOP","name":"Vakarine Robe - Midnight Baptism","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":1602,"mDef":3204,"material":"Cloth","script":{"strArg":"goddess","numArg1":1}},{"itemId":11003030,"className":"EP12_Vakarine_LEG","name":"Vakarine Pants - Midnight Baptism","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":1602,"mDef":3204,"material":"Cloth","script":{"strArg":"goddess","numArg1":1}},{"itemId":11003031,"className":"EP12_Vakarine_FOOT","name":"Vakarine Boots - Midnight Baptism","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":1068,"mDef":2136,"material":"Cloth","script":{"strArg":"goddess","numArg1":1}},{"itemId":11003032,"className":"EP12_Vakarine_HAND","name":"Vakarine Gloves - Midnight Baptism","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":1068,"mDef":2136,"material":"Cloth","script":{"strArg":"goddess","numArg1":1}},{"itemId":11003033,"className":"EP12_Zemyna_TOP","name":"Zemyna Robe - Saint Oath","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":1602,"mDef":3204,"material":"Cloth","script":{"strArg":"goddess","numArg1":1}},{"itemId":11003034,"className":"EP12_Zemyna_LEG","name":"Zemyna Pants - Saint Oath","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":1602,"mDef":3204,"material":"Cloth","script":{"strArg":"goddess","numArg1":1}},{"itemId":11003035,"className":"EP12_Zemyna_FOOT","name":"Zemyna Boots - Saint Oath","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":1068,"mDef":2136,"material":"Cloth","script":{"strArg":"goddess","numArg1":1}},{"itemId":11003036,"className":"EP12_Zemyna_HAND","name":"Zemyna Gloves - Saint Oath","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":1068,"mDef":2136,"material":"Cloth","script":{"strArg":"goddess","numArg1":1}},{"itemId":11003037,"className":"EP12_Dalia_TOP","name":"Dahlia Robe - Infinity Blessing","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":1602,"mDef":3204,"material":"Cloth","script":{"strArg":"goddess","numArg1":1}},{"itemId":11003038,"className":"EP12_Dalia_LEG","name":"Dahlia Pants - Infinity Blessing","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":1602,"mDef":3204,"material":"Cloth","script":{"strArg":"goddess","numArg1":1}},{"itemId":11003039,"className":"EP12_Dalia_FOOT","name":"Dahlia Boots - Infinity Blessing","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":1068,"mDef":2136,"material":"Cloth","script":{"strArg":"goddess","numArg1":1}},{"itemId":11003040,"className":"EP12_Dalia_HAND","name":"Dahlia Gloves - Infinity Blessing","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":1068,"mDef":2136,"material":"Cloth","script":{"strArg":"goddess","numArg1":1}},{"itemId":11003041,"className":"EP12_EVIL_SUMMONNER_TOP","name":"Kartas Leather Armor - Harsh Imperator","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":2403,"mDef":2403,"material":"Leather","script":{"strArg":"evil","numArg1":1}},{"itemId":11003042,"className":"EP12_EVIL_SUMMONNER_LEG","name":"Kartas Leather Pants - Harsh Imperator","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":2403,"mDef":2403,"material":"Leather","script":{"strArg":"evil","numArg1":1}},{"itemId":11003043,"className":"EP12_EVIL_SUMMONNER_FOOT","name":"Kartas Leather Boots - Harsh Imperator","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":1602,"mDef":1602,"material":"Leather","script":{"strArg":"evil","numArg1":1}},{"itemId":11003044,"className":"EP12_EVIL_SUMMONNER_HAND","name":"Kartas Leather Gloves - Harsh Imperator","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":1602,"mDef":1602,"material":"Leather","script":{"strArg":"evil","numArg1":1}},{"itemId":11003045,"className":"EP12_Gabija_TOP","name":"Gabija Robe - Holy Flame","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":1602,"mDef":3204,"material":"Cloth","script":{"strArg":"goddess","numArg1":1}},{"itemId":11003046,"className":"EP12_Gabija_LEG","name":"Gabija Pants - Holy Flame","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":1602,"mDef":3204,"material":"Cloth","script":{"strArg":"goddess","numArg1":1}},{"itemId":11003047,"className":"EP12_Gabija_FOOT","name":"Gabija Boots - Holy Flame","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":1068,"mDef":2136,"material":"Cloth","script":{"strArg":"goddess","numArg1":1}},{"itemId":11003048,"className":"EP12_Gabija_HAND","name":"Gabija Gloves - Holy Flame","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":1068,"mDef":2136,"material":"Cloth","script":{"strArg":"goddess","numArg1":1}},{"itemId":11003049,"className":"EP12_Austeja_TOP","name":"Austeja Robe - Divine Enigma","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":1602,"mDef":3204,"material":"Cloth","script":{"strArg":"goddess","numArg1":1}},{"itemId":11003050,"className":"EP12_Austeja_LEG","name":"Austeja Pants - Divine Enigma","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":1602,"mDef":3204,"material":"Cloth","script":{"strArg":"goddess","numArg1":1}},{"itemId":11003051,"className":"EP12_Austeja_FOOT","name":"Austeja Boots - Divine Enigma","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":1068,"mDef":2136,"material":"Cloth","script":{"strArg":"goddess","numArg1":1}},{"itemId":11003052,"className":"EP12_Austeja_HAND","name":"Austeja Gloves - Divine Enigma","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":1068,"mDef":2136,"material":"Cloth","script":{"strArg":"goddess","numArg1":1}},{"itemId":11003053,"className":"EP12_installation_TOP","name":"Rumpelstiltskin Leather Armor - Reckless Gambler","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":2403,"mDef":2403,"material":"Leather","script":{"strArg":"evil","numArg1":1}},{"itemId":11003054,"className":"EP12_installation_LEG","name":"Rumpelstiltskin Leather Pants - Reckless Gambler","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":2403,"mDef":2403,"material":"Leather","script":{"strArg":"evil","numArg1":1}},{"itemId":11003055,"className":"EP12_installation_FOOT","name":"Rumpelstiltskin Leather Boots - Reckless Gambler","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":1602,"mDef":1602,"material":"Leather","script":{"strArg":"evil","numArg1":1}},{"itemId":11003056,"className":"EP12_installation_HAND","name":"Rumpelstiltskin Leather Gloves - Reckless Gambler","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":1602,"mDef":1602,"material":"Leather","script":{"strArg":"evil","numArg1":1}},{"itemId":11003057,"className":"EP12_Galimybe_TOP","name":"Galimive Dysnai Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Shirt","minLevel":430,"def":1957,"mDef":1957,"material":"Leather"},{"itemId":11003058,"className":"EP12_Galimybe_LEG","name":"Galimive Dysnai Pants","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":59519,"sellPrice":0,"equipType1":"Pants","minLevel":430,"def":1957,"mDef":1957,"material":"Leather"},{"itemId":11003059,"className":"EP12_Galimybe_FOOT","name":"Galimive Dysnai Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Boots","minLevel":430,"def":1305,"mDef":1305,"material":"Leather"},{"itemId":11003060,"className":"EP12_Galimybe_HAND","name":"Galimive Dysnai Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":29759,"sellPrice":0,"equipType1":"Gloves","minLevel":430,"def":1305,"mDef":1305,"material":"Leather"},{"itemId":11004330,"className":"costume_sadhu_achieve","name":"Sanctuary of Soul Costume","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004357,"className":"costume_hakkapeliter_achieve","name":"Risky Acrobatic Costume","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11006001,"className":"EP12_Hat_001","name":"Rose in Glass Globe","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006002,"className":"EP12_Hat_002","name":"Red Fox Brooch","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006003,"className":"EP12_Hat_003","name":"Pilot Goggles","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006004,"className":"EP12_Hat_004","name":"Twinkling Star","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006005,"className":"EP12_Hat_005","name":"Glowing Star","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006006,"className":"EP12_Hat_006","name":"Starlight Palace Crown","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006007,"className":"EP12_Hat_007","name":"Boa Constrictor Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006008,"className":"EP12_Hat_008","name":"Mayflower Eye Mask","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006009,"className":"EP12_Hat_009","name":"Mayflower Wedding Veil","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006010,"className":"EP12_Hat_010","name":"Mayflower Feather Hairpin","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006011,"className":"EP12_Hat_011","name":"Mayflower Hair Brooch","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006012,"className":"EP12_Hat_012","name":"Mayflower Tophat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006013,"className":"EP12_Hat_013","name":"Mayflower Rosegold Tiara","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006014,"className":"EP12_Hat_014","name":"Mayflower Secret Veil","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006015,"className":"EP12_Hat_015","name":"Mayflower Platinum Tiara","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006016,"className":"EP12_Hat_016","name":"Mayflower Hair Chain","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006017,"className":"EP12_Hat_017","name":"Cookie Kitten on Top","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006018,"className":"EP12_Hat_018","name":"Black Kitten on Top","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006019,"className":"EP12_Hat_019","name":"Tabby Kitten on Top","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006020,"className":"EP12_Hat_020","name":"Cheese Kitten on Top","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006021,"className":"EP12_Hat_021","name":"Ragdoll Kitten on Top","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006022,"className":"EP12_Hat_022","name":"Shorthair Kitten on Top","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006023,"className":"EP12_Hat_023","name":"MusCATeer Baron Tabby's Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006024,"className":"EP12_Hat_024","name":"MusCATeer Baron Cheese's Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006025,"className":"EP12_Hat_025","name":"MusCATeer Merchant Ragdoll's Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006026,"className":"EP12_Hat_026","name":"Siamese Kitten on Top","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006027,"className":"EP12_Hat_027","name":"TOS Task Force SWAT Beret","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006028,"className":"EP12_Hat_028","name":"TOS Task Force SWAT Sunglasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006029,"className":"EP12_Hat_029","name":"TOS Task Force Fire Fighter Safety Helmet","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006030,"className":"EP12_Hat_030","name":"TOS Task Force Police Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006031,"className":"EP12_Hat_031","name":"TOS Task Force Officer Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006032,"className":"EP12_Hat_032","name":"Orange Heart Sunglasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006033,"className":"EP12_Hat_033","name":"Yellow Ribbon Hairband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006034,"className":"EP12_Hat_034","name":"Starfish Hairpin","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006035,"className":"EP12_Hat_035","name":"Little Sand Castle","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006036,"className":"EP12_Hat_036","name":"Seagull on Top","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006037,"className":"EP12_Hat_037","name":"High Summer Sunglasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006038,"className":"EP12_Hat_038","name":"Summer Flower Hairpin","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006039,"className":"EP12_Hat_039","name":"White Ribbon Straw Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006040,"className":"EP12_Hat_040","name":"Honored Rose Elegant Noble Fascinator","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006041,"className":"EP12_Hat_041","name":"Honored Rose Intelligent Monocle","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006042,"className":"EP12_Hat_042","name":"Honored Rose Luxurious Ribbon Hairband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006043,"className":"EP12_Hat_043","name":"Honored Rose Crimson Rose Eye Patch","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006044,"className":"EP12_Hat_044","name":"Honored Rose Colorful Flower Eye Patch","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006045,"className":"EP12_Hat_045","name":"Honored Rose Arrogant Bonnet","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006046,"className":"EP12_Hat_046","name":"Honored Rose Superb Cloche Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006047,"className":"EP12_Hat_047","name":"Masquerade Strange Witch's Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006048,"className":"EP12_Hat_048","name":"Littleberk Sweet Dream Sleeping Mask","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006049,"className":"EP12_Hat_049","name":"Maru Sweet Dream Sleeping Mask","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006050,"className":"EP12_Hat_050","name":"Vakarine Doll Hair Accessory","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006051,"className":"EP13_Hat_001","name":"Task Unit Red Visor Goggle","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006052,"className":"EP13_Hat_002","name":"Task Unit Green Visor Goggle","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006053,"className":"EP13_Hat_003","name":"Task Unit Purple Visor Goggle","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006054,"className":"EP13_Hat_004","name":"Task Unit Lime Neon Kitty Ear","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006055,"className":"EP13_Hat_005","name":"Task Unit Yellow Neon Kitty Ear","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006056,"className":"EP13_Hat_006","name":"Task Unit Purple Neon Kitty Ear","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006057,"className":"EP13_Hat_007","name":"Ice Cold Trapper Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006058,"className":"EP13_Hat_008","name":"Rosy Floret Black Gat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006059,"className":"EP13_Hat_009","name":"Rosy Floret Pink Head Dress","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006060,"className":"EP13_Hat_010","name":"Sweet Strawberry Bunny","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006061,"className":"EP13_Hat_011","name":"Criminal Boss' Fedora","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006062,"className":"EP13_Hat_012","name":"STEM Square Root","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006063,"className":"EP13_Hat_013","name":"STEM Nerdy Glasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006064,"className":"EP13_Hat_twnocelot","name":"Ocelot Ears","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006065,"className":"EP13_Hat_014","name":"TOSummer Red Ribbon Hairband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006066,"className":"EP13_Hat_015","name":"TOSummer Watery Snorkel","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006067,"className":"EP13_Hat_016","name":"TOSummer Pineapple Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006068,"className":"EP13_Hat_017","name":"TOSummer Blue Heart Sunglasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006069,"className":"EP13_Hat_018","name":"TOSummer Sunset Sunglasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006070,"className":"EP13_Hat_019","name":"Drip Drop Raining Rainbow","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006071,"className":"EP13_Hat_020","name":"Drip Drop Lotus Leaf Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006072,"className":"EP13_Hat_021","name":"Good ol'days Star Sunglasses","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006073,"className":"EP13_Hat_022","name":"Servant Kitty Frill Headband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006074,"className":"EP13_Hat_023","name":"Servant Mustache","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006075,"className":"EP13_Hat_024","name":"Animal Kindergarten White Duck Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006076,"className":"EP13_Hat_025","name":"Animal Kindergarten Red Fox Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006077,"className":"EP13_Re_Hat_628052","name":"[Re] Steel Helmet","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006078,"className":"EP13_Re_Hat_628182","name":"[Re] Hamster","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006079,"className":"EP13_Re_Hat_628207","name":"[Re] Sunflower Seed","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006080,"className":"EP13_Re_Hat_628220","name":"[Re] Toaster","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006081,"className":"EP13_Re_Hat_628223","name":"[Re] Wi-Fi","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006082,"className":"EP13_Re_Hat_628193","name":"[Re] Paper Ticket","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006083,"className":"EP13_Re_Hat_628022","name":"[Re] Wing Decoration","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006084,"className":"EP13_Re_Hat_628044","name":"[Re] Demon Wings","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006085,"className":"EP13_Re_Hat_628035","name":"[Re] Kateen Flower Decoration","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006086,"className":"EP13_Re_Hat_628203","name":"[Re] Sky Blue Ribbon","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006087,"className":"EP13_Re_Hat_628228","name":"[Re] Blue Laced Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006088,"className":"EP13_Re_Hat_628226","name":"[Re] Banana Peel","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006089,"className":"EP13_Re_Hat_628084","name":"[Re] Peacock Feather","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006090,"className":"EP13_Re_Hat_628302","name":"[Re] Orange Candy","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006091,"className":"EP13_Re_Hat_628306","name":"[Re] Sweet Biscuit","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006092,"className":"EP13_Re_Hat_628230","name":"[Re] Buried Carrot","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006093,"className":"EP13_Re_Hat_628261","name":"[Re] Crocus","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006094,"className":"EP13_Re_Hat_628180","name":"[Re] Flarestone Horn","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006095,"className":"EP13_Re_Hat_628014","name":"[Re] Tiger Swallowtail","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006096,"className":"EP13_Re_Hat_628095","name":"[Re] Blue Ribbon","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006097,"className":"EP12_Re_Hat_001","name":"[Re] Rose in Glass Globe","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006098,"className":"EP12_Re_Hat_002","name":"[Re] Red Fox Brooch","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006099,"className":"EP12_Re_Hat_003","name":"[Re] Pilot Goggles","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006100,"className":"EP12_Re_Hat_004","name":"[Re] Twinkling Star","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006101,"className":"EP12_Re_Hat_005","name":"[Re] Glowing Star","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006102,"className":"EP12_Re_Hat_006","name":"[Re] Starlight Palace Crown","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006103,"className":"EP12_Re_Hat_007","name":"[Re] Boa Constrictor Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006104,"className":"EP12_Re_Hat_629048","name":"[Re] Chef Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006105,"className":"EP12_Re_Hat_629049","name":"[Re] Culinary Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006106,"className":"EP12_Re_Hat_629050","name":"[Re] Toque Blanche","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006107,"className":"EP12_Re_Hat_629051","name":"[Re] Head Chef Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006108,"className":"EP12_Re_Hat_629057","name":"[Re] Clown Mask","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006109,"className":"EP12_Re_Hat_629058","name":"[Re] Butcher Knife Headband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006110,"className":"EP12_Re_Hat_629059","name":"[Re] Skull Party Mask","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006111,"className":"EP14_Hat_001","name":"Eternal Savior Lumen Wing Corolla","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006112,"className":"EP14_Hat_002","name":"Eternal Savior Nox WIng Corolla","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006113,"className":"Hat_twn6th_bubble_hairband","name":"Bubble Tea Headband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006114,"className":"Hat_twnocelot_black","name":"Baby Black Leopard Headband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006115,"className":"Hat_twnocelot_white","name":"Baby Snow Leopard Headband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006116,"className":"EP14_Hat_003","name":"Knight of Zemyna Crown","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006117,"className":"EP14_Hat_004","name":"Knight of Zemyna Flower Feather Hairpin","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006118,"className":"EP14_Hat_005","name":"TOS Metal Rider Goggle","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006119,"className":"EP14_Hat_006","name":"TOS Metal Death Mask","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006120,"className":"EP14_Hat_007","name":"TOS Metal Demon Mask","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006121,"className":"EP14_Hat_008","name":"Heliopolis Horus Headpiece (Male)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006122,"className":"EP14_Hat_009","name":"Heliopolis Bastet Headpiece (Female)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006123,"className":"EP14_Hat_010","name":"Heliopolis Anubis Headpiece (Male)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006124,"className":"EP14_Hat_011","name":"Heliopolis Anubis Headpiece (Female)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006125,"className":"EP13_Hat_twnocelot_NoTrade","name":"Ocelot Ears","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006126,"className":"Hat_twn6th_bubble_hairband_NoTrade","name":"Bubble Tea Headband","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006127,"className":"EP14_Hat_012","name":"Major Arcana The Star Tiara","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11006128,"className":"EP14_Hat_013","name":"Furry Noble Fox Ear","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11007009,"className":"EP12_Artefact_009","name":"Asteroid Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11007025,"className":"EP12_Artefact_025","name":"Mayflower Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11007041,"className":"EP12_Artefact_041","name":"MusCATeer Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11007054,"className":"EP12_Artefact_054","name":"TOS Task Force Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11007070,"className":"EP12_Artefact_070","name":"Summer Wave Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11007086,"className":"EP12_Artefact_086","name":"Honored Rose Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11007094,"className":"EP12_Artefact_094","name":"Masquerade Broken Mirror Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11007099,"className":"EP12_Artefact_099","name":"Littleberk Claw Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11007109,"className":"EP13_Artefact_006","name":"Ice Cold Handwarmer Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11007130,"className":"EP13_Artefact_027","name":"Giltine Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11007150,"className":"EP13_Artefact_047","name":"[Appearance Change] Vaivora Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11007166,"className":"EP13_Artefact_063","name":"[Appearance Change] Asio Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11007182,"className":"EP13_Artefact_079","name":"[Appearance Change] Wastrel Zvaigzde Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11007198,"className":"EP13_Artefact_095","name":"[Appearance Change] Masinios Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11007214,"className":"EP13_Artefact_111","name":"[Appearance Change] Moringponia Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11007246,"className":"EP13_Artefact_143","name":"Asgard Sleipnir Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11007265,"className":"EP13_Artefact_162","name":"[Appearance Change] Solmiki Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11007281,"className":"EP13_Artefact_178","name":"[Appearance Change] Skiaclipse Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11007297,"className":"EP13_Artefact_194","name":"[Appearance Change] Velcoffer Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11007313,"className":"EP13_Artefact_210","name":"[Appearance Change] Lolopanther Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11007333,"className":"EP12_Re_Artefact_009","name":"[Re] Asteroid Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11007356,"className":"EP12_Re_Artefact_634165","name":"[Re] Occult Paper Charm Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11007361,"className":"EP12_Re_Artefact_634125","name":"[Re] Pot-lid Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11007376,"className":"EP14_Artefact_007","name":"Knight of Zemyna Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11007387,"className":"EP14_Artefact_018","name":"Major Arcana The Sun & Moon Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11010001,"className":"EP12_FIELD_TOP_001","name":"Savinose Dysnai Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":2050,"mDef":4101,"material":"Cloth","script":{"strArg":"Legenda"}},{"itemId":11010002,"className":"EP12_FIELD_TOP_002","name":"Savinose Dysnai Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":3075,"mDef":3075,"material":"Leather","script":{"strArg":"Legenda"}},{"itemId":11010003,"className":"EP12_FIELD_TOP_003","name":"Savinose Dysnai Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":4101,"mDef":2050,"material":"Iron","script":{"strArg":"Legenda"}},{"itemId":11010004,"className":"EP12_FIELD_LEG_001","name":"Savinose Dysnai Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":2050,"mDef":4101,"material":"Cloth","script":{"strArg":"Legenda"}},{"itemId":11010005,"className":"EP12_FIELD_LEG_002","name":"Savinose Dysnai Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":3075,"mDef":3075,"material":"Leather","script":{"strArg":"Legenda"}},{"itemId":11010006,"className":"EP12_FIELD_LEG_003","name":"Savinose Dysnai Plate Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":4101,"mDef":2050,"material":"Iron","script":{"strArg":"Legenda"}},{"itemId":11010007,"className":"EP12_FIELD_FOOT_001","name":"Savinose Dysnai Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":1367,"mDef":2734,"material":"Cloth","script":{"strArg":"Legenda"}},{"itemId":11010008,"className":"EP12_FIELD_FOOT_002","name":"Savinose Dysnai Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":2050,"mDef":2050,"material":"Leather","script":{"strArg":"Legenda"}},{"itemId":11010009,"className":"EP12_FIELD_FOOT_003","name":"Savinose Dysnai Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":2734,"mDef":1367,"material":"Iron","script":{"strArg":"Legenda"}},{"itemId":11010010,"className":"EP12_FIELD_HAND_001","name":"Savinose Dysnai Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":1367,"mDef":2734,"material":"Cloth","script":{"strArg":"Legenda"}},{"itemId":11010011,"className":"EP12_FIELD_HAND_002","name":"Savinose Dysnai Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":2050,"mDef":2050,"material":"Leather","script":{"strArg":"Legenda"}},{"itemId":11010012,"className":"EP12_FIELD_HAND_003","name":"Savinose Dysnai Plate Gauntlet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":2734,"mDef":1367,"material":"Iron","script":{"strArg":"Legenda"}},{"itemId":11010013,"className":"EP12_RAID_CLOTH_TOP","name":"Glacia Legenda Robe","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":2050,"mDef":4101,"material":"Cloth","script":{"strArg":"Legenda"}},{"itemId":11010014,"className":"EP12_RAID_LEATHER_TOP","name":"Glacia Legenda Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":3075,"mDef":3075,"material":"Leather","script":{"strArg":"Legenda"}},{"itemId":11010015,"className":"EP12_RAID_PLATE_TOP","name":"Glacia Legenda Plate Armor","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":4101,"mDef":2050,"material":"Iron","script":{"strArg":"Legenda"}},{"itemId":11010016,"className":"EP12_RAID_CLOTH_LEG","name":"Glacia Legenda Pants","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":2050,"mDef":4101,"material":"Cloth","script":{"strArg":"Legenda"}},{"itemId":11010017,"className":"EP12_RAID_LEATHER_LEG","name":"Glacia Legenda Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":3075,"mDef":3075,"material":"Leather","script":{"strArg":"Legenda"}},{"itemId":11010018,"className":"EP12_RAID_PLATE_LEG","name":"Glacia Legenda Plate Pants","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":4101,"mDef":2050,"material":"Iron","script":{"strArg":"Legenda"}},{"itemId":11010019,"className":"EP12_RAID_CLOTH_FOOT","name":"Glacia Legenda Boots","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":1367,"mDef":2734,"material":"Cloth","script":{"strArg":"Legenda"}},{"itemId":11010020,"className":"EP12_RAID_LEATHER_FOOT","name":"Glacia Legenda Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":2050,"mDef":2050,"material":"Leather","script":{"strArg":"Legenda"}},{"itemId":11010021,"className":"EP12_RAID_PLATE_FOOT","name":"Glacia Legenda Greaves","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":2734,"mDef":1367,"material":"Iron","script":{"strArg":"Legenda"}},{"itemId":11010022,"className":"EP12_RAID_CLOTH_HAND","name":"Glacia Legenda Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":1367,"mDef":2734,"material":"Cloth","script":{"strArg":"Legenda"}},{"itemId":11010023,"className":"EP12_RAID_LEATHER_HAND","name":"Glacia Legenda Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":2050,"mDef":2050,"material":"Leather","script":{"strArg":"Legenda"}},{"itemId":11010024,"className":"EP12_RAID_PLATE_HAND","name":"Glacia Legenda Plate Gauntlet","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":2734,"mDef":1367,"material":"Iron","script":{"strArg":"Legenda"}},{"itemId":11010025,"className":"EP12_WEEKLY_CLOTH_TOP","name":"Glacia Legenda Robe - Courage","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":2050,"mDef":4101,"material":"Cloth"},{"itemId":11010026,"className":"EP12_WEEKLY_LEATHER_TOP","name":"Glacia Legenda Leather Armor - Courage","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":3075,"mDef":3075,"material":"Leather"},{"itemId":11010027,"className":"EP12_WEEKLY_PLATE_TOP","name":"Glacia Legenda Plate Armor - Courage","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":4101,"mDef":2050,"material":"Iron"},{"itemId":11010028,"className":"EP12_WEEKLY_CLOTH_LEG","name":"Glacia Legenda Pants - Courage","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":2050,"mDef":4101,"material":"Cloth"},{"itemId":11010029,"className":"EP12_WEEKLY_LEATHER_LEG","name":"Glacia Legenda Leather Pants - Courage","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":3075,"mDef":3075,"material":"Leather"},{"itemId":11010030,"className":"EP12_WEEKLY_PLATE_LEG","name":"Glacia Legenda Plate Pants - Courage","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":4101,"mDef":2050,"material":"Iron"},{"itemId":11010031,"className":"EP12_WEEKLY_CLOTH_FOOT","name":"Glacia Legenda Boots - Courage","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":1367,"mDef":2734,"material":"Cloth"},{"itemId":11010032,"className":"EP12_WEEKLY_LEATHER_FOOT","name":"Glacia Legenda Leather Boots - Courage","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":2050,"mDef":2050,"material":"Leather"},{"itemId":11010033,"className":"EP12_WEEKLY_PLATE_FOOT","name":"Glacia Legenda Greaves - Courage","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":2734,"mDef":1367,"material":"Iron"},{"itemId":11010034,"className":"EP12_WEEKLY_CLOTH_HAND","name":"Glacia Legenda Gloves - Courage","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":1367,"mDef":2734,"material":"Cloth"},{"itemId":11010035,"className":"EP12_WEEKLY_LEATHER_HAND","name":"Glacia Legenda Leather Gloves - Courage","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":2050,"mDef":2050,"material":"Leather"},{"itemId":11010036,"className":"EP12_WEEKLY_PLATE_HAND","name":"Glacia Legenda Plate Gauntlet - Courage","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":2734,"mDef":1367,"material":"Iron"},{"itemId":11010037,"className":"EP12_FIELD_SOLO_ROBE","name":"Savinose Dysnai Robe - Realization","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":2050,"mDef":4101,"material":"Cloth"},{"itemId":11010038,"className":"EP12_FIELD_SOLO_LEATHER_ARMOR","name":"Savinose Dysnai Leather Armor - Realization","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":3075,"mDef":3075,"material":"Leather"},{"itemId":11010039,"className":"EP12_FIELD_SOLO_PLATE_ARMOR","name":"Savinose Dysnai Plate Armor - Realization","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":4101,"mDef":2050,"material":"Iron"},{"itemId":11010040,"className":"EP12_FIELD_SOLO_PANTS","name":"Savinose Dysnai Pants - Realization","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":2050,"mDef":4101,"material":"Cloth"},{"itemId":11010041,"className":"EP12_FIELD_SOLO_LEATHER_PANTS","name":"Savinose Dysnai Leather Pants - Realization","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":3075,"mDef":3075,"material":"Leather"},{"itemId":11010042,"className":"EP12_FIELD_SOLO_PLATE_PANTS","name":"Savinose Dysnai Plate Pants - Realization","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":4101,"mDef":2050,"material":"Iron"},{"itemId":11010043,"className":"EP12_FIELD_SOLO_BOOTS","name":"Savinose Dysnai Boots - Realization","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":1367,"mDef":2734,"material":"Cloth"},{"itemId":11010044,"className":"EP12_FIELD_SOLO_LEATHER_BOOTS","name":"Savinose Dysnai Leather Boots - Realization","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":2050,"mDef":2050,"material":"Leather"},{"itemId":11010045,"className":"EP12_FIELD_SOLO_GREAVE","name":"Savinose Dysnai Greaves - Realization","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":2734,"mDef":1367,"material":"Iron"},{"itemId":11010046,"className":"EP12_FIELD_SOLO_GLOVE","name":"Savinose Dysnai Gloves - Realization","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":1367,"mDef":2734,"material":"Cloth"},{"itemId":11010047,"className":"EP12_FIELD_SOLO_LEATHER_GLOVE","name":"Savinose Dysnai Leather Gloves - Realization","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":2050,"mDef":2050,"material":"Leather"},{"itemId":11010048,"className":"EP12_FIELD_SOLO_PLATE_GAUNTLET","name":"Savinose Dysnai Plate Gauntlet - Realization","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":2734,"mDef":1367,"material":"Iron"},{"itemId":11010049,"className":"EP12_RAID_PARTY_ROBE","name":"Glacia Legenda Robe - Vigilance","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":2050,"mDef":4101,"material":"Cloth"},{"itemId":11010050,"className":"EP12_RAID_PARTY_LEATHER_ARMOR","name":"Glacia Legenda Leather Armor - Vigilance","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":3075,"mDef":3075,"material":"Leather"},{"itemId":11010051,"className":"EP12_RAID_PARTY_PLATE_ARMOR","name":"Glacia Legenda Plate Armor - Vigilance","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":4101,"mDef":2050,"material":"Iron"},{"itemId":11010052,"className":"EP12_RAID_PARTY_PANTS","name":"Glacia Legenda Pants - Vigilance","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":2050,"mDef":4101,"material":"Cloth"},{"itemId":11010053,"className":"EP12_RAID_PARTY_LEATHER_PANTS","name":"Glacia Legenda Leather Pants - Vigilance","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":3075,"mDef":3075,"material":"Leather"},{"itemId":11010054,"className":"EP12_RAID_PARTY_PLATE_PANTS","name":"Glacia Legenda Plate Pants - Vigilance","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":4101,"mDef":2050,"material":"Iron"},{"itemId":11010055,"className":"EP12_RAID_PARTY_BOOTS","name":"Glacia Legenda Boots - Vigilance","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":1367,"mDef":2734,"material":"Cloth"},{"itemId":11010056,"className":"EP12_RAID_PARTY_LEATHER_BOOTS","name":"Glacia Legenda Leather Boots - Vigilance","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":2050,"mDef":2050,"material":"Leather"},{"itemId":11010057,"className":"EP12_RAID_PARTY_GREAVE","name":"Glacia Legenda Greaves - Vigilance","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":2734,"mDef":1367,"material":"Iron"},{"itemId":11010058,"className":"EP12_RAID_PARTY_GLOVE","name":"Glacia Legenda Gloves - Vigilance","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":1367,"mDef":2734,"material":"Cloth"},{"itemId":11010059,"className":"EP12_RAID_PARTY_LEATHER_GLOVE","name":"Glacia Legenda Leather Gloves - Vigilance","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":2050,"mDef":2050,"material":"Leather"},{"itemId":11010060,"className":"EP12_RAID_PARTY_PLATE_GAUNTLET","name":"Glacia Legenda Plate Gauntlet - Vigilance","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":2734,"mDef":1367,"material":"Iron"},{"itemId":11010061,"className":"EP12_PVP_ROBE","name":"Glacia Legenda Robe - PvP","type":"Equip","group":"Armor","weight":150,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":2050,"mDef":4101,"material":"Cloth","script":{"strArg":"FreePvP"}},{"itemId":11010062,"className":"EP12_PVP_PANTS","name":"Glacia Legenda Pants - PvP","type":"Equip","group":"Armor","weight":120,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":2050,"mDef":4101,"material":"Cloth","script":{"strArg":"FreePvP"}},{"itemId":11010063,"className":"EP12_PVP_BOOTS","name":"Glacia Legenda Boots - PvP","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":1367,"mDef":2734,"material":"Cloth","script":{"strArg":"FreePvP"}},{"itemId":11010064,"className":"EP12_PVP_GLOVE","name":"Glacia Legenda Gloves - PvP","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":1367,"mDef":2734,"material":"Cloth","script":{"strArg":"FreePvP"}},{"itemId":11010065,"className":"EP12_PVP_LEATHER_ARMOR","name":"Glacia Legenda Leather Armor - PvP","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":3075,"mDef":3075,"material":"Leather","script":{"strArg":"FreePvP"}},{"itemId":11010066,"className":"EP12_PVP_LEATHER_PANTS","name":"Glacia Legenda Leather Pants - PvP","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":3075,"mDef":3075,"material":"Leather","script":{"strArg":"FreePvP"}},{"itemId":11010067,"className":"EP12_PVP_LEATHER_BOOTS","name":"Glacia Legenda Leather Boots - PvP","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":2050,"mDef":2050,"material":"Leather","script":{"strArg":"FreePvP"}},{"itemId":11010068,"className":"EP12_PVP_LEATHER_GLOVE","name":"Glacia Legenda Leather Gloves - PvP","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":2050,"mDef":2050,"material":"Leather","script":{"strArg":"FreePvP"}},{"itemId":11010069,"className":"EP12_PVP_PLATE_ARMOR","name":"Glacia Legenda Plate Armor - PvP","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Shirt","minLevel":440,"def":4101,"mDef":2050,"material":"Iron","script":{"strArg":"FreePvP"}},{"itemId":11010070,"className":"EP12_PVP_PLATE_PANTS","name":"Glacia Legenda Plate Pants - PvP","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66376,"sellPrice":0,"equipType1":"Pants","minLevel":440,"def":4101,"mDef":2050,"material":"Iron","script":{"strArg":"FreePvP"}},{"itemId":11010071,"className":"EP12_PVP_GREAVE","name":"Glacia Legenda Greaves - PvP","type":"Equip","group":"Armor","weight":50,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Boots","minLevel":440,"def":2734,"mDef":1367,"material":"Iron","script":{"strArg":"FreePvP"}},{"itemId":11010072,"className":"EP12_PVP_PLATE_GAUNTLET","name":"Glacia Legenda Plate Gauntlet - PvP","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33188,"sellPrice":0,"equipType1":"Gloves","minLevel":440,"def":2734,"mDef":1367,"material":"Iron","script":{"strArg":"FreePvP"}},{"itemId":11020008,"className":"EP12_FIELD_SHIELD","name":"Savinose Dysnai Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":44251,"sellPrice":0,"equipType1":"Shield","minLevel":440,"def":7382,"mDef":7382,"material":"Shield","script":{"strArg":"Legenda"}},{"itemId":11020025,"className":"EP12_RAID_SHIELD","name":"Glacia Legenda Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":44251,"sellPrice":0,"equipType1":"Shield","minLevel":440,"def":7382,"mDef":7382,"material":"Shield","script":{"strArg":"Legenda"}},{"itemId":11040012,"className":"Dummy_Shield_Guilty","name":"Liberated Res Sacrae Shield","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield"},{"itemId":11041001,"className":"EP13_reputation_hairacc_1","name":"Hair Accessory of Goddess Austeja","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11041002,"className":"EP13_reputation_hairacc_2","name":"Hair Accessory of Goddess Dahlia","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11060000,"className":"EP12_EVIL_TOP_Lv2","name":"[Lv2] Ziburynas Leather Armor - Overload Raid","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Shirt","minLevel":450,"def":2457,"mDef":2457,"material":"Leather","script":{"strArg":"evil","numArg1":2}},{"itemId":11060001,"className":"EP12_EVIL_LEG_Lv2","name":"[Lv2] Ziburynas Leather Pants - Overload Raid","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Pants","minLevel":450,"def":2457,"mDef":2457,"material":"Leather","script":{"strArg":"evil","numArg1":2}},{"itemId":11060002,"className":"EP12_EVIL_FOOT_Lv2","name":"[Lv2] Ziburynas Leather Boots - Overload Raid","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Boots","minLevel":450,"def":1638,"mDef":1638,"material":"Leather","script":{"strArg":"evil","numArg1":2}},{"itemId":11060003,"className":"EP12_EVIL_HAND_Lv2","name":"[Lv2] Ziburynas Leather Gloves - Overload Raid","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Gloves","minLevel":450,"def":1638,"mDef":1638,"material":"Leather","script":{"strArg":"evil","numArg1":2}},{"itemId":11060004,"className":"EP12_Vakarine_TOP_Lv2","name":"[Lv2] Vakarine Robe - Midnight Baptism","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Shirt","minLevel":450,"def":1638,"mDef":3276,"material":"Cloth","script":{"strArg":"goddess","numArg1":2}},{"itemId":11060005,"className":"EP12_Vakarine_LEG_Lv2","name":"[Lv2] Vakarine Pants - Midnight Baptism","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Pants","minLevel":450,"def":1638,"mDef":3276,"material":"Cloth","script":{"strArg":"goddess","numArg1":2}},{"itemId":11060006,"className":"EP12_Vakarine_FOOT_Lv2","name":"[Lv2] Vakarine Boots - Midnight Baptism","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Boots","minLevel":450,"def":1092,"mDef":2184,"material":"Cloth","script":{"strArg":"goddess","numArg1":2}},{"itemId":11060007,"className":"EP12_Vakarine_HAND_Lv2","name":"[Lv2] Vakarine Gloves - Midnight Baptism","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Gloves","minLevel":450,"def":1092,"mDef":2184,"material":"Cloth","script":{"strArg":"goddess","numArg1":2}},{"itemId":11060008,"className":"EP12_Zemyna_TOP_Lv2","name":"[Lv2] Zemyna Robe - Saint Oath","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Shirt","minLevel":450,"def":1638,"mDef":3276,"material":"Cloth","script":{"strArg":"goddess","numArg1":2}},{"itemId":11060009,"className":"EP12_Zemyna_LEG_Lv2","name":"[Lv2] Zemyna Pants - Saint Oath","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Pants","minLevel":450,"def":1638,"mDef":3276,"material":"Cloth","script":{"strArg":"goddess","numArg1":2}},{"itemId":11060010,"className":"EP12_Zemyna_FOOT_Lv2","name":"[Lv2] Zemyna Boots - Saint Oath","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Boots","minLevel":450,"def":1092,"mDef":2184,"material":"Cloth","script":{"strArg":"goddess","numArg1":2}},{"itemId":11060011,"className":"EP12_Zemyna_HAND_Lv2","name":"[Lv2] Zemyna Gloves - Saint Oath","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Gloves","minLevel":450,"def":1092,"mDef":2184,"material":"Cloth","script":{"strArg":"goddess","numArg1":2}},{"itemId":11060012,"className":"EP12_Dalia_TOP_Lv2","name":"[Lv2] Dahlia Robe - Infinity Blessing","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Shirt","minLevel":450,"def":1638,"mDef":3276,"material":"Cloth","script":{"strArg":"goddess","numArg1":2}},{"itemId":11060013,"className":"EP12_Dalia_LEG_Lv2","name":"[Lv2] Dahlia Pants - Infinity Blessing","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Pants","minLevel":450,"def":1638,"mDef":3276,"material":"Cloth","script":{"strArg":"goddess","numArg1":2}},{"itemId":11060014,"className":"EP12_Dalia_FOOT_Lv2","name":"[Lv2] Dahlia Boots - Infinity Blessing","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Boots","minLevel":450,"def":1092,"mDef":2184,"material":"Cloth","script":{"strArg":"goddess","numArg1":2}},{"itemId":11060015,"className":"EP12_Dalia_HAND_Lv2","name":"[Lv2] Dahlia Gloves - Infinity Blessing","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Gloves","minLevel":450,"def":1092,"mDef":2184,"material":"Cloth","script":{"strArg":"goddess","numArg1":2}},{"itemId":11060016,"className":"EP12_EVIL_SUMMONNER_TOP_Lv2","name":"[Lv2] Kartas Leather Armor - Harsh Imperator","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Shirt","minLevel":450,"def":2457,"mDef":2457,"material":"Leather","script":{"strArg":"evil","numArg1":2}},{"itemId":11060017,"className":"EP12_EVIL_SUMMONNER_LEG_Lv2","name":"[Lv2] Kartas Leather Pants - Harsh Imperator","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Pants","minLevel":450,"def":2457,"mDef":2457,"material":"Leather","script":{"strArg":"evil","numArg1":2}},{"itemId":11060018,"className":"EP12_EVIL_SUMMONNER_FOOT_Lv2","name":"[Lv2] Kartas Leather Boots - Harsh Imperator","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Boots","minLevel":450,"def":1638,"mDef":1638,"material":"Leather","script":{"strArg":"evil","numArg1":2}},{"itemId":11060019,"className":"EP12_EVIL_SUMMONNER_HAND_Lv2","name":"[Lv2] Kartas Leather Gloves - Harsh Imperator","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Gloves","minLevel":450,"def":1638,"mDef":1638,"material":"Leather","script":{"strArg":"evil","numArg1":2}},{"itemId":11060020,"className":"EP12_Gabija_TOP_Lv2","name":"[Lv2] Gabija Robe - Holy Flame","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Shirt","minLevel":450,"def":1638,"mDef":3276,"material":"Cloth","script":{"strArg":"goddess","numArg1":2}},{"itemId":11060021,"className":"EP12_Gabija_LEG_Lv2","name":"[Lv2] Gabija Pants - Holy Flame","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Pants","minLevel":450,"def":1638,"mDef":3276,"material":"Cloth","script":{"strArg":"goddess","numArg1":2}},{"itemId":11060022,"className":"EP12_Gabija_FOOT_Lv2","name":"[Lv2] Gabija Boots - Holy Flame","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Boots","minLevel":450,"def":1092,"mDef":2184,"material":"Cloth","script":{"strArg":"goddess","numArg1":2}},{"itemId":11060023,"className":"EP12_Gabija_HAND_Lv2","name":"[Lv2] Gabija Gloves - Holy Flame","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Gloves","minLevel":450,"def":1092,"mDef":2184,"material":"Cloth","script":{"strArg":"goddess","numArg1":2}},{"itemId":11060024,"className":"EP12_Austeja_TOP_Lv2","name":"[Lv2] Austeja Robe - Divine Enigma","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Shirt","minLevel":450,"def":1638,"mDef":3276,"material":"Cloth","script":{"strArg":"goddess","numArg1":2}},{"itemId":11060025,"className":"EP12_Austeja_LEG_Lv2","name":"[Lv2] Austeja Pants - Divine Enigma","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Pants","minLevel":450,"def":1638,"mDef":3276,"material":"Cloth","script":{"strArg":"goddess","numArg1":2}},{"itemId":11060026,"className":"EP12_Austeja_FOOT_Lv2","name":"[Lv2] Austeja Boots - Divine Enigma","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Boots","minLevel":450,"def":1092,"mDef":2184,"material":"Cloth","script":{"strArg":"goddess","numArg1":2}},{"itemId":11060027,"className":"EP12_Austeja_HAND_Lv2","name":"[Lv2] Austeja Gloves - Divine Enigma","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Gloves","minLevel":450,"def":1092,"mDef":2184,"material":"Cloth","script":{"strArg":"goddess","numArg1":2}},{"itemId":11060028,"className":"EP12_installation_TOP_Lv2","name":"[Lv2] Rumpelstiltskin Leather Armor - Reckless Gambler","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Shirt","minLevel":450,"def":2457,"mDef":2457,"material":"Leather","script":{"strArg":"evil","numArg1":2}},{"itemId":11060029,"className":"EP12_installation_LEG_Lv2","name":"[Lv2] Rumpelstiltskin Leather Pants - Reckless Gambler","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Pants","minLevel":450,"def":2457,"mDef":2457,"material":"Leather","script":{"strArg":"evil","numArg1":2}},{"itemId":11060030,"className":"EP12_installation_FOOT_Lv2","name":"[Lv2] Rumpelstiltskin Leather Boots - Reckless Gambler","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Boots","minLevel":450,"def":1638,"mDef":1638,"material":"Leather","script":{"strArg":"evil","numArg1":2}},{"itemId":11060031,"className":"EP12_installation_HAND_Lv2","name":"[Lv2] Rumpelstiltskin Leather Gloves - Reckless Gambler","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Gloves","minLevel":450,"def":1638,"mDef":1638,"material":"Leather","script":{"strArg":"evil","numArg1":2}},{"itemId":11060032,"className":"EP12_EVIL_TOP_Lv3","name":"[Lv3] Ziburynas Leather Armor - Overload Raid","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Shirt","minLevel":460,"def":2511,"mDef":2511,"material":"Leather","script":{"strArg":"evil","numArg1":3}},{"itemId":11060033,"className":"EP12_EVIL_LEG_Lv3","name":"[Lv3] Ziburynas Leather Pants - Overload Raid","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Pants","minLevel":460,"def":2511,"mDef":2511,"material":"Leather","script":{"strArg":"evil","numArg1":3}},{"itemId":11060034,"className":"EP12_EVIL_FOOT_Lv3","name":"[Lv3] Ziburynas Leather Boots - Overload Raid","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Boots","minLevel":460,"def":1674,"mDef":1674,"material":"Leather","script":{"strArg":"evil","numArg1":3}},{"itemId":11060035,"className":"EP12_EVIL_HAND_Lv3","name":"[Lv3] Ziburynas Leather Gloves - Overload Raid","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Gloves","minLevel":460,"def":1674,"mDef":1674,"material":"Leather","script":{"strArg":"evil","numArg1":3}},{"itemId":11060036,"className":"EP12_Vakarine_TOP_Lv3","name":"[Lv3] Vakarine Robe - Midnight Baptism","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Shirt","minLevel":460,"def":1674,"mDef":3348,"material":"Cloth","script":{"strArg":"goddess","numArg1":3}},{"itemId":11060037,"className":"EP12_Vakarine_LEG_Lv3","name":"[Lv3] Vakarine Pants - Midnight Baptism","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Pants","minLevel":460,"def":1674,"mDef":3348,"material":"Cloth","script":{"strArg":"goddess","numArg1":3}},{"itemId":11060038,"className":"EP12_Vakarine_FOOT_Lv3","name":"[Lv3] Vakarine Boots - Midnight Baptism","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Boots","minLevel":460,"def":1116,"mDef":2232,"material":"Cloth","script":{"strArg":"goddess","numArg1":3}},{"itemId":11060039,"className":"EP12_Vakarine_HAND_Lv3","name":"[Lv3] Vakarine Gloves - Midnight Baptism","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Gloves","minLevel":460,"def":1116,"mDef":2232,"material":"Cloth","script":{"strArg":"goddess","numArg1":3}},{"itemId":11060040,"className":"EP12_Zemyna_TOP_Lv3","name":"[Lv3] Zemyna Robe - Saint Oath","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Shirt","minLevel":460,"def":1674,"mDef":3348,"material":"Cloth","script":{"strArg":"goddess","numArg1":3}},{"itemId":11060041,"className":"EP12_Zemyna_LEG_Lv3","name":"[Lv3] Zemyna Pants - Saint Oath","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Pants","minLevel":460,"def":1674,"mDef":3348,"material":"Cloth","script":{"strArg":"goddess","numArg1":3}},{"itemId":11060042,"className":"EP12_Zemyna_FOOT_Lv3","name":"[Lv3] Zemyna Boots - Saint Oath","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Boots","minLevel":460,"def":1116,"mDef":2232,"material":"Cloth","script":{"strArg":"goddess","numArg1":3}},{"itemId":11060043,"className":"EP12_Zemyna_HAND_Lv3","name":"[Lv3] Zemyna Gloves - Saint Oath","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Gloves","minLevel":460,"def":1116,"mDef":2232,"material":"Cloth","script":{"strArg":"goddess","numArg1":3}},{"itemId":11060044,"className":"EP12_Dalia_TOP_Lv3","name":"[Lv3] Dahlia Robe - Infinity Blessing","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Shirt","minLevel":460,"def":1674,"mDef":3348,"material":"Cloth","script":{"strArg":"goddess","numArg1":3}},{"itemId":11060045,"className":"EP12_Dalia_LEG_Lv3","name":"[Lv3] Dahlia Pants - Infinity Blessing","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Pants","minLevel":460,"def":1674,"mDef":3348,"material":"Cloth","script":{"strArg":"goddess","numArg1":3}},{"itemId":11060046,"className":"EP12_Dalia_FOOT_Lv3","name":"[Lv3] Dahlia Boots - Infinity Blessing","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Boots","minLevel":460,"def":1116,"mDef":2232,"material":"Cloth","script":{"strArg":"goddess","numArg1":3}},{"itemId":11060047,"className":"EP12_Dalia_HAND_Lv3","name":"[Lv3] Dahlia Gloves - Infinity Blessing","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Gloves","minLevel":460,"def":1116,"mDef":2232,"material":"Cloth","script":{"strArg":"goddess","numArg1":3}},{"itemId":11060048,"className":"EP12_EVIL_SUMMONNER_TOP_Lv3","name":"[Lv3] Kartas Leather Armor - Harsh Imperator","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Shirt","minLevel":460,"def":2511,"mDef":2511,"material":"Leather","script":{"strArg":"evil","numArg1":3}},{"itemId":11060049,"className":"EP12_EVIL_SUMMONNER_LEG_Lv3","name":"[Lv3] Kartas Leather Pants - Harsh Imperator","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Pants","minLevel":460,"def":2511,"mDef":2511,"material":"Leather","script":{"strArg":"evil","numArg1":3}},{"itemId":11060050,"className":"EP12_EVIL_SUMMONNER_FOOT_Lv3","name":"[Lv3] Kartas Leather Boots - Harsh Imperator","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Boots","minLevel":460,"def":1674,"mDef":1674,"material":"Leather","script":{"strArg":"evil","numArg1":3}},{"itemId":11060051,"className":"EP12_EVIL_SUMMONNER_HAND_Lv3","name":"[Lv3] Kartas Leather Gloves - Harsh Imperator","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Gloves","minLevel":460,"def":1674,"mDef":1674,"material":"Leather","script":{"strArg":"evil","numArg1":3}},{"itemId":11060052,"className":"EP12_Gabija_TOP_Lv3","name":"[Lv3] Gabija Robe - Holy Flame","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Shirt","minLevel":460,"def":1674,"mDef":3348,"material":"Cloth","script":{"strArg":"goddess","numArg1":3}},{"itemId":11060053,"className":"EP12_Gabija_LEG_Lv3","name":"[Lv3] Gabija Pants - Holy Flame","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Pants","minLevel":460,"def":1674,"mDef":3348,"material":"Cloth","script":{"strArg":"goddess","numArg1":3}},{"itemId":11060054,"className":"EP12_Gabija_FOOT_Lv3","name":"[Lv3] Gabija Boots - Holy Flame","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Boots","minLevel":460,"def":1116,"mDef":2232,"material":"Cloth","script":{"strArg":"goddess","numArg1":3}},{"itemId":11060055,"className":"EP12_Gabija_HAND_Lv3","name":"[Lv3] Gabija Gloves - Holy Flame","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Gloves","minLevel":460,"def":1116,"mDef":2232,"material":"Cloth","script":{"strArg":"goddess","numArg1":3}},{"itemId":11060056,"className":"EP12_Austeja_TOP_Lv3","name":"[Lv3] Austeja Robe - Divine Enigma","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Shirt","minLevel":460,"def":1674,"mDef":3348,"material":"Cloth","script":{"strArg":"goddess","numArg1":3}},{"itemId":11060057,"className":"EP12_Austeja_LEG_Lv3","name":"[Lv3] Austeja Pants - Divine Enigma","type":"Equip","group":"Armor","weight":130,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Pants","minLevel":460,"def":1674,"mDef":3348,"material":"Cloth","script":{"strArg":"goddess","numArg1":3}},{"itemId":11060058,"className":"EP12_Austeja_FOOT_Lv3","name":"[Lv3] Austeja Boots - Divine Enigma","type":"Equip","group":"Armor","weight":35,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Boots","minLevel":460,"def":1116,"mDef":2232,"material":"Cloth","script":{"strArg":"goddess","numArg1":3}},{"itemId":11060059,"className":"EP12_Austeja_HAND_Lv3","name":"[Lv3] Austeja Gloves - Divine Enigma","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Gloves","minLevel":460,"def":1116,"mDef":2232,"material":"Cloth","script":{"strArg":"goddess","numArg1":3}},{"itemId":11060060,"className":"EP12_installation_TOP_Lv3","name":"[Lv3] Rumpelstiltskin Leather Armor - Reckless Gambler","type":"Equip","group":"Armor","weight":190,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Shirt","minLevel":460,"def":2511,"mDef":2511,"material":"Leather","script":{"strArg":"evil","numArg1":3}},{"itemId":11060061,"className":"EP12_installation_LEG_Lv3","name":"[Lv3] Rumpelstiltskin Leather Pants - Reckless Gambler","type":"Equip","group":"Armor","weight":180,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Pants","minLevel":460,"def":2511,"mDef":2511,"material":"Leather","script":{"strArg":"evil","numArg1":3}},{"itemId":11060062,"className":"EP12_installation_FOOT_Lv3","name":"[Lv3] Rumpelstiltskin Leather Boots - Reckless Gambler","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Boots","minLevel":460,"def":1674,"mDef":1674,"material":"Leather","script":{"strArg":"evil","numArg1":3}},{"itemId":11060063,"className":"EP12_installation_HAND_Lv3","name":"[Lv3] Rumpelstiltskin Leather Gloves - Reckless Gambler","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Gloves","minLevel":460,"def":1674,"mDef":1674,"material":"Leather","script":{"strArg":"evil","numArg1":3}},{"itemId":11090000,"className":"EP13_RAID_CLOTH_TOP","name":"Vasilisa Robe","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Shirt","minLevel":460,"def":3417,"mDef":6835,"material":"Cloth","script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11090001,"className":"EP13_RAID_CLOTH_LEG","name":"Vasilisa Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Pants","minLevel":460,"def":3417,"mDef":6835,"material":"Cloth","script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11090002,"className":"EP13_RAID_CLOTH_FOOT","name":"Vasilisa Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Boots","minLevel":460,"def":3417,"mDef":6835,"material":"Cloth","script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11090003,"className":"EP13_RAID_CLOTH_HAND","name":"Vasilisa Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Gloves","minLevel":460,"def":3417,"mDef":6835,"material":"Cloth","script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11090004,"className":"EP13_RAID_LEATHER_TOP","name":"Vasilisa Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Shirt","minLevel":460,"def":5126,"mDef":5126,"material":"Leather","script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11090005,"className":"EP13_RAID_LEATHER_LEG","name":"Vasilisa Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Pants","minLevel":460,"def":5126,"mDef":5126,"material":"Leather","script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11090006,"className":"EP13_RAID_LEATHER_FOOT","name":"Vasilisa Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Boots","minLevel":460,"def":5126,"mDef":5126,"material":"Leather","script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11090007,"className":"EP13_RAID_LEATHER_HAND","name":"Vasilisa Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Gloves","minLevel":460,"def":5126,"mDef":5126,"material":"Leather","script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11090008,"className":"EP13_RAID_PLATE_TOP","name":"Vasilisa Plate Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Shirt","minLevel":460,"def":6835,"mDef":3417,"material":"Iron","script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11090009,"className":"EP13_RAID_PLATE_LEG","name":"Vasilisa Plate Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66513,"sellPrice":0,"equipType1":"Pants","minLevel":460,"def":6835,"mDef":3417,"material":"Iron","script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11090010,"className":"EP13_RAID_PLATE_FOOT","name":"Vasilisa Greaves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Boots","minLevel":460,"def":6835,"mDef":3417,"material":"Iron","script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11090011,"className":"EP13_RAID_PLATE_HAND","name":"Vasilisa Plate Gauntlet","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33256,"sellPrice":0,"equipType1":"Gloves","minLevel":460,"def":6835,"mDef":3417,"material":"Iron","script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11095007,"className":"EP13_RAID_SHIELD","name":"Vasilisa Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Shield","minLevel":460,"def":13128,"mDef":13128,"material":"Shield","script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11096000,"className":"GROWTH_REINFORCE_TIER1_LEATHER_TOP","name":"Guardian Leather Armor","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Shirt","minLevel":1,"def":28,"mDef":28,"material":"Leather","script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier1"}},{"itemId":11096001,"className":"GROWTH_REINFORCE_TIER1_LEATHER_LEG","name":"Guardian Leather Pants","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":360,"sellPrice":0,"equipType1":"Pants","minLevel":1,"def":28,"mDef":28,"material":"Leather","script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier1"}},{"itemId":11096002,"className":"GROWTH_REINFORCE_TIER1_LEATHER_FOOT","name":"Guardian Leather Boots","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Boots","minLevel":1,"def":28,"mDef":28,"material":"Leather","script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier1"}},{"itemId":11096003,"className":"GROWTH_REINFORCE_TIER1_LEATHER_HAND","name":"Guardian Leather Gloves","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":180,"sellPrice":0,"equipType1":"Gloves","minLevel":1,"def":28,"mDef":28,"material":"Leather","script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier1"}},{"itemId":11096010,"className":"GROWTH_REINFORCE_TIER2_LEATHER_TOP","name":"Elite Guardian Leather Armor","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Shirt","minLevel":120,"def":1469,"mDef":1469,"material":"Leather","script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier2"}},{"itemId":11096011,"className":"GROWTH_REINFORCE_TIER2_LEATHER_LEG","name":"Elite Guardian Leather Pants","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":13968,"sellPrice":0,"equipType1":"Pants","minLevel":120,"def":1469,"mDef":1469,"material":"Leather","script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier2"}},{"itemId":11096012,"className":"GROWTH_REINFORCE_TIER2_LEATHER_FOOT","name":"Elite Guardian Leather Boots","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Boots","minLevel":120,"def":1469,"mDef":1469,"material":"Leather","script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier2"}},{"itemId":11096013,"className":"GROWTH_REINFORCE_TIER2_LEATHER_HAND","name":"Elite Guardian Leather Gloves","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":6984,"sellPrice":0,"equipType1":"Gloves","minLevel":120,"def":1469,"mDef":1469,"material":"Leather","script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier2"}},{"itemId":11096020,"className":"GROWTH_REINFORCE_TIER3_LEATHER_TOP","name":"Royal Guardian Leather Armor","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":37152,"sellPrice":0,"equipType1":"Shirt","minLevel":280,"def":13982,"mDef":13982,"material":"Leather","script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier3"}},{"itemId":11096021,"className":"GROWTH_REINFORCE_TIER3_LEATHER_LEG","name":"Royal Guardian Leather Pants","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":37152,"sellPrice":0,"equipType1":"Pants","minLevel":280,"def":13982,"mDef":13982,"material":"Leather","script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier3"}},{"itemId":11096022,"className":"GROWTH_REINFORCE_TIER3_LEATHER_FOOT","name":"Royal Guardian Leather Boots","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":18576,"sellPrice":0,"equipType1":"Boots","minLevel":280,"def":13982,"mDef":13982,"material":"Leather","script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier3"}},{"itemId":11096023,"className":"GROWTH_REINFORCE_TIER3_LEATHER_HAND","name":"Royal Guardian Leather Gloves","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":18576,"sellPrice":0,"equipType1":"Gloves","minLevel":280,"def":13982,"mDef":13982,"material":"Leather","script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier3"}},{"itemId":11096507,"className":"GROWTH_REINFORCE_TIER1_SHIELD","name":"Guardian Shield","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":33,"mDef":33,"material":"Shield","script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier1"}},{"itemId":11096537,"className":"GROWTH_REINFORCE_TIER2_SHIELD","name":"Elite Guardian Shield","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":9312,"sellPrice":0,"equipType1":"Shield","minLevel":120,"def":1947,"mDef":1947,"material":"Shield","script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier2"}},{"itemId":11096577,"className":"GROWTH_REINFORCE_TIER3_SHIELD","name":"Royal Guardian Shield","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":24768,"sellPrice":0,"equipType1":"Shield","minLevel":280,"def":8840,"mDef":8840,"material":"Shield","script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier3"}},{"itemId":11097000,"className":"REINF_GROWTH_EP1_NECK","name":"[Growing] Necklace","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Neck","equipType2":"Sword","minLevel":1,"minAtk":4,"maxAtk":4,"mAtk":4,"script":{"strArg":"Growth_By_Reinforce/Episode_1"}},{"itemId":11097001,"className":"REINF_GROWTH_EP1_RING","name":"[Growing] Bracelet","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Ring","minLevel":1,"minAtk":4,"maxAtk":4,"mAtk":4,"script":{"strArg":"Growth_By_Reinforce/Episode_1"}},{"itemId":11098001,"className":"DesignCut_HAIR_M_132","name":"[Pocket Wig] Bunny Boy","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"bunnyboy"}},{"itemId":11098002,"className":"DesignCut_HAIR_M_133","name":"[Pocket Wig] Two-tone Dandy Cut","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"mintpink"}},{"itemId":11098003,"className":"DesignCut_HAIR_M_134","name":"[Pocket Wig] Noble Wave Ponytail ","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"redbridge"}},{"itemId":11098004,"className":"DesignCut_HAIR_M_125","name":"[Pocket Wig] Retro Layered","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"shepherd"}},{"itemId":11098005,"className":"DesignCut_HAIR_M_137","name":"[Pocket Wig] Short Regent Hair","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"bulletmarker"}},{"itemId":11098006,"className":"DesignCut_HAIR_M_138","name":"[Pocket Wig] Two-block Ponytail","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"undercuttail"}},{"itemId":11098007,"className":"DesignCut_HAIR_M_139","name":"[Pocket Wig] Side Swept","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"sideswept"}},{"itemId":11098008,"className":"DesignCut_HAIR_M_140","name":"[Pocket Wig] Volume Wave","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"volumewavecurl"}},{"itemId":11098009,"className":"DesignCut_HAIR_M_141","name":"[Pocket Wig] Slight Wavy","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"slightwavy"}},{"itemId":11098010,"className":"DesignCut_HAIR_M_142","name":"[Pocket Wig] Wavy Ponytail","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"wavyponytail"}},{"itemId":11098011,"className":"DesignCut_HAIR_M_143","name":"[Pocket Wig] Bucket Iron Perm","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"hiphop_male_hair_cap"}},{"itemId":11098012,"className":"DesignCut_HAIR_M_144","name":"[Pocket Wig] Iron Perm","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"hiphop_male_hair_nocap"}},{"itemId":11098013,"className":"DesignCut_HAIR_M_145","name":"[Pocket Wig] Long Moisty Wave","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"20halloween_seaweed_hair"}},{"itemId":11098014,"className":"DesignCut_HAIR_M_146","name":"[Pocket Wig] Retro Long Quiff","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"retro_long_regent"}},{"itemId":11099001,"className":"DesignCut_HAIR_F_126","name":"[Pocket Wig] Romantic Bun","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"nature_waveup"}},{"itemId":11099002,"className":"DesignCut_HAIR_F_133","name":"[Pocket Wig] Goth Loli","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"gothloli_hair"}},{"itemId":11099003,"className":"DesignCut_HAIR_F_134","name":"[Pocket Wig] Side Ponytail","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"waveponytail"}},{"itemId":11099004,"className":"DesignCut_HAIR_F_135","name":"[Pocket Wig] Choppy Bangs","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"pinkgradation"}},{"itemId":11099005,"className":"DesignCut_HAIR_F_138","name":"[Pocket Wig] Fishtail","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"braidtwin"}},{"itemId":11099006,"className":"DesignCut_HAIR_F_139","name":"[Pocket Wig] Twintail Chignon","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"twintailchignon"}},{"itemId":11099007,"className":"DesignCut_HAIR_F_140","name":"[Pocket Wig] French Bob","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"frenchbob"}},{"itemId":11099008,"className":"DesignCut_HAIR_F_141","name":"[Pocket Wig] Braid Long","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"braidlong"}},{"itemId":11099009,"className":"DesignCut_HAIR_F_142","name":"[Pocket Wig] Classic Bob","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"classicbob"}},{"itemId":11099010,"className":"DesignCut_HAIR_F_143","name":"[Pocket Wig] Twin Dumpling Long Wave","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"twindumplinglongwave"}},{"itemId":11099011,"className":"DesignCut_HAIR_F_147","name":"[Pocket Wig] Snapback Bridge Long","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"hair_hiphop_female_hair_cap"}},{"itemId":11099012,"className":"DesignCut_HAIR_F_148","name":"[Pocket Wig] Bridge Long","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"hair_hiphop_female_hair_nocap"}},{"itemId":11099013,"className":"DesignCut_HAIR_F_149","name":"[Pocket Wig] Tangle Up","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"20halloween_tangle_up_hair"}},{"itemId":11099014,"className":"DesignCut_HAIR_F_150","name":"[Pocket Wig] Semi Wave Long Perm","type":"Equip","group":"Armor","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"semi_wave_long"}},{"itemId":11100002,"className":"EP13_BRC06_HIGH_001","name":"Isidavie Juoda Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":44525,"sellPrice":0,"equipType1":"Ring","minLevel":470,"minAtk":934,"maxAtk":934,"mAtk":934,"script":{"strArg":"Isdavi","numArg1":13}},{"itemId":11100003,"className":"EP13_BRC06_HIGH_002","name":"Isidavie Isgarinti Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":44525,"sellPrice":0,"equipType1":"Ring","minLevel":470,"minAtk":934,"maxAtk":934,"mAtk":934,"script":{"strArg":"Isdavi","numArg1":13}},{"itemId":11100004,"className":"EP13_BRC06_HIGH_003","name":"Isidavie Kantribe Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":44525,"sellPrice":0,"equipType1":"Ring","minLevel":470,"minAtk":934,"maxAtk":934,"mAtk":934,"addDef":1650,"addMDef":1650,"script":{"strArg":"Isdavi","numArg1":13}},{"itemId":11100005,"className":"EP13_BRC06_HIGH_004","name":"Isidavie Pyktis Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":44525,"sellPrice":0,"equipType1":"Ring","minLevel":470,"minAtk":934,"maxAtk":934,"mAtk":934,"script":{"strArg":"Isdavi","numArg1":13}},{"itemId":11100006,"className":"EP13_BRC06_HIGH_005","name":"Isidavie Triukas Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":44525,"sellPrice":0,"equipType1":"Ring","minLevel":470,"minAtk":934,"maxAtk":934,"mAtk":934,"script":{"strArg":"Isdavi","numArg1":13}},{"itemId":11100007,"className":"EP13_BRC06_HIGH_006","name":"Isidavie Prideti Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":44525,"sellPrice":0,"equipType1":"Ring","minLevel":470,"minAtk":934,"maxAtk":934,"mAtk":934,"script":{"strArg":"Isdavi","numArg1":13}},{"itemId":11100008,"className":"EP13_NECK06_HIGH_001","name":"Isidavie Juoda Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":44525,"sellPrice":0,"equipType1":"Neck","minLevel":470,"minAtk":934,"maxAtk":934,"mAtk":934,"script":{"strArg":"Isdavi","numArg1":13}},{"itemId":11100009,"className":"EP13_NECK06_HIGH_002","name":"Isidavie Isgarinti Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":44525,"sellPrice":0,"equipType1":"Neck","minLevel":470,"minAtk":934,"maxAtk":934,"mAtk":934,"script":{"strArg":"Isdavi","numArg1":13}},{"itemId":11100010,"className":"EP13_NECK06_HIGH_003","name":"Isidavie Kantribe Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":44525,"sellPrice":0,"equipType1":"Neck","minLevel":470,"minAtk":934,"maxAtk":934,"mAtk":934,"addDef":3300,"addMDef":3300,"script":{"strArg":"Isdavi","numArg1":13}},{"itemId":11100011,"className":"EP13_NECK06_HIGH_004","name":"Isidavie Pyktis Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":44525,"sellPrice":0,"equipType1":"Neck","minLevel":470,"minAtk":934,"maxAtk":934,"mAtk":934,"script":{"strArg":"Isdavi","numArg1":13}},{"itemId":11100012,"className":"EP13_NECK06_HIGH_005","name":"Isidavie Triukas Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":44525,"sellPrice":0,"equipType1":"Neck","minLevel":470,"minAtk":934,"maxAtk":934,"mAtk":934,"script":{"strArg":"Isdavi","numArg1":13}},{"itemId":11100013,"className":"EP13_NECK06_HIGH_006","name":"Isidavie Prideti Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":44525,"sellPrice":0,"equipType1":"Neck","minLevel":470,"minAtk":934,"maxAtk":934,"mAtk":934,"script":{"strArg":"Isdavi","numArg1":13}},{"itemId":11100015,"className":"EP14_RAID_CLOTH_TOP","name":"Falouros Robe","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66924,"sellPrice":0,"equipType1":"Shirt","minLevel":480,"def":29904,"mDef":59808,"material":"Cloth","script":{"strArg":"Goddess_Armor_Lv480"}},{"itemId":11100016,"className":"EP14_RAID_CLOTH_LEG","name":"Falouros Pant","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66924,"sellPrice":0,"equipType1":"Pants","minLevel":480,"def":29904,"mDef":59808,"material":"Cloth","script":{"strArg":"Goddess_Armor_Lv480"}},{"itemId":11100017,"className":"EP14_RAID_CLOTH_FOOT","name":"Falouros Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33462,"sellPrice":0,"equipType1":"Boots","minLevel":480,"def":29904,"mDef":59808,"material":"Cloth","script":{"strArg":"Goddess_Armor_Lv480"}},{"itemId":11100018,"className":"EP14_RAID_CLOTH_HAND","name":"Falouros Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33462,"sellPrice":0,"equipType1":"Gloves","minLevel":480,"def":29904,"mDef":59808,"material":"Cloth","script":{"strArg":"Goddess_Armor_Lv480"}},{"itemId":11100019,"className":"EP14_RAID_LEATHER_TOP","name":"Falouros Leather Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66924,"sellPrice":0,"equipType1":"Shirt","minLevel":480,"def":44856,"mDef":44856,"material":"Leather","script":{"strArg":"Goddess_Armor_Lv480"}},{"itemId":11100020,"className":"EP14_RAID_LEATHER_LEG","name":"Falouros Leather Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66924,"sellPrice":0,"equipType1":"Pants","minLevel":480,"def":44856,"mDef":44856,"material":"Leather","script":{"strArg":"Goddess_Armor_Lv480"}},{"itemId":11100021,"className":"EP14_RAID_LEATHER_FOOT","name":"Falouros Leather Boots","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33462,"sellPrice":0,"equipType1":"Boots","minLevel":480,"def":44856,"mDef":44856,"material":"Leather","script":{"strArg":"Goddess_Armor_Lv480"}},{"itemId":11100022,"className":"EP14_RAID_LEATHER_HAND","name":"Falouros Leather Gloves","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33462,"sellPrice":0,"equipType1":"Gloves","minLevel":480,"def":44856,"mDef":44856,"material":"Leather","script":{"strArg":"Goddess_Armor_Lv480"}},{"itemId":11100023,"className":"EP14_RAID_PLATE_TOP","name":"Falouros Plate Armor","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66924,"sellPrice":0,"equipType1":"Shirt","minLevel":480,"def":59808,"mDef":29904,"material":"Iron","script":{"strArg":"Goddess_Armor_Lv480"}},{"itemId":11100024,"className":"EP14_RAID_PLATE_LEG","name":"Falouros Plate Pants","type":"Equip","group":"Armor","weight":170,"maxStack":1,"price":66924,"sellPrice":0,"equipType1":"Pants","minLevel":480,"def":59808,"mDef":29904,"material":"Iron","script":{"strArg":"Goddess_Armor_Lv480"}},{"itemId":11100025,"className":"EP14_RAID_PLATE_FOOT","name":"Falouros Greaves","type":"Equip","group":"Armor","weight":40,"maxStack":1,"price":33462,"sellPrice":0,"equipType1":"Boots","minLevel":480,"def":59808,"mDef":29904,"material":"Iron","script":{"strArg":"Goddess_Armor_Lv480"}},{"itemId":11100026,"className":"EP14_RAID_PLATE_HAND","name":"Falouros Plate Gauntlet","type":"Equip","group":"Armor","weight":30,"maxStack":1,"price":33462,"sellPrice":0,"equipType1":"Gloves","minLevel":480,"def":59808,"mDef":29904,"material":"Iron","script":{"strArg":"Goddess_Armor_Lv480"}},{"itemId":11100034,"className":"EP14_RAID_SHIELD","name":"Reservoir Shield","type":"Equip","group":"Armor","weight":70,"maxStack":1,"price":44616,"sellPrice":0,"equipType1":"Shield","minLevel":480,"def":30551,"mDef":30551,"material":"Shield","script":{"strArg":"Goddess_Weapon_Lv480"}},{"itemId":11100055,"className":"EP14_NECK_01","name":"Baud Pyktis Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":47650,"sellPrice":0,"equipType1":"Neck","minLevel":490,"minAtk":2500,"maxAtk":2500,"mAtk":2500,"script":{"strArg":"baud","numArg1":14}},{"itemId":11100056,"className":"EP14_BRC_01","name":"Baud Pyktis Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":47650,"sellPrice":0,"equipType1":"Ring","minLevel":490,"minAtk":2500,"maxAtk":2500,"mAtk":2500,"script":{"strArg":"baud","numArg1":14}},{"itemId":11100057,"className":"EP14_NECK_02","name":"Baud Kantribe Necklace","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":47650,"sellPrice":0,"equipType1":"Neck","minLevel":490,"minAtk":2500,"maxAtk":2500,"mAtk":2500,"addDef":9900,"addMDef":9900,"script":{"strArg":"baud","numArg1":14}},{"itemId":11100058,"className":"EP14_BRC_02","name":"Baud Kantribe Bracelet","type":"Equip","group":"Armor","weight":45,"maxStack":1,"price":47650,"sellPrice":0,"equipType1":"Ring","minLevel":490,"minAtk":2500,"maxAtk":2500,"mAtk":2500,"addDef":3300,"addMDef":3300,"script":{"strArg":"baud","numArg1":14}},{"itemId":11102001,"className":"Hat_scootergoggle","name":"Popo Scooter Goggles","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11102002,"className":"Hat_jellyzele_crown","name":"Jellyzele Crown","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11102003,"className":"Hat_nightrabbit","name":"Midnight Bunny Short Ear (Male)","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11102004,"className":"Hat_ep15spring01","name":"Spring Fluff Hair Costume","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11102006,"className":"Hat_ep15picnic01","name":"Picnic Lace Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11102007,"className":"Hat_ep15picnic02","name":"Picnic Frill Hat","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11102008,"className":"Hat_Kepaberet","name":"[W] Kepa Beret","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11102009,"className":"Hat_ep15unicorn01","name":"Unicorn PJs Sleep Mask","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11102010,"className":"Hat_ep15unicorn02","name":"Unicorn PJs Ribbon Horn","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11102011,"className":"Hat_7th_britishRoyal","name":"Royal Marriage Crown","type":"Equip","group":"Armor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":11104006,"className":"guiltynelaima_shield","name":"Goddess Sister's Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11104010,"className":"EP15_Artefact_004","name":"Lofty Snow Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11104014,"className":"ep15spring01_shield","name":"Spring Fluff Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11104019,"className":"ep15unicorn_shield","name":"Unicorn PJs Shield","type":"Equip","group":"Armor","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Shield","minLevel":1,"def":51,"mDef":51,"material":"Shield","script":{"strArg":"WoodCarving"}},{"itemId":11100044,"className":"EP13_penetration_belt","name":"Belt of Insight","type":"Equip","group":"BELT","weight":25,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"BELT","minLevel":470,"script":{"strArg":"piece_penetration_belt","numArg1":4}},{"itemId":11100045,"className":"EP13_penetration_belt_high","name":"Advanced Belt of Insight","type":"Equip","group":"BELT","weight":25,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"BELT","minLevel":470,"script":{"strArg":"piece_penetration_belt","numArg1":20}},{"itemId":11100046,"className":"EP13_penetration_belt_high2","name":"Superior Belt of Insight","type":"Equip","group":"BELT","weight":25,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"BELT","minLevel":470,"script":{"strArg":"piece_penetration_belt","numArg1":200}},{"itemId":11100060,"className":"NoTrade_EP13_penetration_belt_high","name":"[Event] Advanced Belt of Insight","type":"Equip","group":"BELT","weight":25,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"BELT","minLevel":470,"script":{"strArg":"piece_penetration_belt","numArg1":20}},{"itemId":11100061,"className":"NoTrade_EP13_penetration_belt_high2","name":"[Event] Superior Belt of Insight","type":"Equip","group":"BELT","weight":25,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"BELT","minLevel":470,"script":{"strArg":"piece_penetration_belt","numArg1":200}},{"itemId":661203,"className":"Collection_Base_CASTLE65_3_HQ1","name":"Mihail's Review","type":"Consume","group":"Book","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"CASTLE65_3_HQ1_COLLECTION1"}},{"itemId":663196,"className":"JOB_1_SAGE_ITEM1","name":"Sage Baseline","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"JOB_SAGE_book1"}},{"itemId":663197,"className":"JOB_1_SAGE_ITEM2","name":"The Goddess' Abode of Mount Monderor Volume I","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"JOB_SAGE_book2"}},{"itemId":663198,"className":"JOB_1_SAGE_ITEM3","name":"Book of the Void","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"JOB_SAGE_book3"}},{"itemId":690001,"className":"Book1","name":"Book Name","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Book1","numArg1":10}},{"itemId":690002,"className":"Book2","name":"Lydia Schaffen and the Fletcher","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Book2","numArg1":10}},{"itemId":690003,"className":"Book3","name":"Silver of Fedimian","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Book3","numArg1":10}},{"itemId":690004,"className":"Book4","name":"Lydia Schaffen Crossroads","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Book4","numArg1":10}},{"itemId":690005,"className":"Book5","name":"The Notch of Lydia Schaffen","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Book5","numArg1":10}},{"itemId":690006,"className":"Book6","name":"Lydia Schaffen and Rumpelstiltskin ","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Book6","numArg1":10}},{"itemId":690007,"className":"Book7","name":"Atman Extension","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Book7","numArg1":10}},{"itemId":690008,"className":"Book8","name":"Kadumel Era Armor","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Book8","numArg1":10}},{"itemId":690009,"className":"Book9","name":"The Gambler of Klaipeda","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Book9","numArg1":10}},{"itemId":690010,"className":"HUEVILLAGE_book01","name":"Torn Diary (Part 1)","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"HUEVILLAGE_book01","numArg1":10}},{"itemId":690011,"className":"HUEVILLAGE_book02","name":"Torn Diary (Part 2)","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"HUEVILLAGE_book02","numArg1":10}},{"itemId":690012,"className":"HUEVILLAGE_book03","name":"Torn Diary (Part 3)","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"HUEVILLAGE_book03","numArg1":10}},{"itemId":690013,"className":"HUEVILLAGE_book04","name":"Torn Diary (Part 4)","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"HUEVILLAGE_book04","numArg1":10}},{"itemId":690014,"className":"STARTOWER_memo01_BOOK","name":"Unknown Adventurer's Diary","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"STARTOWER_memo01","numArg1":10}},{"itemId":690015,"className":"STARTOWER_memo02_BOOK","name":"Beikeol's Reply","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"STARTOWER_memo02","numArg1":10}},{"itemId":690016,"className":"STARTOWER_memo03_BOOK","name":"Purchase Order","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"STARTOWER_memo03","numArg1":10}},{"itemId":690017,"className":"FARM47_2_DIARY_BOOK","name":"Baron Secretary Andol's Journal","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"FARM47_2_DIARY","numArg1":10}},{"itemId":690018,"className":"VPRISON_paper02_BOOK","name":"Crumbling Document","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"VPRISON_paper02","numArg1":10}},{"itemId":690019,"className":"PILGRIM47_DMSG_BOOK","name":"Torn Letter","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"PILGRIM47_DMSG_BASIC01","numArg1":10}},{"itemId":690020,"className":"PILGRIM47_DMSG02_BOOK","name":"Pilgrim's Memo","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"PILGRIM47_DMSG02_BASIC01","numArg1":10}},{"itemId":690021,"className":"PILGRIM47_DMSG03_BOOK","name":"Ripped Diary","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"PILGRIM47_DMSG03_BASIC01","numArg1":10}},{"itemId":690022,"className":"PILGRIM47_DMSG04_BOOK","name":"Last Record","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"PILGRIM47_DMSG04_BASIC01","numArg1":10}},{"itemId":690023,"className":"PILGRIM47_DMSG05_BOOK","name":"Will","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"PILGRIM47_DMSG05_BASIC01","numArg1":10}},{"itemId":690024,"className":"PILGRIM47_DMSG06_BOOK","name":"Blackened Clue","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"PILGRIM47_DMSG06_BASIC01","numArg1":10}},{"itemId":690025,"className":"PILGRIM50_DIARY_BOOK","name":"Abandoned Diary","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"PILGRIM50_DIARY","numArg1":10}},{"itemId":690026,"className":"PILGRIM50_LOSTPAPER_BOOK","name":"Diary written in Anger","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"PILGRIM50_LOSTPAPER_BASIC01","numArg1":10}},{"itemId":690027,"className":"VPRISON_PAPER01_BOOK","name":"Baron Soldier Chagos' Diary","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"VPRISON_paper01","numArg1":10}},{"itemId":690028,"className":"VPRISON_PAPER03_BOOK","name":"Order to defeat the Demons","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"VPRISON_paper03","numArg1":10}},{"itemId":690029,"className":"ROKAS_MEMO01_BOOK","name":"Eviction Order","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ROKAS_MEMO03","numArg1":10}},{"itemId":690030,"className":"ROKAS_MEMO02_BOOK","name":"The Grass of King Zachariel","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ROKAS_MEMO01","numArg1":10}},{"itemId":690031,"className":"ROKAS_MEMO03_BOOK","name":"Warning Sign for Unauthorized Entrants","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ROKAS_MEMO02","numArg1":10}},{"itemId":690032,"className":"PILGRIM51_LOSTPAPER_BOOK","name":"Wrinkled Letter","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"PILGRIM51_LOSTPAPER_BASIC01","numArg1":10}},{"itemId":690033,"className":"VACYS_note_COM","name":"Varkis' Complete Research Materials","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"VACYS_note_COM_LOG","numArg1":10}},{"itemId":690034,"className":"CATACOMB_04_NOTE","name":"The Inheritance of the Master","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"CATACOMB_04_NOTE_book1","numArg1":10}},{"itemId":690035,"className":"PILGRIM311_BOOK_01","name":"Roxona Civil War, Chapter 1","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"PILGRIM311_BOOK_01"}},{"itemId":690036,"className":"PILGRIM311_BOOK_02","name":"Roxona Civil War, Chapter 2","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"PILGRIM311_BOOK_02"}},{"itemId":690037,"className":"F_3CMLAKE_83_MQ_05_BOOK","name":"Half-Burnt Diary's Note","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"3CMLAKE_83_MQ_05_DLG_BOOK"}},{"itemId":690038,"className":"UNDER67_SQ1_COPY_BOOK1","name":"First Volume Copy of Ruklys' Barrack Journal","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"UNDERFORTRESS_67_SQ010_book01"}},{"itemId":690039,"className":"UNDER67_SQ1_COPY_BOOK2","name":"Second Volume Copy of Ruklys' Barrack Journal","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"UNDERFORTRESS_67_SQ010_book02"}},{"itemId":690040,"className":"ORSHA_BOOK_karolis01_BOOK","name":"The Story of Karolis Vol. 1","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ORSHA_BOOK_karolis01"}},{"itemId":690041,"className":"ORSHA_BOOK_karolis02_BOOK","name":"The Story of Karolis Vol. 2","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ORSHA_BOOK_karolis02"}},{"itemId":690042,"className":"ORSHA_BOOK_karolis03_BOOK","name":"The Story of Karolis Vol. 3","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ORSHA_BOOK_karolis03"}},{"itemId":690043,"className":"HAYRAVERN_BOOK02","name":"The Great Pirate and Hirevan Vol. 2","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Hayravern_book02"}},{"itemId":690044,"className":"ORSHA_BOOK_diary_BOOK","name":"Old Diary","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ORSHA_BOOK_diary"}},{"itemId":690045,"className":"ORSHA_BOOK_wiletter01_BOOK","name":"Mage's First Letter","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ORSHA_BOOK_wiletter01"}},{"itemId":690046,"className":"ORSHA_BOOK_wiletter02_BOOK","name":"Mage's Second Letter","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ORSHA_BOOK_wiletter02"}},{"itemId":690047,"className":"ORSHA_BOOK_deldiary01_BOOK","name":"Officer's Journal, Part 1","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ORSHA_BOOK_deldiary01"}},{"itemId":690048,"className":"ORSHA_BOOK_deldiary02_BOOK","name":"Officer's Journal, Part 2","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ORSHA_BOOK_deldiary02"}},{"itemId":690049,"className":"TABLELAND_11_1_BOOK_1","name":"Faustas' Diary","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"TABLELAND_11_1_BOOK_1"}},{"itemId":690050,"className":"TABLELAND_11_1_BOOK_2","name":"Elluma's Diary","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"TABLELAND_11_1_BOOK_2"}},{"itemId":690051,"className":"LSCAVE551_BOOK_11","name":"The Cave of Legends : Revised Edition Volume 1","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"LSCAVE551_BOOK_11"}},{"itemId":690052,"className":"LSCAVE551_BOOK_12","name":"The Cave of Legends : Revised Edition Volume 2","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"LSCAVE551_BOOK_12"}},{"itemId":690053,"className":"LSCAVE551_BOOK_13","name":"The Cave of Legends : Revised Edition Volume 3","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"LSCAVE551_BOOK_13"}},{"itemId":690054,"className":"DCAPITAL103_BOOK1","name":"Summary of the Royal Family Tree","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"DCAPITAL103_BOOK1"}},{"itemId":690055,"className":"DCAPITAL103_BOOK2","name":"Lucid Winterspoon's Memoranda","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"DCAPITAL103_BOOK2"}},{"itemId":690056,"className":"DCAPITAL103_BOOK3","name":"Barconsi and the Gold Vein Goblin","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"DCAPITAL103_BOOK3"}},{"itemId":690057,"className":"Book10_1","name":"A Certain Alchemic Record (I)","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":1500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Book10_1","numArg1":10}},{"itemId":690058,"className":"LOWLV_MASTER_ENCY_BOOK","name":"Encyclopedia of Masters, Chapter 2","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":1500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"LOWLV_MASTER_ENCY_BOOK","numArg1":10}},{"itemId":690059,"className":"HT_REMAINS37_2_SQ_070_ITEM_1","name":"Eitbaras' Records","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":1500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_AITVARAS_RECORD","strArg":"HT_REMAINS37_2_SQ_070_ITEM_1","numArg1":10}},{"itemId":690060,"className":"HT3_REMAINS37_3_SQ_100_ITEM_1","name":"Research Records of Demetrius","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":1500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_DEMERTRIJUS_RECORD","strArg":"HT3_REMAINS37_3_SQ_100_ITEM_1","numArg1":10}},{"itemId":690061,"className":"HT4_HUEVILLAGE_BOOK","name":"Andale Village Resident Diary","type":"Consume","group":"Book","weight":0,"maxStack":1,"price":1500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_HT4_HUEVILLAGE_BOOK","strArg":"HT4_HUEVILLAGE_BOOK","numArg1":10}},{"itemId":690064,"className":"Laima_milleniumBook1","name":"Laima's One Thousand Years Vol. 1","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Laima_milleniumBook1","numArg1":10}},{"itemId":690065,"className":"Laima_milleniumBook2","name":"Laima's One Thousand Years Vol. 2","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Laima_milleniumBook2","numArg1":10}},{"itemId":690066,"className":"Laima_milleniumBook3","name":"Laima's One Thousand Years Vol. 3","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Laima_milleniumBook3","numArg1":10}},{"itemId":690067,"className":"Eminent_Book1","name":"Eminent Vol. 1","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Eminent_Book1","numArg1":10}},{"itemId":690068,"className":"Eminent_Book2","name":"Eminent Vol. 2","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Eminent_Book2","numArg1":10}},{"itemId":690069,"className":"Eminent_Book3","name":"Eminent Vol. 3","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Eminent_Book3","numArg1":10}},{"itemId":690070,"className":"Divine_Library","name":"Fantasy Library Administration Guidelines","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Divine_Biblio","numArg1":10}},{"itemId":690071,"className":"Mirtis_Book","name":"The Story of Mirtis","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Mirtis_Book","numArg1":10}},{"itemId":690072,"className":"Mirtis_Book2","name":"Gesti and Ausura","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Gesti_Book2","numArg1":10}},{"itemId":690073,"className":"Nebulas_Book","name":"Nebulas and Kalejimas","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Nebulas_Book","numArg1":10}},{"itemId":690074,"className":"Solcomm_Book","name":"The Story of Solcomm","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Solcomm_Book","numArg1":10}},{"itemId":690075,"className":"Solcomm_Book2","name":"Record of Solcomm's Attacks on the Astral Tower 1","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Solcomm_Book2","numArg1":10}},{"itemId":690076,"className":"Solcomm_Book3","name":"Record of Solcomm's Attacks on the Astral Tower 2","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Solcomm_Book3","numArg1":10}},{"itemId":690077,"className":"Solcomm_Book4","name":"Record of Solcomm's Attacks on the Astral Tower 3","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Solcomm_Book4","numArg1":10}},{"itemId":690078,"className":"Solcomm_Book5","name":"Record of Solcomm's Attacks on the Astral Tower 4","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Solcomm_Book5","numArg1":10}},{"itemId":690079,"className":"Solcomm_Book6","name":"Record of Solcomm's Attacks on the Astral Tower 5","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Solcomm_Book6","numArg1":10}},{"itemId":690080,"className":"Solcomm_Book7","name":"Record of Solcomm's Attacks on the Astral Tower 6","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Solcomm_Book7","numArg1":10}},{"itemId":690081,"className":"Solcomm_Book8","name":"Record of Solcomm's Attacks on the Astral Tower 7","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Solcomm_Book8","numArg1":10}},{"itemId":690082,"className":"Event_Book1","name":"Hayraven's Unofficial Chronicles Part 1","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Event_Book1","numArg1":10}},{"itemId":690083,"className":"Event_Book2","name":"Hayraven's Unofficial Chronicles Part 2","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Event_Book2","numArg1":10}},{"itemId":690084,"className":"Event_Book3","name":"Golden Note - War Journal Vol.1","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Event_Book3","numArg1":10}},{"itemId":690085,"className":"Event_Book4","name":"Golden Note - War Journal Vol.2","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Event_Book4","numArg1":10}},{"itemId":690086,"className":"Event_Book5","name":"Master of the Arena Vol. 1","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Event_Book5","numArg1":10}},{"itemId":690087,"className":"Event_Book6","name":"Master of the Arena Vol. 2","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Event_Book6","numArg1":10}},{"itemId":690088,"className":"Event_Book7","name":"Literature of the Kingdom: The Polanyi Territories Vol. 1","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Event_Book7","numArg1":10}},{"itemId":690089,"className":"Event_Book8","name":"Literature of the Kingdom: The Polanyi Territories Vol. 2","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Event_Book8","numArg1":10}},{"itemId":690090,"className":"NICOPOLIS_BOOK","name":"The Origin of Nicopolis","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"NICOPOLIS_BOOK","numArg1":10}},{"itemId":690091,"className":"ZACHARIEL_ROYAL_TOMB_BOOK02","name":"Legend of the Mausoleum","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ZACHARIEL_ROYAL_TOMB_BOOK02","numArg1":10}},{"itemId":690092,"className":"LOWLV_MASTER_ENCY_BOOK03","name":"Encyclopedia of Masters, Chapter 3","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"LOWLV_MASTER_ENCY_BOOK03","numArg1":10}},{"itemId":690093,"className":"ABOUT_BORUTA_BOOK","name":"Ancient Affairs: Concerning Boruta","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ABOUT_BORUTA_BOOK","numArg1":10}},{"itemId":690094,"className":"HERRMUN_MADALE_BOOK01","name":"Herrmun-Madale River Crossing Incident","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"HERRMUN_MADALE_BOOK01","numArg1":10}},{"itemId":690095,"className":"TAOKAKA_BOOK","name":"Taokaka's Adventure","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"TAOKAKA_BOOK","numArg1":10}},{"itemId":690096,"className":"MATARDOR_MASTER_BOOK01","name":"Chridela Otero Diaries Pt. 1","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"MATARDOR_MASTER_BOOK01","numArg1":10}},{"itemId":690097,"className":"MATARDOR_MASTER_BOOK02","name":"Chridela Otero Diaries Pt. 2","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"MATARDOR_MASTER_BOOK02","numArg1":10}},{"itemId":690098,"className":"ZEALOT_MASTER_BOOK01","name":"Zealot Master Diaries Pt. 1","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ZEALOT_MASTER_BOOK01","numArg1":10}},{"itemId":690099,"className":"SHADOWMANCER_MASTER_BOOK01","name":"Shadow Master's Experiment Journal Pt. 1","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"SHADOWMANCER_MASTER_BOOK01","numArg1":10}},{"itemId":690100,"className":"BULLET_MARKER_MASTER_BOOK01","name":"Winter Flint","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"BULLET_MARKER_MASTER_BOOK01","numArg1":10}},{"itemId":690101,"className":"Klapeda_book_18","name":"Opinion about the Nheto Forest Painting","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Klapeda_book_18","numArg1":10}},{"itemId":690102,"className":"SAGE_QUEST_BOOK01","name":"Sage Baseline","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"JOB_SAGE_book1","numArg1":10}},{"itemId":690103,"className":"SAGE_QUEST_BOOK02","name":"The Goddess' Abode of Mount Monderor Volume I","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"JOB_SAGE_book2","numArg1":10}},{"itemId":690104,"className":"SAGE_QUEST_BOOK03","name":"Book of the Void","type":"Consume","group":"Book","weight":1,"maxStack":1,"price":500,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"JOB_SAGE_book3","numArg1":10}},{"itemId":92110,"className":"Episode_Select_Monster_NoTrade","name":"[Episode] Monster Card Selection Card Album","type":"Consume","group":"Card","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":1}},{"itemId":644001,"className":"card_Gaigalas","name":"Gaigalas Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41220}},{"itemId":644002,"className":"card_GazingGolem","name":"Gazing Golem Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":47322}},{"itemId":644003,"className":"card_Gorgon","name":"Gorgon Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800042}},{"itemId":644004,"className":"card_Golem","name":"Golem Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":450221}},{"itemId":644005,"className":"card_Grinender","name":"Grinender Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41374}},{"itemId":644006,"className":"card_Glass_mole","name":"Glass Mole Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41367}},{"itemId":644007,"className":"card_ginklas","name":"Ginklas Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41208}},{"itemId":644008,"className":"card_NetherBovine","name":"Netherbovine Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800001}},{"itemId":644009,"className":"card_necrovanter","name":"Necroventer Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800002}},{"itemId":644010,"className":"card_deadbone","name":"Deadborn Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41203}},{"itemId":644011,"className":"card_Devilglove","name":"Cursed Devilglove Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41385}},{"itemId":644012,"className":"card_Denoptic","name":"Denoptic Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41368}},{"itemId":644014,"className":"card_Ravinepede","name":"Ravinepede Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41236}},{"itemId":644015,"className":"card_Rajatoad","name":"Rajatoad Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41226}},{"itemId":644016,"className":"card_Rocktortuga","name":"Rocktortuga Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41233}},{"itemId":644017,"className":"card_lecifer","name":"Rexipher Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800043}},{"itemId":644018,"className":"card_Reaverpede","name":"Reaverpede Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800044}},{"itemId":644019,"className":"card_spector_gh","name":"Rikaus Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800045}},{"itemId":644022,"className":"card_mineloader","name":"Mineloader Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800024}},{"itemId":644023,"className":"card_Malletwyvern","name":"Mallet Wyvern Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":47502}},{"itemId":644024,"className":"card_MagBurk","name":"Magburk Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41350}},{"itemId":644025,"className":"card_Manticen","name":"Manticen Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800030}},{"itemId":644026,"className":"card_Mummyghast","name":"Mummyghast Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800003}},{"itemId":644027,"className":"card_mushcaria","name":"Mushcaria Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41217}},{"itemId":644028,"className":"card_Merge","name":"Merge Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800046}},{"itemId":644029,"className":"card_Mothstem","name":"Mothstem Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800047}},{"itemId":644030,"className":"card_moa","name":"Moa Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41378}},{"itemId":644031,"className":"card_Moyabruka","name":"Moyabruka Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":47325}},{"itemId":644032,"className":"card_Moldyhorn","name":"Moldyhorn Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":47323}},{"itemId":644033,"className":"card_molich","name":"Molich Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":400421}},{"itemId":644034,"className":"card_Minotaurs","name":"Minotaur Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800004}},{"itemId":644035,"className":"card_mirtis","name":"Mirtis Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800048}},{"itemId":644036,"className":"card_bebraspion","name":"Bebraspion Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41222}},{"itemId":644037,"className":"card_bearkaras","name":"Bearkaras Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":401141}},{"itemId":644038,"className":"card_Velorchard","name":"Velorchard Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800049}},{"itemId":644039,"className":"card_Goblin_Warrior","name":"Vubbe Fighter Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":400201}},{"itemId":644040,"className":"card_Goblin_Warrior_red","name":"Red Vubbe Fighter Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":400203}},{"itemId":644041,"className":"card_bramble","name":"Bramble Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":400901}},{"itemId":644042,"className":"card_BiteRegina","name":"Biteregina Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800050}},{"itemId":644043,"className":"card_Strongholder","name":"Cyclops Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800005}},{"itemId":644044,"className":"card_Saltistter","name":"Saltistter Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41207}},{"itemId":644045,"className":"card_salamander","name":"Salamander Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41205}},{"itemId":644046,"className":"card_ShadowGaoler","name":"Shadowgaler Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800006}},{"itemId":644047,"className":"card_stone_whale","name":"Stone Whale Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41209}},{"itemId":644048,"className":"card_Shnayim","name":"Shnayim Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41241}},{"itemId":644049,"className":"card_Confinedion","name":"Scorpio Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41379}},{"itemId":644050,"className":"card_Spector_m","name":"Specter Monarch Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800007}},{"itemId":644051,"className":"card_Throneweaver","name":"Throneweaver Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800009}},{"itemId":644052,"className":"card_Ironbaum","name":"Ironbaum Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41354}},{"itemId":644053,"className":"card_archon","name":"Archon Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800027}},{"itemId":644054,"className":"card_Abomination","name":"Abomination Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800029}},{"itemId":644055,"className":"card_Unknocker","name":"Unknocker Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800010}},{"itemId":644056,"className":"card_Achat","name":"Achat Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41240}},{"itemId":644057,"className":"card_ellaganos","name":"Ellaganos Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800013}},{"itemId":644058,"className":"card_yekub","name":"Yekub Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41234}},{"itemId":644059,"className":"card_yonazolem","name":"Yonazolem Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41211}},{"itemId":644061,"className":"card_werewolf","name":"Werewolf Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41247}},{"itemId":644062,"className":"card_unicorn","name":"Unicorn Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800051}},{"itemId":644063,"className":"card_Iltiswort","name":"Iltiswort Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41214}},{"itemId":644064,"className":"card_GiantWoodGoblin_red","name":"Giant Red Wood Goblin Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41215}},{"itemId":644065,"className":"card_GiantWoodGoblin","name":"Giant Wood Goblin Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41386}},{"itemId":644067,"className":"card_Chapparition","name":"Chapparition Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800011}},{"itemId":644068,"className":"card_chafer","name":"Chafer Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800052}},{"itemId":644070,"className":"card_Carapace","name":"Carapace Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800053}},{"itemId":644072,"className":"card_onion_the_great","name":"Kepa Chieftain Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41201}},{"itemId":644073,"className":"card_Colimencia","name":"Colimencia Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":47318}},{"itemId":644074,"className":"card_Clymen","name":"Clymen Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":47316}},{"itemId":644075,"className":"card_Kimeleech","name":"Kirmeleech Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800054}},{"itemId":644076,"className":"card_tutu","name":"Tutu Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":57161}},{"itemId":644077,"className":"card_TombLord","name":"Tomb Lord Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800055}},{"itemId":644078,"className":"card_poata","name":"Poata Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41202}},{"itemId":644079,"className":"card_Sequoia_blue","name":"Sequoia Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":401661}},{"itemId":644080,"className":"card_Harpeia","name":"Harpeia Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800012}},{"itemId":644081,"className":"card_honeypin","name":"Honeypin Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800056}},{"itemId":644082,"className":"card_helgasercle","name":"Helgasercle Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800057}},{"itemId":644083,"className":"card_Spector_F","name":"Specter of Deceit Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800080}},{"itemId":644084,"className":"card_hydra","name":"Hydra Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":47313}},{"itemId":644085,"className":"card_rajapearl","name":"Rajapearl Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41243}},{"itemId":644087,"className":"card_fallen_statue","name":"Corrupted Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800071}},{"itemId":644088,"className":"card_lepus","name":"Lepus Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41216}},{"itemId":644089,"className":"card_sparnas","name":"Sparnas Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41224}},{"itemId":644092,"className":"card_Sparnanman","name":"Sparnasman Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800008}},{"itemId":644093,"className":"card_Kerberos","name":"Cerberus Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800028}},{"itemId":644094,"className":"card_capria","name":"Capria Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":57210}},{"itemId":644095,"className":"card_Nepenthes","name":"Nepenthes Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":57015}},{"itemId":644096,"className":"card_simorph","name":"Simorph Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":57151}},{"itemId":644098,"className":"card_Golem_gray","name":"Gray Golem Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":450222}},{"itemId":644099,"className":"card_Naktis","name":"Naktis Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800058}},{"itemId":644100,"className":"card_RingCrawler","name":"Linkroller Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41232}},{"itemId":644101,"className":"card_Durahan","name":"Dullahan Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800014}},{"itemId":644102,"className":"card_Riteris","name":"Riteris Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800015}},{"itemId":644103,"className":"card_Nuaele","name":"Nuaele Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800016}},{"itemId":644104,"className":"card_Neop","name":"Neop Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800059}},{"itemId":644105,"className":"card_Blud","name":"Blut Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800060}},{"itemId":644106,"className":"card_Glackuman","name":"Glackuman Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800022}},{"itemId":644108,"className":"card_Tetraox","name":"Tetraox Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":57421}},{"itemId":644109,"className":"card_basilisk","name":"Basilisk Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800061}},{"itemId":644110,"className":"card_gremlin","name":"Gremlin Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":58522}},{"itemId":644111,"className":"card_plokste","name":"Plokste Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800062}},{"itemId":644112,"className":"card_Woodhoungan","name":"Wood Houngan Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":47512}},{"itemId":644113,"className":"card_velnewt","name":"Velnewt Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800063}},{"itemId":644114,"className":"card_Velpede","name":"Velpede Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800064}},{"itemId":644117,"className":"card_Pyroego","name":"Pyroego Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800065}},{"itemId":644118,"className":"card_Mandala","name":"Mandara Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":57707}},{"itemId":644119,"className":"card_LithoRex","name":"Lithorex Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800017}},{"itemId":644120,"className":"card_Nuodai","name":"Nuodai Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800066}},{"itemId":644121,"className":"card_Centaurus","name":"Centaurus Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800067}},{"itemId":644122,"className":"card_Yeti","name":"Yeti Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":57415}},{"itemId":644123,"className":"card_Frogola","name":"Progola Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800018}},{"itemId":644125,"className":"card_Marionette","name":"Marionette Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800068}},{"itemId":644126,"className":"card_Canceril","name":"Canceril Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800025}},{"itemId":644127,"className":"card_Crabil","name":"Crabil Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":47505}},{"itemId":644128,"className":"card_Genmagnus","name":"Master Genie Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800069}},{"itemId":644129,"className":"card_merregina","name":"Merregina Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800070}},{"itemId":644130,"className":"card_Templeshooter","name":"Templeshooter Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800021}},{"itemId":644131,"className":"card_Fireload","name":"Fire Lord Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800023}},{"itemId":644132,"className":"card_Kubas","name":"Kubas Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":41373}},{"itemId":644133,"className":"card_Deathweaver","name":"Deathweaver Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800026}},{"itemId":644134,"className":"card_Flammidus","name":"Flammidus Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800031}},{"itemId":644135,"className":"card_Marnoks","name":"Marnox Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800078}},{"itemId":644136,"className":"card_Zawra","name":"Zaura Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800072}},{"itemId":644137,"className":"card_Prisoncutter","name":"Prison Cutter Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800020}},{"itemId":644138,"className":"card_FerretMarauder","name":"Ferret Marauder Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":57864}},{"itemId":644139,"className":"card_Velniamonkey","name":"Velnia Monkey Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":57428}},{"itemId":644140,"className":"card_Woodspirit","name":"Woodspirit Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":47355}},{"itemId":644141,"className":"card_Armaox","name":"Armaos Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":57443}},{"itemId":644142,"className":"card_Succubus","name":"Succubus Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800079}},{"itemId":644143,"className":"card_Stonefroster","name":"Stone Froster Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":57589}},{"itemId":644144,"className":"card_Lapene","name":"Rafene Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":57866}},{"itemId":644145,"className":"card_Rambandgad","name":"Lavenzard Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800019}},{"itemId":644146,"className":"card_SwordBallista","name":"Gorkas Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800081}},{"itemId":644147,"className":"card_FrosterLord","name":"Froster Lord Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800076}},{"itemId":644148,"className":"card_varleking","name":"Varle King Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":57866}},{"itemId":644149,"className":"card_payawoota","name":"Pajauta Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644150,"className":"card_skiaclips","name":"Skiaclipse Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":57866}},{"itemId":644151,"className":"card_Moringponia","name":"Moringponia Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800090}},{"itemId":644152,"className":"card_Misrus","name":"Misrus Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":57866}},{"itemId":644153,"className":"card_tantaliser","name":"Tantalizer Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":800091}},{"itemId":644154,"className":"card_vaidotas","name":"Vaidotas Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644155,"className":"card_vlaentinas","name":"Valentinas Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644156,"className":"card_uska","name":"Uska Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644157,"className":"card_cyrenia","name":"Cyrenia Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644158,"className":"card_Neringa","name":"Neringa Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644159,"className":"card_Glacier","name":"Glacia Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1,"script":{"numArg1":59374}},{"itemId":644501,"className":"Master_card_Boruble","name":"Boruble Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644502,"className":"Master_card_MariaLeed","name":"Maria Leed Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644503,"className":"Master_card_JuraSwajone","name":"Yura Swanjone Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644504,"className":"Master_card_Kamiya","name":"Kamiya Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644505,"className":"Master_card_EckipseUbik","name":"Eclipse Ubik Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644506,"className":"Master_card_AbrehMelinn","name":"Abreh Melinn Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644507,"className":"Master_card_Rashn","name":"Rashua Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644508,"className":"Master_card_Lucia","name":"Lucia Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644509,"className":"Master_card_EdmundasTiller","name":"Edmundas Tiller Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644510,"className":"Master_card_Rozaliia","name":"Rozalija Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644511,"className":"Master_card_Vilius","name":"Vilnius Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644512,"className":"Master_card_JenaHavindar","name":"Yena Havindar Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644513,"className":"Master_card_ReamToiler","name":"Ream Toiler Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644514,"className":"Master_card_NoirParesseus","name":"Noer Parecius Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644515,"className":"Master_card_Mei","name":"May Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644516,"className":"Master_card_ShellyPennington","name":"Shelly Pennington Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644517,"className":"Master_card_Winona_Ende","name":"Winona Ende Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644518,"className":"Master_card_Feliksia","name":"Phelixia Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644519,"className":"Master_card_MistesGoldmund","name":"Mistes Goldmund Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644520,"className":"Master_card_AleisterCrowley","name":"Aleister Crowley Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644521,"className":"Master_card_Tesla","name":"Tesla Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644522,"className":"Master_card_KiolRuarawa","name":"Kyoll Lurawa Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644523,"className":"Master_card_LucidWinterspoon","name":"Lucid Winterspoon Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644524,"className":"Master_card_BangomontBorjigin","name":"Vhangomont Breogen Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644525,"className":"Master_card_DamirBorkhan","name":"Damir Borkan Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644526,"className":"Master_card_KhanomCaolaw","name":"Khanom Caolaw Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644527,"className":"Master_card_Rudmila","name":"Rudmila Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644528,"className":"Master_card_Flintess","name":"Flyntess Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644529,"className":"Master_card_SorshaHutton","name":"Sorsha Hutton Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644530,"className":"Master_card_IliTerid","name":"Ili Terid Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644531,"className":"Master_card_LufasKehel","name":"Lufas Kehel Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644532,"className":"Master_card_VisavaldasBlack","name":"Visvaldas Black Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644533,"className":"Master_card_Pauline","name":"Pauline Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644534,"className":"Master_card_GeHong","name":"GeHong Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644535,"className":"Master_card_PhilipAureolus","name":"Philip Aurellius Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":500,"minLevel":1},{"itemId":644900,"className":"Legend_card_Marnoks","name":"Demon Lord Marnox Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":800078}},{"itemId":644901,"className":"Legend_card_Blud","name":"Demon Lord Blut Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":800060}},{"itemId":644902,"className":"Legend_card_Zawra","name":"Demon Lord Zaura Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":800072}},{"itemId":644903,"className":"Legend_card_Nuaele","name":"Demon Lord Nuaele Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":800016}},{"itemId":644904,"className":"Legend_card_Helgasercle","name":"Demon Lord Helgasercle Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":800057}},{"itemId":644905,"className":"Legend_card_Lecifer","name":"Demon Lord Rexipher Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":800043}},{"itemId":644906,"className":"Legend_card_Mirtis","name":"Demon Lord Mirtis Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":800048}},{"itemId":644907,"className":"Legend_card_Kucarry_Balzermance","name":"Prodigious Kugheri Balzermancer Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":58818}},{"itemId":644908,"className":"Legend_card_PantoRex","name":"Heretic Pantorex Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":700023}},{"itemId":644909,"className":"Legend_card_Velcoffer","name":"Velcoffer Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":58690}},{"itemId":644910,"className":"Legend_card_FrosterLord","name":"Demon Lord Froster Lord Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":800076}},{"itemId":644911,"className":"Legend_card_Acio","name":"Asiomage Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":59154}},{"itemId":644912,"className":"Legend_card_Wastrel","name":"Wastrel Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":59172}},{"itemId":644913,"className":"Legend_card_ignas","name":"Ignas Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":800089}},{"itemId":644914,"className":"Legend_card_boruta","name":"Boruta Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":59208}},{"itemId":644915,"className":"Legend_card_Marnoks_JP","name":"Demon Lord Marnox Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":800078}},{"itemId":644916,"className":"Legend_card_Blud_JP","name":"Demon Lord Blut Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":800060}},{"itemId":644917,"className":"Legend_card_Zawra_JP","name":"Demon Lord Zaura Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":800072}},{"itemId":644918,"className":"Legend_card_Nuaele_JP","name":"Demon Lord Nuaele Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":800016}},{"itemId":644919,"className":"Legend_card_Helgasercle_JP","name":"Demon Lord Helgasercle Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":800057}},{"itemId":644920,"className":"Legend_card_Lecifer_JP","name":"Demon Lord Rexipher Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":800043}},{"itemId":644921,"className":"Legend_card_Mirtis_JP","name":"Demon Lord Mirtis Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":800048}},{"itemId":644922,"className":"Legend_card_FrosterLord_JP","name":"Demon Lord Froster Lord Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":800076}},{"itemId":644923,"className":"Legendcard_skiaclips","name":"Unbound Skiaclipse Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":57866}},{"itemId":644924,"className":"Legendcard_Moringponia","name":"Demon Lord Moringponia Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":800090}},{"itemId":644925,"className":"Legendcard_Misrus","name":"Enraged Misrus Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":57866}},{"itemId":644926,"className":"Legendcard_bayl","name":"Byle Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":644927,"className":"Legendcard_tantaliser","name":"Demon Lord Tantalizer Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":800091}},{"itemId":644928,"className":"Legendcard_Glacier","name":"Sorrowful Glacia Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":59374}},{"itemId":644929,"className":"Legendcard_TelHarcha","name":"Tel Harsha Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":59477}},{"itemId":644930,"className":"Legendcard_Leticia","name":"Leticia Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":644931,"className":"Legendcard_Guilty","name":"Giltine Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":800093}},{"itemId":644932,"className":"Legendcard_Avataras","name":"Abataras Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":800094}},{"itemId":644933,"className":"Legend_card_Vasilisa","name":"Vasilisa Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":59451}},{"itemId":644934,"className":"Legend_card_RevivalPaulius","name":"Resurrected Paulius Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":59690}},{"itemId":644935,"className":"Legend_card_Jellyzele","name":"Jellyzele Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":59730}},{"itemId":644936,"className":"Legend_card_Spreader","name":"Reservoir of Corruption Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":59754}},{"itemId":644937,"className":"Legend_card_Falouros","name":"Falouros Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":59760}},{"itemId":644938,"className":"Legend_card_Rozethemiserable","name":"ITEM_20230130_028354","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":59773}},{"itemId":650001,"className":"legend_reinforce_card_lv1","name":"Ripped Legend Enhancement Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":650002,"className":"legend_reinforce_card_lv2","name":"Old Legend Enhancement Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":650003,"className":"legend_reinforce_card_lv3","name":"Legend Enhancement Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":650004,"className":"legend_reinforce_card_lv4","name":"Shining Legend Enhancement Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":650005,"className":"legend_reinforce_card_lv2_Team","name":"Old Legend Enhancement Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":10003141,"className":"Event_Roulette_Master_box_1","name":"[Event] Master Card Selection Card Album","type":"Consume","group":"Card","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003222,"className":"card_Xpupkit10_Event_2","name":"[5th Anniversary] Lv 10 Enhancement Card","type":"Etc","group":"Card","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10003338,"className":"card_Xpupkit10_Event_5","name":"[2021] Lv10 Enhancement Card","type":"Etc","group":"Card","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10003524,"className":"Event_MasterCard_box_NoTrade_1","name":"[Event] Master Card Selection Card Album","type":"Consume","group":"Card","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":1}},{"itemId":10003525,"className":"Event_MasterCard_box_NoTrade_2","name":"[Event] Master Card Selection Card Album 2","type":"Consume","group":"Card","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":1}},{"itemId":11039400,"className":"Goddess_card_Reinforce","name":"Goddess Enhancement Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":5000000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_GODDESS_REINFORCE_CARD_MAT"}},{"itemId":11039401,"className":"Goddess_card_EP13_Lada","name":"Goddess Lada Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":320000000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"lada_card_reinforce"}},{"itemId":11039402,"className":"Goddess_card_EP13_Saule","name":"Goddess Saule Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":320000000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"saule_card_reinforce"}},{"itemId":11039403,"className":"Goddess_card_EP13_Austeja","name":"Goddess Austeja Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":320000000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"austeja_card_reinforce"}},{"itemId":11039404,"className":"Goddess_card_EP13_Dalia","name":"Goddess Dahlia Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":320000000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"dalia_card_reinforce"}},{"itemId":11039405,"className":"Goddess_card_EP13_Vakarine","name":"Goddess Vakarine Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":320000000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"vakarine_card_reinforce"}},{"itemId":11039406,"className":"Goddess_card_Reinforce_2","name":"Goddess Enhancement Card","type":"Consume","group":"Card","weight":1,"maxStack":99999,"price":5000000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11039407,"className":"Goddess_card_EP14_baubas","name":"Demon God Baubas Card","type":"Consume","group":"Card","weight":1,"maxStack":1,"price":10,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":642001,"className":"COLLECT_101","name":"Monster Specimen Set","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_101"}},{"itemId":642002,"className":"COLLECT_102","name":"Ore Collection","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_102"}},{"itemId":642003,"className":"COLLECT_103","name":"Flower Collection","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_103"}},{"itemId":642004,"className":"COLLECT_104","name":"Bone Collection","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_104"}},{"itemId":642005,"className":"COLLECT_105","name":"Crystal Collection","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_105"}},{"itemId":642006,"className":"COLLECT_106","name":"Mausoleum Collection","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_106"}},{"itemId":642007,"className":"COLLECT_107","name":"Cockatrice Collection","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_107"}},{"itemId":642008,"className":"COLLECT_108","name":"Demon Collection","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_108"}},{"itemId":642009,"className":"COLLECT_109","name":"Tenet Church Collection","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_109"}},{"itemId":642010,"className":"COLLECT_110","name":"Ghost Collection","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_110"}},{"itemId":642011,"className":"COLLECT_111","name":"Lv1 Card Collection","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_111"}},{"itemId":642012,"className":"COLLECT_112","name":"Lv2 Card Collection","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_112"}},{"itemId":642013,"className":"COLLECT_113","name":"Lv3 Card Collection","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_113"}},{"itemId":642014,"className":"COLLECT_114","name":"Lv4 Card Collection","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_114"}},{"itemId":642015,"className":"COLLECT_115","name":"Necklace of the Five Sins Collection","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_115"}},{"itemId":642016,"className":"COLLECT_116","name":"Revelation: Opposing Piece Collection","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_116"}},{"itemId":642017,"className":"COLLECT_117","name":"Revelation: Inside Piece Collection","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_117"}},{"itemId":642018,"className":"COLLECT_118","name":"Collection: West Siauliai Woods","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_118"}},{"itemId":642019,"className":"COLLECT_119","name":"Collection: East Siauliai Woods","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_119"}},{"itemId":642020,"className":"COLLECT_120","name":"Collection: Miners' Village","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_120"}},{"itemId":642021,"className":"COLLECT_121","name":"Collection: Crystal Mine 1F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_121"}},{"itemId":642022,"className":"COLLECT_122","name":"Collection: Crystal Mine 2F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_122"}},{"itemId":642023,"className":"COLLECT_123","name":"Collection: Crystal Mine 3F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_123"}},{"itemId":642024,"className":"COLLECT_124","name":"Collection: Srautas Gorge","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_124"}},{"itemId":642025,"className":"COLLECT_125","name":"Collection: Gele Plateau","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_125"}},{"itemId":642026,"className":"COLLECT_126","name":"Collection: Nefritas Cliff","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_126"}},{"itemId":642027,"className":"COLLECT_127","name":"Collection: Tenet Garden","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_127"}},{"itemId":642028,"className":"COLLECT_128","name":"Collection: Veja Ravine","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_128"}},{"itemId":642029,"className":"COLLECT_129","name":"Collection: Vieta Gorge","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_129"}},{"itemId":642030,"className":"COLLECT_130","name":"Collection: Cobalt Forest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_130"}},{"itemId":642031,"className":"COLLECT_131","name":"Collection: Septyni Glen","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_131"}},{"itemId":642032,"className":"COLLECT_132","name":"Collection: Tenet Church B1","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_132"}},{"itemId":642033,"className":"COLLECT_133","name":"Collection: Tenet Church 1F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_133"}},{"itemId":642034,"className":"COLLECT_134","name":"Collection: Tenet Church 2F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_134"}},{"itemId":642035,"className":"COLLECT_135","name":"Collection: Gate Route","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_135"}},{"itemId":642036,"className":"COLLECT_136","name":"Collection: Sirdgela Forest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_136"}},{"itemId":642037,"className":"COLLECT_137","name":"Collection: Kvailas Forest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_137"}},{"itemId":642038,"className":"COLLECT_138","name":"Collection: Guards Graveyard","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_138"}},{"itemId":642039,"className":"COLLECT_139","name":"Collection: Gateway of the Great King","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_139"}},{"itemId":642040,"className":"COLLECT_140","name":"Collection: Ramstis Ridge","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_140"}},{"itemId":642041,"className":"COLLECT_141","name":"Collection: Overlong Bridge Valley","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_141"}},{"itemId":642042,"className":"COLLECT_142","name":"Collection: Akmens Ridge","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_142"}},{"itemId":642043,"className":"COLLECT_143","name":"Collection: Tiltas Valley","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_143"}},{"itemId":642044,"className":"COLLECT_144","name":"Collection: Gytis Settlement Area","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_144"}},{"itemId":642045,"className":"COLLECT_145","name":"Collection: Royal Mausoleum Workers Lodge","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_145"}},{"itemId":642046,"className":"COLLECT_146","name":"Collection: Royal Mausoleum Constructors' Chapel","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_146"}},{"itemId":642047,"className":"COLLECT_147","name":"Collection: Royal Mausoleum Storage","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_147"}},{"itemId":642048,"className":"COLLECT_148","name":"Collection: Rukas Plateau","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_148"}},{"itemId":642049,"className":"COLLECT_149","name":"Collection: King's Plateau","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_149"}},{"itemId":642050,"className":"COLLECT_150","name":"Collection: Zachariel Crossroads","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_150"}},{"itemId":642051,"className":"COLLECT_151","name":"Collection: Royal Mausoleum 1F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_151"}},{"itemId":642052,"className":"COLLECT_152","name":"Collection: Royal Mausoleum 2F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_152"}},{"itemId":642053,"className":"COLLECT_153","name":"Collection: Royal Mausoleum 3F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_153"}},{"itemId":642054,"className":"COLLECT_154","name":"Collection: Royal Mausoleum 4F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_154"}},{"itemId":642055,"className":"COLLECT_155","name":"Collection: Royal Mausoleum 5F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_155"}},{"itemId":642056,"className":"COLLECT_156","name":"Collection: Baron Allerno ","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_156"}},{"itemId":642057,"className":"COLLECT_157","name":"Collection: Myrkiti Farm","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_157"}},{"itemId":642058,"className":"COLLECT_158","name":"Collection: Aqueduct Bridge Area","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_158"}},{"itemId":642059,"className":"COLLECT_159","name":"Collection: Tenants' Farm","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_159"}},{"itemId":642060,"className":"COLLECT_160","name":"Collection: Stele Road","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_160"}},{"itemId":642061,"className":"COLLECT_161","name":"Collection: Goddess' Ancient Garden","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_161"}},{"itemId":642062,"className":"COLLECT_162","name":"Collection: Escanciu Village","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_162"}},{"itemId":642063,"className":"COLLECT_163","name":"Collection: Fedimian Suburbs","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_163"}},{"itemId":642064,"className":"COLLECT_164","name":"Collection: Crystal Mine Lot 2 - 1F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_164"}},{"itemId":642065,"className":"COLLECT_165","name":"Collection: Crystal Mine Lot 2 - 2F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_165"}},{"itemId":642066,"className":"COLLECT_166","name":"Collection: Entrance of Kateen Forest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_166"}},{"itemId":642067,"className":"COLLECT_167","name":"Collection: Owl Burial Ground","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_167"}},{"itemId":642068,"className":"COLLECT_168","name":"Collection: Poslinkis Forest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_168"}},{"itemId":642069,"className":"COLLECT_169","name":"Collection: Saknis Plains","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_169"}},{"itemId":642070,"className":"COLLECT_170","name":"Collection: Mage Tower 1F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_170"}},{"itemId":642071,"className":"COLLECT_171","name":"Collection: Mage Tower 2F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_171"}},{"itemId":642072,"className":"COLLECT_172","name":"Collection: Mage Tower 3F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_172"}},{"itemId":642073,"className":"COLLECT_173","name":"Collection: Mage Tower 4F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_173"}},{"itemId":642074,"className":"COLLECT_174","name":"Collection: Mage Tower 5F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_174"}},{"itemId":642075,"className":"COLLECT_175","name":"Collection: Dvasia Peak","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_175"}},{"itemId":642076,"className":"COLLECT_176","name":"Collection: Sunset Flag Forest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_176"}},{"itemId":642077,"className":"COLLECT_177","name":"Collection: Starving Demon's Way","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_177"}},{"itemId":642078,"className":"COLLECT_178","name":"Collection: Pilgrim Path","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_178"}},{"itemId":642079,"className":"COLLECT_179","name":"Collection: Altar Way","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_179"}},{"itemId":642080,"className":"COLLECT_180","name":"Collection: Forest of Prayer","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_180"}},{"itemId":642081,"className":"COLLECT_181","name":"Collection: Apsimesti Crossroads","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_181"}},{"itemId":642082,"className":"COLLECT_182","name":"Collection: Residence of the Fallen Legwyn Family","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_182"}},{"itemId":642083,"className":"COLLECT_183","name":"Collection: Main Building","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_183"}},{"itemId":642084,"className":"COLLECT_184","name":"Collection: Grand Corridor","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_184"}},{"itemId":642085,"className":"COLLECT_185","name":"Collection: Penitence Route","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_185"}},{"itemId":642086,"className":"COLLECT_186","name":"Collection: Sanctuary","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_186"}},{"itemId":642087,"className":"COLLECT_187","name":"Collection: Greene Manor","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_187"}},{"itemId":642088,"className":"COLLECT_188","name":"Collection: Shaton Farm","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_188"}},{"itemId":642089,"className":"COLLECT_189","name":"Collection: Shaton Reservoir","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_189"}},{"itemId":642090,"className":"COLLECT_190","name":"Collection: Demon Prison District 1","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_190"}},{"itemId":642091,"className":"COLLECT_191","name":"Collection: Demon Prison District 2","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_191"}},{"itemId":642092,"className":"COLLECT_192","name":"Collection: Demon Prison District 3","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_192"}},{"itemId":642093,"className":"COLLECT_193","name":"Collection: Demon Prison District 4","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_193"}},{"itemId":642094,"className":"COLLECT_194","name":"Collection: Demon Prison District 5","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_194"}},{"itemId":642095,"className":"COLLECT_195","name":"Collection: Dina Bee Farm","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_195"}},{"itemId":642096,"className":"COLLECT_196","name":"Collection: Vilna Forest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_196"}},{"itemId":642097,"className":"COLLECT_197","name":"Collection: Uskis Arable Land","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_197"}},{"itemId":642098,"className":"COLLECT_198","name":"Collection: Spring Light Woods","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_198"}},{"itemId":642099,"className":"COLLECT_199","name":"Collection: 2nd Demon Prison","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_199"}},{"itemId":642100,"className":"COLLECT_200","name":"Collection: Nuoridin Falls","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_200"}},{"itemId":642101,"className":"COLLECT_201","name":"Collection: Namu Temple Ruins","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_201"}},{"itemId":642102,"className":"COLLECT_202","name":"Collection: Istora Ruins","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_202"}},{"itemId":642103,"className":"COLLECT_203","name":"Collection: Glade Hillroad","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_203"}},{"itemId":642104,"className":"COLLECT_204","name":"Collection: Viltis Forest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_204"}},{"itemId":642105,"className":"COLLECT_205","name":"Collection: Laukyme Swamp","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_205"}},{"itemId":642106,"className":"COLLECT_206","name":"Collection: Tyla Monastery","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_206"}},{"itemId":642107,"className":"COLLECT_207","name":"Collection: Roxona Reconstruction Agency West Building","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_207"}},{"itemId":642108,"className":"COLLECT_208","name":"Collection: Roxona Reconstruction Agency East Building","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_208"}},{"itemId":642109,"className":"COLLECT_209","name":"Collection: Verkti Square","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_209"}},{"itemId":642110,"className":"COLLECT_210","name":"Collection: Roxona Marketplace","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_210"}},{"itemId":642111,"className":"COLLECT_211","name":"Collection: Ruklys Street","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_211"}},{"itemId":642112,"className":"COLLECT_212","name":"Collection: Downtown","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_212"}},{"itemId":642113,"className":"COLLECT_213","name":"Collection: Inner Enceinte District","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_213"}},{"itemId":642114,"className":"COLLECT_214","name":"Collection: Mokusul Chamber","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_214"}},{"itemId":642115,"className":"COLLECT_215","name":"Collection: Underground Grave of Ritinis","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_215"}},{"itemId":642116,"className":"COLLECT_216","name":"Collection: Videntis Shrine","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_216"}},{"itemId":642117,"className":"COLLECT_217","name":"Collection: Valius' Eternal Resting Place","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_217"}},{"itemId":642118,"className":"COLLECT_218","name":"Collection: Lemprasa Pond","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_218"}},{"itemId":642119,"className":"COLLECT_219","name":"Collection: Woods of the Linked Bridges","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_219"}},{"itemId":642120,"className":"COLLECT_220","name":"Collection: Paupys Crossing","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_220"}},{"itemId":642121,"className":"COLLECT_221","name":"Collection: Ashaq Underground Prison 1F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_221"}},{"itemId":642122,"className":"COLLECT_222","name":"Collection: Ashaq Underground Prison 2F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_222"}},{"itemId":642123,"className":"COLLECT_223","name":"Collection: Ashaq Underground Prison 3F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_223"}},{"itemId":642124,"className":"COLLECT_224","name":"Collection: Koru Jungle","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_224"}},{"itemId":642125,"className":"COLLECT_225","name":"Collection: Knidos Jungle","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_225"}},{"itemId":642126,"className":"COLLECT_226","name":"Collection: Dadan Jungle","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_226"}},{"itemId":642127,"className":"COLLECT_227","name":"Collection: Nevellet Quarry 1F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_227"}},{"itemId":642128,"className":"COLLECT_228","name":"Collection: Nevellet Quarry 2F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_228"}},{"itemId":642129,"className":"COLLECT_229","name":"Collection: Novaha Assembly Hall","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_229"}},{"itemId":642130,"className":"COLLECT_230","name":"Collection: Novaha Annex","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_230"}},{"itemId":642131,"className":"COLLECT_231","name":"Collection: Novaha Institute","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_231"}},{"itemId":642132,"className":"COLLECT_232","name":"Collection: Karolis Springs","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_232"}},{"itemId":642133,"className":"COLLECT_233","name":"Collection: Letas Stream","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_233"}},{"itemId":642134,"className":"COLLECT_234","name":"Collection: Pelke Shrine Ruins","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_234"}},{"itemId":642135,"className":"COLLECT_235","name":"Collection: Absenta Reservoir","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_235"}},{"itemId":642136,"className":"COLLECT_236","name":"Collection: Sienakal Graveyard","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_236"}},{"itemId":642137,"className":"COLLECT_237","name":"Collection: Carlyle's Mausoleum","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_237"}},{"itemId":642138,"className":"COLLECT_238","name":"Collection: Delmore Hamlet","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_238"}},{"itemId":642139,"className":"COLLECT_239","name":"Collection: Delmore Manor","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_239"}},{"itemId":642140,"className":"COLLECT_240","name":"Collection: Delmore Outskirts","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_240"}},{"itemId":642141,"className":"COLLECT_241","name":"Collection: Feretory Hills","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_241"}},{"itemId":642142,"className":"COLLECT_242","name":"Collection: Mochia Forest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_242"}},{"itemId":642143,"className":"COLLECT_243","name":"Collection: Sutatis Trade Route","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_243"}},{"itemId":642144,"className":"COLLECT_244","name":"Collection: Topes Fortress 1F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_244"}},{"itemId":642145,"className":"COLLECT_245","name":"Collection: Topes Fortress 2F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_245"}},{"itemId":642146,"className":"COLLECT_246","name":"Collection: Bellai Rainforest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_246"}},{"itemId":642147,"className":"COLLECT_247","name":"Collection: Zeraha","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_247"}},{"itemId":642148,"className":"COLLECT_248","name":"Collection: Seir Rainforest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_248"}},{"itemId":642149,"className":"COLLECT_249","name":"Collection: Galeed Plateau","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_249"}},{"itemId":642150,"className":"COLLECT_250","name":"Collection: Fasika Plateau","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_250"}},{"itemId":642151,"className":"COLLECT_251","name":"Collection: Manahas","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_251"}},{"itemId":642152,"className":"COLLECT_252","name":"Collection: Genar Field","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_252"}},{"itemId":642153,"className":"COLLECT_253","name":"Collection: Sicarius 1F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_253"}},{"itemId":642154,"className":"COLLECT_254","name":"Collection: Sicarius 2F","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_254"}},{"itemId":642155,"className":"COLLECT_255","name":"Collection: What Is Falchion","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_255"}},{"itemId":642156,"className":"COLLECT_256","name":"Collection: Bug Hater","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_256"}},{"itemId":642157,"className":"COLLECT_257","name":"Collection: Love of Foreign Lands","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_257"}},{"itemId":642158,"className":"COLLECT_258","name":"Collection: Beginner Weapons","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_258"}},{"itemId":642159,"className":"COLLECT_259","name":"Collection: Beginner Armor","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_259"}},{"itemId":642161,"className":"COLLECT_261","name":"Collection: Coastal Fortress","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_261"}},{"itemId":642162,"className":"COLLECT_262","name":"Collection: Dingofasil","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_262"}},{"itemId":642163,"className":"COLLECT_263","name":"Collection: Vedas Plateau","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_263"}},{"itemId":642164,"className":"COLLECT_264","name":"Collection: Mesafasla","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_264"}},{"itemId":642165,"className":"COLLECT_265","name":"Collection: Stogas Plateau","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_265"}},{"itemId":642166,"className":"COLLECT_266","name":"Collection: Nahash Forest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_266"}},{"itemId":642167,"className":"COLLECT_267","name":"Collection: Vera Coast","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_267"}},{"itemId":642168,"className":"COLLECT_268","name":"Collection: Elgos Monastery Annex","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_268"}},{"itemId":642169,"className":"COLLECT_269","name":"Collection: Elgos Monastery Main Building","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_269"}},{"itemId":642170,"className":"COLLECT_270","name":"Collection: Alemeth Forest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_270"}},{"itemId":642171,"className":"COLLECT_271","name":"Collection: Barha Forest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_271"}},{"itemId":642172,"className":"COLLECT_272","name":"Collection: Cranto Coast","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_272"}},{"itemId":642173,"className":"COLLECT_273","name":"Collection: Igti Coast","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_273"}},{"itemId":642174,"className":"COLLECT_274","name":"Collection: Ibre Plateau","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_274"}},{"itemId":642175,"className":"COLLECT_275","name":"Collection: Grand Yard Mesa","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_275"}},{"itemId":642176,"className":"COLLECT_276","name":"Collection: Sventimas Exile","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_276"}},{"itemId":642177,"className":"COLLECT_277","name":"Collection: Kadumel Cliff","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_277"}},{"itemId":642178,"className":"COLLECT_278","name":"Collection: Steel Heights","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_278"}},{"itemId":642179,"className":"COLLECT_279","name":"Collection: Grynas Trails","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_279"}},{"itemId":642180,"className":"COLLECT_280","name":"Collection: Grynas Training Camp","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_280"}},{"itemId":642181,"className":"COLLECT_281","name":"Collection: Grynas Hills","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_281"}},{"itemId":642182,"className":"COLLECT_282","name":"Collection: Nheto Forest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_282"}},{"itemId":642183,"className":"COLLECT_283","name":"Collection: Svalphinghas Forest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_283"}},{"itemId":642184,"className":"COLLECT_284","name":"Collection: Lhadar Forest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_284"}},{"itemId":642185,"className":"COLLECT_285","name":"Collection: Timerys Temple","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_285"}},{"itemId":642186,"className":"COLLECT_286","name":"Collection: Tevhrin Stalactite Cave Section 1","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_286"}},{"itemId":642187,"className":"COLLECT_287","name":"Collection: Tevhrin Stalactite Cave Section 2","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_287"}},{"itemId":642188,"className":"COLLECT_288","name":"Collection: Tevhrin Stalactite Cave Section 3","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_288"}},{"itemId":642189,"className":"COLLECT_289","name":"Collection: Tevhrin Stalactite Cave Section 4","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_289"}},{"itemId":642190,"className":"COLLECT_290","name":"Collection: Tevhrin Stalactite Cave Section 5","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_290"}},{"itemId":642191,"className":"COLLECT_291","name":"Collection: City Wall District 8","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_291"}},{"itemId":642192,"className":"COLLECT_292","name":"Collection: Jeromel Park","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_292"}},{"itemId":642193,"className":"COLLECT_293","name":"Collection: Jonael Memorial","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_293"}},{"itemId":642194,"className":"COLLECT_294","name":"Collection: Taniel I Memorial","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_294"}},{"itemId":642195,"className":"COLLECT_295","name":"Collection: Kule Peak","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_295"}},{"itemId":642196,"className":"COLLECT_296","name":"Collection: Arcus Forest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_296"}},{"itemId":642197,"className":"COLLECT_297","name":"Collection: Phamer Forest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_297"}},{"itemId":642198,"className":"COLLECT_298","name":"Collection: Ziburynas Forest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_298"}},{"itemId":642199,"className":"COLLECT_299","name":"Collection: Mollogheo Forest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_299"}},{"itemId":642200,"className":"COLLECT_300","name":"Collection: Zima Suecourt","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_300"}},{"itemId":642201,"className":"COLLECT_301","name":"Collection: Emmet Forest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_301"}},{"itemId":642202,"className":"COLLECT_302","name":"Collection: Pystis Forest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_302"}},{"itemId":642203,"className":"COLLECT_303","name":"Collection: Syla Forest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_303"}},{"itemId":642204,"className":"COLLECT_304","name":"Collection: Alembique Cave","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_304"}},{"itemId":642205,"className":"COLLECT_305","name":"Collection: Nobreer Forest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_305"}},{"itemId":642206,"className":"COLLECT_306","name":"Collection: Yudejan Forest","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_306"}},{"itemId":642207,"className":"COLLECT_307","name":"Collection: Token of the Demon Treaty","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_307"}},{"itemId":642208,"className":"COLLECT_308","name":"Collection: Pasleptas","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_308"}},{"itemId":642209,"className":"COLLECT_309","name":"Collection: Coasts","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_309"}},{"itemId":642210,"className":"COLLECT_310","name":"Collection: Fantasy Library","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_310"}},{"itemId":642211,"className":"COLLECT_311","name":"Collection: Narvas Temple","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_311"}},{"itemId":642212,"className":"COLLECT_312","name":"Collection: Lanko Waters","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_312"}},{"itemId":642213,"className":"COLLECT_313","name":"Collection: Sage Master's Bookmark","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_313"}},{"itemId":642214,"className":"COLLECT_314","name":"Collection: Explorer Finds","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_314"}},{"itemId":642215,"className":"COLLECT_315","name":"Collection: Little Dexter's Gift","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_315"}},{"itemId":642217,"className":"COLLECT_319","name":"Collection: Moon Rabbit","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_319"}},{"itemId":642218,"className":"COLLECT_320","name":"Collection: What Ferret Left Behind","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_320"}},{"itemId":642219,"className":"COLLECT_321","name":"Collection: What Grasme Left Behind","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_321"}},{"itemId":642220,"className":"COLLECT_322","name":"Collection: Jolly Merry Winter Festival","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_322"}},{"itemId":642221,"className":"COLLECT_323","name":"ITEM_20230130_028342","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET","strArg":"COLLECT_323"}},{"itemId":11038000,"className":"EVENT_COLLECT_1","name":"Complete - Collection: Moon Rabbit","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT_COLLECTION","strArg":"COLLECT_319/1;Event_2109_Gold_coin/4;","numArg1":35}},{"itemId":11039000,"className":"DRESS_ROOM_COLLECT_1","name":"Collection: Honored Rose Theme","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_DRESS_ROOM_COLLECTION_GET","strArg":"honored_rose_thema"}},{"itemId":11039001,"className":"DRESS_ROOM_COLLECT_2","name":"Collection: Masquerade Theme","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_DRESS_ROOM_COLLECTION_GET","strArg":"curtain_call_thema"}},{"itemId":11039002,"className":"DRESS_ROOM_COLLECT_3","name":"Collection: Littleberk/Maru Theme","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_DRESS_ROOM_COLLECTION_GET","strArg":"demonlord_thema"}},{"itemId":11039003,"className":"DRESS_ROOM_COLLECT_4","name":"Collection: Evening Star","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_DRESS_ROOM_COLLECTION_GET","strArg":"vakarine_thema"}},{"itemId":11039004,"className":"DRESS_ROOM_COLLECT_5","name":"Collection: Task Unit","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_DRESS_ROOM_COLLECTION_GET","strArg":"cybersoldier_thema"}},{"itemId":11039005,"className":"DRESS_ROOM_COLLECT_6","name":"Collection: Ice Cold","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_DRESS_ROOM_COLLECTION_GET","strArg":"toswinter_thema"}},{"itemId":11039006,"className":"DRESS_ROOM_COLLECT_7","name":"Collection: Rosy Floret","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_DRESS_ROOM_COLLECTION_GET","strArg":"cherryblossom_thema"}},{"itemId":11039007,"className":"DRESS_ROOM_COLLECT_7_JP","name":"Collection: Rosy Floret(2)","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_DRESS_ROOM_COLLECTION_GET","strArg":"cherryblossom_jp_thema"}},{"itemId":11039008,"className":"DRESS_ROOM_COLLECT_8","name":"Collection: Heliopolis","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_DRESS_ROOM_COLLECTION_GET","strArg":"ep14egypt_thema"}},{"itemId":11039009,"className":"DRESS_ROOM_COLLECT_9","name":"Collection: Major Arcana","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_DRESS_ROOM_COLLECTION_GET","strArg":"ep14tarot_thema"}},{"itemId":11039010,"className":"DRESS_ROOM_COLLECT_10","name":"Collection: Furry Friends","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_DRESS_ROOM_COLLECTION_GET","strArg":"ep14furry_thema"}},{"itemId":11039011,"className":"DRESS_ROOM_COLLECT_11","name":"Collection: Lofty Snow","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_DRESS_ROOM_COLLECTION_GET","strArg":"ep15snowknight_thema"}},{"itemId":11039012,"className":"DRESS_ROOM_COLLECT_12","name":"Collection: Spring Fluff","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_DRESS_ROOM_COLLECTION_GET","strArg":"ep15spring01_theme"}},{"itemId":11039013,"className":"DRESS_ROOM_COLLECT_13","name":"Collection: Picnic","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_DRESS_ROOM_COLLECTION_GET","strArg":"ep15picnic01_theme"}},{"itemId":11039014,"className":"DRESS_ROOM_COLLECT_14","name":"Collection: Unicorn PJs","type":"Consume","group":"Collection","weight":0,"maxStack":1,"price":0,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_DRESS_ROOM_COLLECTION_GET","strArg":"ep15unicorn_theme"}},{"itemId":10003292,"className":"Event_2010_Enchant_Jewel_Box_3","name":"[Event] Enchant Jewel Box","type":"Consume","group":"Consume","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Legend_Enchant_Jewel_450_2/1;event_Unique_Enchant_Jewel_440_1/5;"}},{"itemId":495031,"className":"Event_DefenceMission01","name":"Defense Mission Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"ID_boss_ShadowGaoler"}},{"itemId":640403,"className":"Ghaca_PC_Rabdom","name":"ITEM_20230425_028567","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Gacha_PC_Cube"}},{"itemId":640404,"className":"Ghaca_PC_Misc","name":"ITEM_20230425_028568","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Gacha_PC_Misc_Cube"}},{"itemId":640407,"className":"Ghaca_PC_Discount_Ticket","name":"ITEM_20230425_028571","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Ghaca_PC_Discount_Ticket"}},{"itemId":640408,"className":"Ghaca_PC_Event_Csoume01","name":"ITEM_20230425_028573","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Ghaca_PC_Day"}},{"itemId":640409,"className":"Box_PC_Month","name":"ITEM_20230425_028574","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Box_PC_Month"}},{"itemId":640414,"className":"Gm_Ty_Box","name":"GM's Thank You Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GM_GIFT_BOX"}},{"itemId":640415,"className":"Gm_Sy_Box","name":"GM's Apology Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GM_GIFT_BOX"}},{"itemId":640443,"className":"Attendance_Sausis_SelectBox","name":"Fantasy Library: Sausis Room 9 Accessory Selection Box","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Ghaca_PC_Day"}},{"itemId":640444,"className":"Attendance_welcome","name":"New/Returning Savior Welcome Box","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ATTENDANCE_WELCOME"}},{"itemId":640445,"className":"Attendance_welcome2","name":"New/Returning Savior Support Box","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ATTENDANCE_WELCOME2"}},{"itemId":640446,"className":"Attendance_Masinios_SelectBox","name":"11 ENH 5 TRA Masinios Weapon Selection Box","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Ghaca_PC_Day"}},{"itemId":640450,"className":"Gacha_PC_Event_Costume01","name":"ITEM_20230425_028578","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Gacha_PC_Event_Costume01","strArg":"Ghaca_PC_Day"}},{"itemId":640451,"className":"Select_costume_ep11","name":"[Event] New Class Premium Costume Selection Box","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":640453,"className":"Ghaca_Guild_Contribution_Shop_MISC","name":"Ore Sack","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Ghaca_Guild_Contribution_Shop_MISC_Cube"}},{"itemId":640462,"className":"box_gabia_set","name":"NA","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GABIA_PACKAGE","strArg":"Ghaca_PC_Day"}},{"itemId":640463,"className":"rubymoru_recipe_box","name":"Shining Ruby Anvil Recipe Bundle (x10)","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_RUBYMORU_RECIPE_GIVE_ITEM","strArg":"Ghaca_PC_Day"}},{"itemId":640480,"className":"ViboraWeaponSelectBox","name":"[Kupole] Vaivora Weapon Selection Box","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":640489,"className":"SelectBox_Care_Penguin","name":"[Compensation] Penguin Selection Box","type":"Consume","group":"Cube","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":640490,"className":"CareBox_PenguinSET","name":"[Compensation] Penguin Set Box","type":"Consume","group":"Cube","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"CompanionExpcard400_OnlyPenguin/1;SelectBox_Care_Penguin/1;"}},{"itemId":640492,"className":"CareBox_PenguinSET_Trade","name":"ITEM_20230424_028395","type":"Consume","group":"Cube","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"CompanionExpcard400_OnlyPenguin/1;SelectBox_Care_Penguin_Trade/1;"}},{"itemId":640493,"className":"SelectBox_Care_Penguin_Trade","name":"ITEM_20230424_028397","type":"Consume","group":"Cube","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":640509,"className":"Ghaca_kingdom_misc_box","name":"Royal Ore Supply Box","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Ghaca_kingdom_misc_box_Cube"}},{"itemId":641915,"className":"160714Event_box0","name":"Lottery Silver Chest (14-Days)","type":"Consume","group":"Cube","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_MONEYBOX02","strArg":"SilverBox_box1","numArg1":10000}},{"itemId":641916,"className":"160714Event_box00","name":"Lottery Silver Chest (14-Days)","type":"Consume","group":"Cube","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_MONEYBOX03","strArg":"SilverBox_box2","numArg1":10000}},{"itemId":641922,"className":"160714Event_box0_R","name":"Lottery Silver Chest","type":"Consume","group":"Cube","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_MONEYBOX02","strArg":"SilverBox_box1","numArg1":10000}},{"itemId":641942,"className":"Event_1704_SilverBox","name":"Lottery Silver Chest (14-Days)","type":"Consume","group":"Cube","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_MONEYBOX04","strArg":"SilverBox_box3","numArg1":10000}},{"itemId":642515,"className":"Gacha_MonsterCard_Box","name":"Lucky Monster Card Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_MONCARD_BOX","strArg":"MONCARD_BOX"}},{"itemId":642601,"className":"Gacha_F_001","name":"Abomination Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"FD_boss_Abomination","numArg1":10000}},{"itemId":642602,"className":"Gacha_F_002","name":"(Old) Obscene Deathweaver Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Deathweaver","numArg1":10000}},{"itemId":642603,"className":"Gacha_F_003","name":"(Old) Bleak Chapparition Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Chapparition","numArg1":10000}},{"itemId":642604,"className":"Gacha_F_004","name":"Earth Templeshooter Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"FD_boss_Templeshooter","numArg1":30000}},{"itemId":642605,"className":"Gacha_F_005","name":"Earth Canceril Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"FD_boss_Canceril","numArg1":30000}},{"itemId":642606,"className":"Gacha_F_006","name":"Earth Archon Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"FD_boss_archon","numArg1":30000}},{"itemId":642607,"className":"Gacha_F_007","name":"(Old) Violent Cerberus Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Kerberos","numArg1":10000}},{"itemId":642608,"className":"Gacha_F_008","name":"(Old) Noisy Mineloader Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_mineloader","numArg1":10000}},{"itemId":642609,"className":"Gacha_F_009","name":"Kubas Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"FD_boss_Kubas","numArg1":10000}},{"itemId":642610,"className":"Gacha_F_010","name":"Necroventer Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"FD_boss_necrovanter","numArg1":30000}},{"itemId":642611,"className":"Gacha_F_011","name":"(Old) Burning Fire Lord Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Fireload","numArg1":30000}},{"itemId":642612,"className":"Gacha_F_012","name":"(Old) Wrathful Harpeia Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Harpeia_orange","numArg1":30000}},{"itemId":642613,"className":"Gacha_F_013","name":"Glackuman Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"FD_boss_Glackuman","numArg1":30000}},{"itemId":642614,"className":"Gacha_F_014","name":"Marionette Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"boss_Marionette","numArg1":50000}},{"itemId":642615,"className":"Gacha_F_015","name":"Dullahan Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"boss_durahan","numArg1":50000}},{"itemId":642616,"className":"Gacha_F_016","name":"(Old) Ellaganos Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_ellaganos","numArg1":50000}},{"itemId":642617,"className":"Gacha_F_017","name":"Prison Manager Prison Cutter Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Prisoncutter","numArg1":50000}},{"itemId":642618,"className":"Gacha_F_018","name":"Starving Velnia Monkey Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Velniamonkey","numArg1":30000}},{"itemId":642619,"className":"Gacha_F_019","name":"Forest Keeper Ferret Marauder Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_FerretMarauder","numArg1":10000}},{"itemId":642620,"className":"Gacha_F_020","name":"(Old) Mirtis Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_mirtis","numArg1":60000}},{"itemId":642621,"className":"Gacha_F_021","name":"(Old) Helgasercle Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_helgasercle","numArg1":60000}},{"itemId":642622,"className":"Gacha_F_022","name":"(Old) Rexipher Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_lecifer","numArg1":60000}},{"itemId":642623,"className":"Gacha_F_023","name":"(Old) Marnox Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Marnoks","numArg1":60000}},{"itemId":642624,"className":"Gacha_F_024","name":"(Old) Nuaele Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Nuaelle","numArg1":70000}},{"itemId":642625,"className":"Gacha_F_025","name":"(Old) Zaura Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Zawra","numArg1":70000}},{"itemId":642626,"className":"Gacha_F_026","name":"(Old) Blut Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Blud","numArg1":70000}},{"itemId":642627,"className":"Gacha_F_027","name":"(Old) Mirtis Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_mirtis_F"}},{"itemId":642628,"className":"Gacha_F_028","name":"(Old) Helgasercle Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_helgasercle_F"}},{"itemId":642629,"className":"Gacha_F_029","name":"(Old) Rexipher Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_lecifer_F"}},{"itemId":642630,"className":"Gacha_F_030","name":"(Old) Marnox Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Marnoks_F"}},{"itemId":642631,"className":"Gacha_F_031","name":"(Old) Nuaele Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Nuaelle_F"}},{"itemId":642632,"className":"Gacha_F_032","name":"(Old) Zaura Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Zawra_F"}},{"itemId":642633,"className":"Gacha_F_033","name":"(Old) Blut Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Blud_F"}},{"itemId":642634,"className":"Gacha_F_034","name":"(Old) Mirtis Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_mirtis_N"}},{"itemId":642635,"className":"Gacha_F_035","name":"(Old) Helgasercle Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_helgasercle_N"}},{"itemId":642636,"className":"Gacha_F_036","name":"(Old) Rexipher Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_lecifer_N"}},{"itemId":642637,"className":"Gacha_F_037","name":"(Old) Marnox Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Marnoks_N"}},{"itemId":642638,"className":"Gacha_F_038","name":"(Old) Nuaele Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Nuaelle_N"}},{"itemId":642639,"className":"Gacha_F_039","name":"(Old) Zaura Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Zawra_N"}},{"itemId":642640,"className":"Gacha_F_040","name":"(Old) Blut Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Blud_N"}},{"itemId":642641,"className":"Gacha_F_041","name":"Glackuman Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Glackuman_N"}},{"itemId":642642,"className":"Gacha_F_042","name":"Bleak Chapparition Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Chapparition_N"}},{"itemId":642643,"className":"Gacha_F_043","name":"Starving Velnia Monkey Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Velniamonkey_N"}},{"itemId":642644,"className":"Gacha_F_044","name":"Alluring Succubus Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_succubus_N"}},{"itemId":642645,"className":"Gacha_F_045","name":"Burning Fire Lord Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Fireload_N"}},{"itemId":642646,"className":"Gacha_F_046","name":"Noisy Mineloader Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_mineloader_N"}},{"itemId":642647,"className":"Gacha_F_047","name":"Blasphemous Deathweaver Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Deathweaver_N"}},{"itemId":642648,"className":"Gacha_F_048","name":"Forest Keeper Ferret Marauder Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_FerretMarauder_N"}},{"itemId":642649,"className":"Gacha_F_049","name":"Starving Ellaganos Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_ellaganos_N"}},{"itemId":642650,"className":"Gacha_F_050","name":"Violent Cerberus Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Kerberos_N"}},{"itemId":642651,"className":"Gacha_F_051","name":"Wrathful Harpeia Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Harpeia_orange_N"}},{"itemId":642652,"className":"Gacha_F_052","name":"Prison Manager Prison Cutter Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Prisoncutter_N"}},{"itemId":642653,"className":"Gacha_F_053","name":"Frantic Molich Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_molich_N"}},{"itemId":642654,"className":"Gacha_F_054","name":"Shining Demon Lord Mirtis Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_mirtis_F_LegCard"}},{"itemId":642655,"className":"Gacha_F_055","name":"Shining Demon Lord Helgasercle Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_helgasercle_F_LegCard"}},{"itemId":642656,"className":"Gacha_F_056","name":"Shining Demon Lord Rexipher Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_lecifer_F_LegCard"}},{"itemId":642657,"className":"Gacha_F_057","name":"Shining Demon Lord Marnox Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Marnoks_F_LegCard"}},{"itemId":642658,"className":"Gacha_F_058","name":"Shining Demon Lord Nuaele Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Nuaelle_F_LegCard"}},{"itemId":642659,"className":"Gacha_F_059","name":"Shining Demon Lord Zaura Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Zawra_F_LegCard"}},{"itemId":642660,"className":"Gacha_F_060","name":"Shining Demon Lord Blut Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Blud_F_LegCard"}},{"itemId":642661,"className":"Gacha_F_061","name":"Demon Lord Mirtis Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_mirtis_N_LegCard"}},{"itemId":642662,"className":"Gacha_F_062","name":"Demon Lord Helgasercle Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_helgasercle_N_LegCard"}},{"itemId":642663,"className":"Gacha_F_063","name":"Demon Lord Rexipher Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_lecifer_N_LegCard"}},{"itemId":642664,"className":"Gacha_F_064","name":"Demon Lord Marnox Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Marnoks_N_LegCard"}},{"itemId":642665,"className":"Gacha_F_065","name":"Demon Lord Nuaele Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Nuaelle_N_LegCard"}},{"itemId":642666,"className":"Gacha_F_066","name":"Demon Lord Zaura Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Zawra_N_LegCard"}},{"itemId":642667,"className":"Gacha_F_067","name":"Demon Lord Blut Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"F_boss_Blud_N_LegCard"}},{"itemId":642668,"className":"Gacha_F_068","name":"Shining Demon Lord Mirtis Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_FIELDBOSS_REWARD_RENEW2","strArg":"R_F_boss_mirtis_F_LegCard"}},{"itemId":642669,"className":"Gacha_F_069","name":"Shining Demon Lord Helgasercle Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_FIELDBOSS_REWARD_RENEW2","strArg":"R_F_boss_helgasercle_F_LegCard"}},{"itemId":642670,"className":"Gacha_F_070","name":"Shining Demon Lord Rexipher Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_FIELDBOSS_REWARD_RENEW2","strArg":"R_F_boss_lecifer_F_LegCard"}},{"itemId":642671,"className":"Gacha_F_071","name":"Shining Demon Lord Marnox Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_FIELDBOSS_REWARD_RENEW2","strArg":"R_F_boss_Marnoks_F_LegCard"}},{"itemId":642672,"className":"Gacha_F_072","name":"Shining Demon Lord Nuaele Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_FIELDBOSS_REWARD_RENEW2","strArg":"R_F_boss_Nuaelle_F_LegCard"}},{"itemId":642673,"className":"Gacha_F_073","name":"Shining Demon Lord Zaura Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_FIELDBOSS_REWARD_RENEW2","strArg":"R_F_boss_Zawra_F_LegCard"}},{"itemId":642674,"className":"Gacha_F_074","name":"Shining Demon Lord Blut Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_FIELDBOSS_REWARD_RENEW2","strArg":"R_F_boss_Blud_F_LegCard"}},{"itemId":642675,"className":"Gacha_F_075","name":"Demon Lord Mirtis Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_FIELDBOSS_REWARD_RENEW","strArg":"R_F_boss_mirtis_N_LegCard"}},{"itemId":642676,"className":"Gacha_F_076","name":"Demon Lord Helgasercle Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_FIELDBOSS_REWARD_RENEW","strArg":"R_F_boss_helgasercle_N_LegCard"}},{"itemId":642677,"className":"Gacha_F_077","name":"Demon Lord Rexipher Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_FIELDBOSS_REWARD_RENEW","strArg":"R_F_boss_lecifer_N_LegCard"}},{"itemId":642678,"className":"Gacha_F_078","name":"Demon Lord Marnox Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_FIELDBOSS_REWARD_RENEW","strArg":"R_F_boss_Marnoks_N_LegCard"}},{"itemId":642679,"className":"Gacha_F_079","name":"Demon Lord Nuaele Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_FIELDBOSS_REWARD_RENEW","strArg":"R_F_boss_Nuaelle_N_LegCard"}},{"itemId":642680,"className":"Gacha_F_080","name":"Demon Lord Zaura Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_FIELDBOSS_REWARD_RENEW","strArg":"R_F_boss_Zawra_N_LegCard"}},{"itemId":642681,"className":"Gacha_F_081","name":"Demon Lord Blut Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_FIELDBOSS_REWARD_RENEW","strArg":"R_F_boss_Blud_N_LegCard"}},{"itemId":642682,"className":"Gacha_F_082","name":"Shiny Demon Lord Moringponia Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_FIELDBOSS_Moringponia","strArg":"R_F_boss_Moringponia_F_LegCard"}},{"itemId":642683,"className":"Gacha_F_083","name":"Demon Lord Moringponia Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_FIELDBOSS_Moringponia2","strArg":"R_F_boss_Moringponia_N_LegCard"}},{"itemId":642684,"className":"Gacha_F_084","name":"Shiny Demon Lord Moringponia Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_NEW_Moringponia","strArg":"R_F_boss_Moringponia_F_NEW"}},{"itemId":642685,"className":"Gacha_F_085","name":"Demon Lord Moringponia Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_FIELDBOSS_Moringponia2","strArg":"R_F_boss_Moringponia_N_NEW"}},{"itemId":642686,"className":"Gacha_SKLGEM","name":"Skill Gem Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Cube_ALL_SKLGEM","numArg1":10}},{"itemId":642687,"className":"Gacha_F_086","name":"Shining Wonderous Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"R_F_boss_Moringponia_430_F"}},{"itemId":642688,"className":"Gacha_F_087","name":"Wonderous Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"R_F_boss_Moringponia_430_N"}},{"itemId":642689,"className":"Gacha_F_088","name":"Shining Wonderous Cube+","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Gacha_F_086/1;Gacha_F_087/1;"}},{"itemId":642690,"className":"Gacha_F_089","name":"Joint Strike Raid Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"WeeklyBossFBCubeBox/1;Gacha_F_086/1;Gacha_F_087/1;"}},{"itemId":642691,"className":"Gacha_MasterCard","name":"Master Card Card Album","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT","strArg":"Master_card_Boruble/1;Master_card_MariaLeed/1;Master_card_JuraSwajone/1;Master_card_Kamiya/1;Master_card_EckipseUbik/1;Master_card_AbrehMelinn/1;Master_card_Rashn/1;Master_card_Lucia/1;Master_card_EdmundasTiller/1;Master_card_Rozaliia/1;Master_card_Vilius/1;Master_card_JenaHavindar/1;Master_card_ReamToiler/1;Master_card_NoirParesseus/1;Master_card_Mei/1;Master_card_ShellyPennington/1;Master_card_Winona_Ende/1;Master_card_Feliksia/1;Master_card_MistesGoldmund/1;Master_card_AleisterCrowley/1;Master_card_Tesla/1;Master_card_KiolRuarawa/1;Master_card_LucidWinterspoon/1;Master_card_BangomontBorjigin/1;Master_card_DamirBorkhan/1;Master_card_KhanomCaolaw/1;Master_card_Rudmila/1;Master_card_Flintess/1;Master_card_SorshaHutton/1;Master_card_IliTerid/1;Master_card_LufasKehel/1;Master_card_VisavaldasBlack/1;Master_card_Pauline/1;Master_card_GeHong/1;Master_card_PhilipAureolus/1;"}},{"itemId":642701,"className":"Gacha_E_001","name":"Mystery Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"REQUEST_MISC_BOX","numArg1":5000}},{"itemId":642702,"className":"Gacha_E_002","name":"Sparkly Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"REQUEST_GEM_BOX","numArg1":50000}},{"itemId":642703,"className":"Gacha_E_003","name":"Saalus Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"MISSION_NUNNERY","numArg1":20000}},{"itemId":642704,"className":"Gacha_E_004","name":"Earth Tower 5F Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EARTHTOWER_1","numArg1":200000}},{"itemId":642705,"className":"Gacha_E_005","name":"Earth Tower 10F Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EARTHTOWER_2","numArg1":300000}},{"itemId":642706,"className":"Gacha_E_006","name":"Earth Tower 15F Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EARTHTOWER_3","numArg1":400000}},{"itemId":642707,"className":"Gacha_E_007","name":"Earth Tower 20F Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EARTHTOWER_4","numArg1":500000}},{"itemId":642714,"className":"Gacha_E_013","name":"Card Cube: Insect-type","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"CARD_GACHA_KLAIDA","numArg1":100000}},{"itemId":642715,"className":"Gacha_E_014","name":"Card Cube: Mutant-type","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"CARD_GACHA_PARAMUNE","numArg1":100000}},{"itemId":642716,"className":"Gacha_E_015","name":"Card Cube: Plant-type","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"CARD_GACHA_FORESTER","numArg1":100000}},{"itemId":642717,"className":"Gacha_E_016","name":"Card Cube: Devil-type","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"CARD_GACHA_VELNIAS","numArg1":100000}},{"itemId":642718,"className":"Gacha_E_017","name":"Card Cube: Animal-type","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"CARD_GACHA_WIDLING","numArg1":100000}},{"itemId":642719,"className":"Gacha_E_019","name":"(Old) Cube of Blessing","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"LUCRIS_CUBE","numArg1":300000}},{"itemId":642720,"className":"Gacha_E_020","name":"Golden Chest","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_160630_1"}},{"itemId":642721,"className":"Gacha_E_021","name":"Earth Tower 25F Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EARTHTOWER_5","numArg1":500000}},{"itemId":642722,"className":"Gacha_E_022","name":"Earth Tower 30F Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EARTHTOWER_6","numArg1":600000}},{"itemId":642723,"className":"Gacha_E_023","name":"Earth Tower 35F Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EARTHTOWER_7","numArg1":700000}},{"itemId":642724,"className":"Gacha_E_024","name":"Earth Tower 40F Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EARTHTOWER_8","numArg1":900000}},{"itemId":642725,"className":"Gem_Gacha","name":"Gem Draw","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"GEM_GACHA","numArg1":10000}},{"itemId":642729,"className":"Gacha_M_Zachariel_1","name":"Saalus Cube (Mausoleum)","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"M_Zachariel_1","numArg1":20000}},{"itemId":642730,"className":"Gacha_M_Rokas_1","name":"Saalus Cube (Canyon)","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"M_Rokas_1","numArg1":20000}},{"itemId":642731,"className":"Gacha_M_Castle_1","name":"Saalus Cube (Castle)","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"M_Castle_1","numArg1":20000}},{"itemId":642732,"className":"Team_Battle_Basic","name":"TBL Reward Box","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Team_Battle_Basic"}},{"itemId":642733,"className":"Team_Battle_Ranking_01","name":"TBL Ranking Reward Box","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Team_Battle_Ranking_01"}},{"itemId":642734,"className":"Team_Battle_Ranking_02","name":"TBL Winners Reward Box","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Team_Battle_Ranking_02"}},{"itemId":642739,"className":"Gacha_Guild_Boss","name":"Guild Quest Reward: Boss Raid","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Gacha_Guild_Boss_Raid"}},{"itemId":642740,"className":"Gacha_Guild_Mission","name":"Guild Quest Reward: Mission","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Gacha_Guild_Mission"}},{"itemId":642741,"className":"Gacha_Guild_Mission_Hair","name":"Guild Quest Reward: Hair Accessory","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Gacha_Guild_Mission_Hair"}},{"itemId":642742,"className":"Gacha_Earthtower_001","name":"Condensed Earth Tower 5F Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Gacha_Earthtower_001","numArg1":420000}},{"itemId":642743,"className":"Gacha_Earthtower_002","name":"Condensed Earth Tower 10F Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Gacha_Earthtower_002","numArg1":630000}},{"itemId":642744,"className":"Gacha_Earthtower_003","name":"Condensed Earth Tower 15F Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Gacha_Earthtower_003","numArg1":840000}},{"itemId":642745,"className":"Gacha_Earthtower_004","name":"Condensed Earth Tower 20F Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Gacha_Earthtower_004","numArg1":1050000}},{"itemId":642746,"className":"Gacha_Earthtower_005","name":"Condensed Earth Tower 25F Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Gacha_Earthtower_005","numArg1":1050000}},{"itemId":642747,"className":"Gacha_Earthtower_006","name":"Condensed Earth Tower 30F Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Gacha_Earthtower_006","numArg1":1260000}},{"itemId":642748,"className":"Gacha_Earthtower_007","name":"Condensed Earth Tower 35F Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Gacha_Earthtower_007","numArg1":1470000}},{"itemId":642749,"className":"Gacha_Earthtower_008","name":"Condensed Earth Tower 40F Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Gacha_Earthtower_008","numArg1":1890000}},{"itemId":642750,"className":"Gacha_Ability_Potion_Box","name":"Guild Quest Reward: Special Potion","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Gacha_Ability_Potion_Gacha"}},{"itemId":642751,"className":"Gacha_E_025","name":"Cube of Blessing","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"LUCRIS_CUBE_NEW"}},{"itemId":642752,"className":"Gacha_E_026","name":"Sister Aiste's Gift","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA_E_026"}},{"itemId":642762,"className":"Seal_box_Care_01","name":"[Reward] Boruta Seal - Swordsman Box","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM","strArg":"Seal_Boruta_Sword"}},{"itemId":642763,"className":"Seal_box_Care_02","name":"[Reward] Boruta Seal - Wizard Box","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM","strArg":"Seal_Boruta_Wizard"}},{"itemId":642764,"className":"Seal_box_Care_03","name":"[Reward] Boruta Seal - Cleric Box","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM","strArg":"Seal_Boruta_Cleric"}},{"itemId":642765,"className":"Seal_box_Care_04","name":"[Reward] Boruta Seal - Archer Box","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM","strArg":"Seal_Boruta_Archer"}},{"itemId":642766,"className":"Seal_box_Care_05","name":"[Reward] Boruta Seal - Scout Box","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM","strArg":"Seal_Boruta_Scout"}},{"itemId":642767,"className":"Seal_box_Care_06","name":"[Reward] Irredian Seal - Swordsman Box","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM","strArg":"Seal_iredian_u_Sword"}},{"itemId":642768,"className":"Seal_box_Care_07","name":"[Reward] Irredian Seal - Swordsman Box","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM","strArg":"Seal_iredian_u_Wizard"}},{"itemId":642769,"className":"Seal_box_Care_08","name":"[Reward] Irredian Seal - Cleric Box","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM","strArg":"Seal_iredian_u_Cleric"}},{"itemId":642770,"className":"Seal_box_Care_09","name":"[Reward] Irredian Seal - Archer Box","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM","strArg":"Seal_iredian_u_Archer"}},{"itemId":642771,"className":"Seal_box_Care_10","name":"[Reward] Irredian Seal - Scout Box","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM","strArg":"Seal_iredian_u_Scout"}},{"itemId":642772,"className":"Seal_box_boruta01","name":"Boruta Seal - Swordsman Box","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM","strArg":"Seal_Boruta_Sword"}},{"itemId":642773,"className":"Seal_box_boruta02","name":"Boruta Seal - Wizard Box","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM","strArg":"Seal_Boruta_Wizard"}},{"itemId":642774,"className":"Seal_box_boruta03","name":"Boruta Seal - Cleric Box","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM","strArg":"Seal_Boruta_Cleric"}},{"itemId":642775,"className":"Seal_box_boruta04","name":"Boruta Seal - Archer Box","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM","strArg":"Seal_Boruta_Archer"}},{"itemId":642776,"className":"Seal_box_boruta05","name":"Boruta Seal - Scout Box","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM","strArg":"Seal_Boruta_Scout"}},{"itemId":642777,"className":"Selectbox_Weapon_MoringPonia","name":"Moringponia Unique Weapon Selection Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":100000}},{"itemId":642778,"className":"Selectbox_Armor_MoringPonia","name":"Moringponia Unique Armor Selection Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":100000}},{"itemId":642779,"className":"Legend_Misc_Moringponia_Box","name":"Moringponia Crown Box","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_MORINGPONIA_BOX"}},{"itemId":642780,"className":"Legend_HiddenAbility_Piece_Box","name":"Mystic Tome Page Collection (x10)","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_HIDDENABILLITY_BOX"}},{"itemId":642782,"className":"txbox_MoringPonia_set","name":"Moringponia Unique Equipment Set Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_MORINGPONIA_EQUIP_SET_BOX","numArg1":100000}},{"itemId":642783,"className":"txbox_MoringPonia_set_crown","name":"Moringponia Unique Special Set Box","type":"Consume","group":"Cube","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_MORINGPONIA_EQUIP_CROWN_SET_BOX","numArg1":100000}},{"itemId":642784,"className":"Legend_HiddenAbility_Piece_Box_set","name":"Mystic Tome Bundle Special Set Box","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_HIDDENABILLITY_POINT_BOX"}},{"itemId":642785,"className":"WeeklyBossFBCubeBox","name":"Shining Demon Lord Cube Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":100000}},{"itemId":642786,"className":"WeeklyBossLegendMiscCube","name":"Weekly Boss Raid Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Weekly_LegendMisc_Cube"}},{"itemId":642787,"className":"DraconasMiscCube","name":"Kedora Merchant Alliance's Special Accessory Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Cube_DraconasMisc"}},{"itemId":642788,"className":"Selectbox_LegendCardEP11","name":"Goddess' Grace Legend Card Envelope","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT","strArg":"Legendcard_skiaclips/1;Legendcard_Moringponia/1;Legendcard_Misrus/1;","numArg1":100000}},{"itemId":642789,"className":"Legend_HiddenAbility_Piece_GreatBox","name":"Mystic Tome Page Collection (x100)","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"HiddenAbility_Piece/100;"}},{"itemId":642790,"className":"LegendMiscRandomBox","name":"Arch Stone Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT","strArg":"Legend_Misc_UpHill01/1;Legend_Misc_Solo01/1;Legend_Misc_Rift01/1;Legend_Misc_Week01/1;"}},{"itemId":642791,"className":"Premium_MysticAndMasterGlass","name":"Mysterious Magnifier Bundle","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_Mystic_Glass/1;Premium_Master_Glass/1;"}},{"itemId":642792,"className":"PCbang_Legend_HiddenAbility_Piece_GreatBox","name":"ITEM_20230425_028580","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"HiddenAbility_Piece/100;"}},{"itemId":642793,"className":"PCbang_legend_misc_card_box","name":"ITEM_20230425_028581","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"legend_reinforce_card_lv3/4;"}},{"itemId":642794,"className":"PCbang_legend_ExpPotion","name":"ITEM_20230425_028582","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Legend_ExpPotion_2_complete/40/ItemExpString/1250000000;"}},{"itemId":642795,"className":"Random_Seal_Cube","name":"Kedora Merchant Alliance's Mysterious Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Cube_RandomSeal"}},{"itemId":642796,"className":"WeeklyBossLegendMiscCube_Seal","name":"Weekly Boss Raid Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Weekly_LegendMisc_Cube"}},{"itemId":642797,"className":"CareBox_Raid","name":"[Reward] Raid Reward box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"CareBox_Raid"}},{"itemId":642798,"className":"CareBox_Uphill","name":"[Reward] Uphill Defense Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"CareBox_Uphill"}},{"itemId":642799,"className":"WeeklyBossLegendMiscCube_Seal_Piece","name":"Weekly Boss Raid Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Weekly_LegendMisc_Cube"}},{"itemId":642801,"className":"Gacha_G_001","name":"Kalejimas Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"GIMMICK_REWARD_PRISON_GACHA","numArg1":20000}},{"itemId":642802,"className":"Gacha_G_002","name":"Sicarius Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"UNDERFORTRESS_68_1_GIMMICK","numArg1":30000}},{"itemId":642803,"className":"Gacha_G_003","name":"Forest Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"GIMMICK_REWARD_PILGRIM41_1_GACHA","numArg1":20000}},{"itemId":642804,"className":"Gacha_G_004","name":"(Old) Attok Box of Materials","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"GIMMICK_REWARD_GACHA1","numArg1":20000}},{"itemId":642805,"className":"Gacha_G_005","name":"Attok Box of Odds and Ends","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"GIMMICK_REWARD_GACHA2","numArg1":20000}},{"itemId":642806,"className":"Gacha_G_006","name":"Attok Suspicious Box","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"GIMMICK_REWARD_GACHA3","numArg1":10000}},{"itemId":642807,"className":"Gacha_G_007","name":"Attok Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"GIMMICK_REWARD_GACHA4","numArg1":60000}},{"itemId":642808,"className":"Gacha_G_008","name":"Sausis Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"GIMMICK_REWARD_GACHA5","numArg1":250000}},{"itemId":642809,"className":"Gacha_G_009","name":"Mystical Cube","type":"Consume","group":"Cube","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_MIRACLEBOX01","strArg":"Normal"}},{"itemId":642810,"className":"Gacha_G_010","name":"Unstable Cube","type":"Consume","group":"Cube","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_MIRACLEBOX01","strArg":"Cube_Unstable01"}},{"itemId":642811,"className":"Gacha_G_011","name":"Mystical Cube","type":"Consume","group":"Cube","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_MIRACLEBOX01","strArg":"Normal"}},{"itemId":642812,"className":"Gacha_G_012","name":"Unstable Cube","type":"Consume","group":"Cube","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_MIRACLEBOX01","strArg":"Cube_Unstable02"}},{"itemId":642813,"className":"Gacha_G_013","name":"Cardboard Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Cube_recipe01","numArg1":500000}},{"itemId":642814,"className":"Gacha_H_001","name":"First Collexia Cube","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"PILGRIMROAD362_HQ3_CUBE"}},{"itemId":642815,"className":"Gacha_H_002","name":"Second Collexia Cube","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"PILGRIM48_HQ1_CUBE"}},{"itemId":642816,"className":"Gacha_H_003","name":"Third Collexia Cube","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"CHATHEDRAL54_HQ1_CUBE"}},{"itemId":642817,"className":"Gacha_H_004","name":"Fourth Collexia Cube","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"REMAINS373_HQ1_CUBE"}},{"itemId":642818,"className":"Gacha_H_005","name":"Fifth Collexia Cube","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"CATACOMB38_2_HQ1_CUBE"}},{"itemId":642819,"className":"Gacha_H_006","name":"Sixth Collexia Cube","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"SIAULIAI_351_HQ1_CUBE"}},{"itemId":642820,"className":"Gacha_H_007","name":"Seventh Collexia Cube","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"ABBEY353_HQ2_CUBE"}},{"itemId":642821,"className":"Gacha_H_008","name":"Eighth Collexia Cube","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"ORCHARD343_HQ2_CUBE"}},{"itemId":642822,"className":"Gacha_H_009","name":"Ninth Collexia Cube","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"TABLELAND70_HQ1_CUBE"}},{"itemId":642823,"className":"Gacha_H_010","name":"Small Pouch of Appreciation","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"Open_Gimmik_01_N"}},{"itemId":642824,"className":"Gacha_H_011","name":"Box of Honest Gratitude","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"Open_Gimmik_02_N"}},{"itemId":642825,"className":"Gacha_H_012","name":"Big Chest of Kindness","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"Open_Gimmik_03_N"}},{"itemId":642826,"className":"Gacha_G_014","name":"Attok Box of Materials","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"GIMMICK_REWARD_GACHA1_N"}},{"itemId":642827,"className":"Ruby_Moru_Box","name":"Moringponia: Ruby Anvil Box","type":"Consume","group":"Cube","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_RUBY_MORU_BOX","strArg":"Normal"}},{"itemId":642828,"className":"Weekly_Boss_AsioMage_Wing_Cube","name":"Asiomage's Wing Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"AsioMage_Wing_Cube"}},{"itemId":642829,"className":"CareBox_Delmore_Hard","name":"[Reward] Delmore Battlefield (Hard) Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"CareBox_Delmore_Hard"}},{"itemId":642901,"className":"Gacha_I_001","name":"Shadowgaler Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_boss_ShadowGaoler","numArg1":20000}},{"itemId":642902,"className":"Gacha_I_002","name":"Archmage Fire Lord Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_Lastboss_Fireload","numArg1":30000}},{"itemId":642903,"className":"Gacha_I_003","name":"Guard Dog Cerberus Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_boss_Kerberos","numArg1":30000}},{"itemId":642904,"className":"Gacha_I_004","name":"Mineloader Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_boss_mineloader","numArg1":30000}},{"itemId":642905,"className":"Gacha_I_005","name":"Orange Harpeia Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_boss_Harpeia_orange","numArg1":30000}},{"itemId":642906,"className":"Gacha_I_006","name":"Manticen Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_Lastboss_Manticen","numArg1":30000}},{"itemId":642907,"className":"Gacha_I_007","name":"Evil Necroventer Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_boss_necrovanter","numArg1":15000}},{"itemId":642908,"className":"Gacha_I_008","name":"Molich Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_boss_molich","numArg1":20000}},{"itemId":642909,"className":"Gacha_I_009","name":"Riteris Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_boss_Riteris","numArg1":40000}},{"itemId":642910,"className":"Gacha_I_010","name":"Flammidus Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_boss_Flammidus","numArg1":20000}},{"itemId":642911,"className":"Gacha_I_011","name":"Lavenzard Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_boss_Rambandgad","numArg1":15000}},{"itemId":642912,"className":"Gacha_I_012","name":"Pierced Manticen Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"M_boss_Manticen","numArg1":30000}},{"itemId":642913,"className":"Gacha_I_013","name":"Rafene Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_boss_Lapene","numArg1":20000}},{"itemId":642914,"className":"Gacha_I_014","name":"Armaos' Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_boss_Armaox","numArg1":30000}},{"itemId":642915,"className":"Gacha_I_015","name":"Red Lavenzard's Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_boss_Rambandgad_red","numArg1":30000}},{"itemId":642916,"className":"Gacha_I_016","name":"(Old) Velcoffer Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_VELCOFFER","strArg":"Raid_boss_blackGargoyle","numArg1":8190000,"numArg2":4}},{"itemId":642917,"className":"Gacha_ID_330","name":"(Old) The First Refuge Raid Dungeon Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_ID_WHITETREES","strArg":"ID_whitetrees"}},{"itemId":642918,"className":"Gacha_ID_50","name":"(Old) Underground Chapel Dungeon Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_Chaple"}},{"itemId":642919,"className":"Gacha_ID_120","name":"(Old) Historic Site Ruins Dungeon Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_Remains"}},{"itemId":642920,"className":"Gacha_ID_180","name":"(Old) Monument of Desire Dungeon Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_Remains3"}},{"itemId":642921,"className":"Gacha_ID_230","name":"Fallen Legwyn Family Dungeon Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_startower"}},{"itemId":642922,"className":"Gacha_ID_270","name":"Catacombs Underground Dungeon Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_Catacom"}},{"itemId":642923,"className":"Gacha_ID_300_Red","name":"Castle Dungeon Cube: Red","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_Castle2_Red"}},{"itemId":642924,"className":"Gacha_ID_300_Blue","name":"Castle Dungeon Cube: Blue","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_Castle2_Blue"}},{"itemId":642925,"className":"Gacha_ID_300","name":"(Old) Underground castle Dungeon Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_Castle2"}},{"itemId":642926,"className":"Gacha_ID_330_LegCard","name":"(Old) The First Refuge Raid Dungeon Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_ID_WHITETREES","strArg":"ID_whitetrees_LegCard"}},{"itemId":642927,"className":"Gacha_ID_360_LegCard","name":"Fantasy Library: Sausis Room 9 Dungeon Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_ID_SAUSIS_9TH","strArg":"ID_sausis_9th"}},{"itemId":642928,"className":"Gacha_ID_330_Ranko","name":"(Old) Lanko Lake Dungeon Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_Ranko"}},{"itemId":642929,"className":"Gacha_ID_380_Asio","name":"Asiomage Testing Grounds Raid Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_UNIQUE_380","strArg":"ID_ASIO_380"}},{"itemId":642930,"className":"Gacha_ID_380_Asio_Piece","name":"Spirit Fragment: Asiomage","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_UNIQUE_RAID_SOULSTONE_CARE","numArg1":20}},{"itemId":642931,"className":"Gacha_ID_380_Weistrel","name":"Magic Research Facility Raid Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_UNIQUE_380","strArg":"ID_WEISTREL"}},{"itemId":642932,"className":"Gacha_ID_380_Weistrel_Piece","name":"Spirit Fragment: Wastrel","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_UNIQUE_RAID_SOULSTONE_CARE","numArg1":20}},{"itemId":642933,"className":"Gacha_I_017","name":"Velcoffer Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_VELCOFFER2","strArg":"Raid_boss_blackGargoyle2","numArg1":4095000,"numArg2":4}},{"itemId":642934,"className":"Gacha_ID_380_ignas","name":"Ignas Raid Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_UNIQUE_380","strArg":"ID_ignas"}},{"itemId":642935,"className":"Gacha_ID_380_ignas_Piece","name":"Spirit Fragment: Ignas","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_UNIQUE_RAID_SOULSTONE_CARE","numArg1":40}},{"itemId":642936,"className":"Gacha_G_boruta","name":"Shining Boruta Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_BORUTA_GUILD","strArg":"Gacha_G_boruta"}},{"itemId":642937,"className":"Gacha_T_boruta","name":"Boruta Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_BORUTA_PERSON","strArg":"Gacha_T_boruta"}},{"itemId":642938,"className":"Gacha_R_boruta","name":"Boruta's Pouch","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_BORUTA_SHOP","strArg":"Gacha_R_boruta"}},{"itemId":642939,"className":"Gacha_iredian_390","name":"Irredian Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Iredian_lv380"}},{"itemId":642940,"className":"Gacha_ID_grade1","name":"Underground Chapel Dungeon Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_Chaple2"}},{"itemId":642941,"className":"Gacha_ID_grade2","name":"Historic Ruins Site Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_Remains2"}},{"itemId":642942,"className":"Gacha_ID_grade3","name":"Monument of Desire Dungeon Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_Remains3_2"}},{"itemId":642943,"className":"Gacha_ID_grade4","name":"Underground Castle Dungeon Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Indun_Castle2_3"}},{"itemId":642944,"className":"Gacha_ID_grade5","name":"Lanko Lake Dungeon Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"ID_Ranko2"}},{"itemId":642945,"className":"Gacha_ID_315_Piece","name":"Spirit Fragment: Prodigious Kugheri Balzermancer","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_UNIQUE_RAID_SOULSTONE_CARE","numArg1":10}},{"itemId":642946,"className":"Gacha_ID_330_LegCard_NEW","name":"The First Refuge Raid Dungeon Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_ID_WHITETREES","strArg":"ID_whitetrees_LegCard_NEW"}},{"itemId":642947,"className":"Gacha_Unique_400_Piece","name":"Spirit Fragment: Skiaclipse","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_UNIQUE_RAID_SOULSTONE_CARE","numArg1":50}},{"itemId":642948,"className":"Gacha_Unique_400","name":"(Old)Tomb of the White Crow Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_GACHA_UNIQUE_400","strArg":"ID_skiaclips"}},{"itemId":642949,"className":"Gacha_Legend_400","name":"Tomb of the White Crow Legend Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_SKIACLIPS_LEGEND","strArg":"ID_skiaclips_legend","numArg1":9600000,"numArg2":4}},{"itemId":642950,"className":"Gacha_Unique_2_400","name":"Tomb of the White Crow Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_GACHA_UNIQUE_2_400","strArg":"ID_skiaclips2"}},{"itemId":642951,"className":"Gacha_boruta2_Guild","name":"Boruta's Pouch: Guild","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_BORUTA_SHOP2","strArg":"Gacha_boruta_Guild"}},{"itemId":642952,"className":"Gacha_boruta2_Guild_Seal","name":"Boruta Seal Box: Guild","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Cube-Raid_boss_Boruta_ GuildMission_Seal"}},{"itemId":642953,"className":"Gacha_Legend_ID_Underground_waterway","name":"Outer Wall Sewers Legend Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_Underground_waterway","strArg":"ID_Underground_waterway","numArg1":9600000,"numArg2":4}},{"itemId":642954,"className":"Gacha_Legend_ID_Underground_waterway_piece","name":"Spirit Fragment: Misrus","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_UNIQUE_RAID_SOULSTONE_CARE","numArg1":20}},{"itemId":642955,"className":"Gacha_ID_Frost_Piece","name":"Spirit Fragment: Froster Lord","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_UNIQUE_RAID_SOULSTONE_CARE","numArg1":20}},{"itemId":642956,"className":"Gacha_MothRaid_piece","name":"Spirit Fragment: Moringponia","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_UNIQUE_RAID_SOULSTONE_CARE","numArg1":30}},{"itemId":642957,"className":"Gacha_Unique_MothRaid","name":"Moringponia Unique Raid Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Unique_Boss_Moringponia"}},{"itemId":642958,"className":"Gacha_Legend_MothRaid","name":"Moringponia Legend Raid Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Legend_Boss_Moringponia"}},{"itemId":642959,"className":"Gacha_Legend_MothRaid_Hard","name":"Moringponia Legend Raid Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Legend_Boss_Moringponia_Hard"}},{"itemId":642960,"className":"Gacha_Unique_Glacier","name":"Glacia Unique Raid Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Unique_Raid_Glacier"}},{"itemId":642961,"className":"Gacha_Unique_430_Piece","name":"Spirit Fragment : Glacia","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_UNIQUE_RAID_SOULSTONE_CARE","numArg1":30}},{"itemId":642962,"className":"Gacha_Legend_Glacier_Easy","name":"Glacia Legend Raid Cube (Easy)","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Legend_Raid_Glacier_Easy"}},{"itemId":642963,"className":"Gacha_Legend_Glacier_Normal","name":"Glacia Legend Raid Cube (Normal)","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Legend_Raid_Glacier_Normal"}},{"itemId":642964,"className":"Gacha_Legend_Glacier_Hard","name":"Glacia Legend Raid Cube (Hard)","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Legend_Raid_Glacier_Hard"}},{"itemId":642965,"className":"Gacha_Legend_MothRaid_Solo_Dummy","name":"Moringponia Legend Raid Cube (Solo)","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Legend_Boss_Moringponia_Solo_Dummy"}},{"itemId":642966,"className":"Gacha_TelHarsha_Solo_Dummy","name":"Tel Harsha Sole Hunt Raid Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"TelHarsha_Solo_Dummy"}},{"itemId":642967,"className":"Gacha_Legend_Guilty_Normal_Dummy","name":"Giltine Legend Raid Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Legend_Raid_Giltine_Normal"}},{"itemId":642968,"className":"Gacha_Legend_Guilty_Auto_Dummy","name":"Giltine Legend Auto Match","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Legend_Raid_Giltine_Auto"}},{"itemId":642969,"className":"Gacha_Goddess_Vasilisa_Hard_Dummy","name":"Vasilisa Goddess Raid","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Goddess_Raid_Vasilisa_Hard"}},{"itemId":642970,"className":"Gacha_Goddess_Vasilisa_Auto_Dummy","name":"Vasilisa Auto Match Raid","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Goddess_Raid_Vasilisa_Auto"}},{"itemId":642971,"className":"Gacha_Goddess_Vasilisa_Solo_Dummy","name":"Vasilisa Solo Raid","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Goddess_Raid_Vasilissa_Solo"}},{"itemId":642972,"className":"Gacha_Goddess_RevivalPaulius_Party_Dummy","name":"Goddess Raid: Resurrected Paulius ","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Goddess_Raid_Delmore_Party"}},{"itemId":642973,"className":"Gacha_Goddess_RevivalPaulius_Auto_Dummy","name":"Resurrected Paulius (Auto Match)","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Goddess_Raid_Delmore_Auto"}},{"itemId":642974,"className":"Gacha_Goddess_RevivalPaulius_Solo_Dummy","name":"Resurrected Paulius (Solo)","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Goddess_Raid_Delmore_Solo"}},{"itemId":642975,"className":"Gacha_EarringRaid_Solo_Dummy","name":"Goddess Message: Memory of Flame (Solo)","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EarringRaid_Solo"}},{"itemId":642976,"className":"Gacha_EarringRaid_Party_Dummy","name":"Goddess Message: Memory of Flame Party (Normal)","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EarringRaid_Party"}},{"itemId":642977,"className":"Gacha_EarringRaid_PartyHard_Dummy","name":"Goddess Message: Memory of Flame (Hard)","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EarringRaid_PartyHard"}},{"itemId":642978,"className":"Gacha_Goddess_Jellyzele_Party_Dummy","name":"Jellyzele Goddess Raid","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Goddess_Raid_Jellyzele_Party"}},{"itemId":642979,"className":"Gacha_Goddess_Jellyzele_Auto_Dummy","name":"Jellyzele Auto Match Raid","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Goddess_Raid_Jellyzele_Auto"}},{"itemId":642980,"className":"Gacha_Goddess_Jellyzele_Solo_Dummy","name":"Jellyzele Solo Raid","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Goddess_Raid_Jellyzele_Solo"}},{"itemId":642981,"className":"Gacha_Goddess_Spreader_Party_Dummy","name":"Reservoir of Corruption Goddess Raid","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Goddess_Raid_Spreader_Party"}},{"itemId":642982,"className":"Gacha_Goddess_Spreader_Auto_Dummy","name":"Reservoir of Corruption Auto Match Raid","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Goddess_Raid_Spreader_Auto"}},{"itemId":642983,"className":"Gacha_Goddess_Spreader_Solo_Dummy","name":"Reservoir of Corruption Solo Raid","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Goddess_Raid_Spreader_Solo"}},{"itemId":642984,"className":"Gacha_Goddess_Falouros_Party_Dummy","name":"Falouros Goddess Raid","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Goddess_Raid_Falouros_Party"}},{"itemId":642985,"className":"Gacha_Goddess_Falouros_Auto_Dummy","name":"Falouros Auto Match Raid","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Goddess_Raid_Falouros_Auto"}},{"itemId":642986,"className":"Gacha_Goddess_Falouros_Solo_Dummy","name":"Falouros Solo Raid","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Goddess_Raid_Falouros_Solo"}},{"itemId":642987,"className":"Gacha_Goddess_Roze_Party_Dummy","name":"ITEM_20230130_028351","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Goddess_Raid_Roze_Party"}},{"itemId":642988,"className":"Gacha_Goddess_Roze_Auto_Dummy","name":"ITEM_20230130_028352","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Goddess_Raid_Roze_Auto"}},{"itemId":642989,"className":"Gacha_Goddess_Roze_Solo_Dummy","name":"ITEM_20230130_028353","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Goddess_Raid_Roze_Solo"}},{"itemId":642990,"className":"Gacha_BridgeWailing_Party","name":"Wailing Graveyard","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"BridgeWailing_Party"}},{"itemId":699041,"className":"Piece_BorutaSeal","name":"Boruta Seal Fragment","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT_CNTCOST","strArg":"Seal_Boruta_Sword/1;Seal_Boruta_Wizard/1;Seal_Boruta_Cleric/1;Seal_Boruta_Archer/1;Seal_Boruta_Scout/1;","numArg1":10}},{"itemId":800001,"className":"Cube_FD_Weapon_75","name":"Unidentified Weapon Cube (Lv. 75)","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"FD_Weapon_75","numArg1":20000}},{"itemId":800002,"className":"Cube_FD_Armor_75","name":"Unidentified Armor Cube (Lv. 75)","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"FD_Armor_75","numArg1":20000}},{"itemId":800003,"className":"Cube_FD_Weapon_120","name":"Unidentified Weapon Cube (Lv. 120)","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"FD_Weapon_120","numArg1":20000}},{"itemId":800004,"className":"Cube_FD_Armor_120","name":"Unidentified Armor Cube (Lv. 120)","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"FD_Armor_120","numArg1":20000}},{"itemId":800005,"className":"Cube_FD_Weapon_170","name":"Unidentified Weapon Cube (Lv. 170)","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"FD_Weapon_170","numArg1":20000}},{"itemId":800006,"className":"Cube_FD_Armor_170","name":"Unidentified Armor Cube (Lv. 170)","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"FD_Armor_170","numArg1":20000}},{"itemId":800007,"className":"Cube_FD_Weapon_220","name":"Unidentified Weapon Cube (Lv. 220)","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"FD_Weapon_220","numArg1":20000}},{"itemId":800008,"className":"Cube_FD_Armor_220","name":"Unidentified Armor Cube (Lv. 220)","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"FD_Armor_220","numArg1":20000}},{"itemId":800009,"className":"Cube_FD_Weapon_270_Magic","name":"Unidentified Weapon Cube (Lv. 270)","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"FD_Weapon_270_Magic","numArg1":20000}},{"itemId":800010,"className":"Cube_FD_Armor_270_Magic","name":"Unidentified Armor Cube (Lv. 270)","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"FD_Armor_270_Magic","numArg1":20000}},{"itemId":800011,"className":"Cube_FD_Weapon_270_Rare","name":"Unidentified Weapon Cube (Lv. 270)","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"FD_Weapon_270_Rare","numArg1":20000}},{"itemId":800012,"className":"Cube_FD_Armor_270_Rare","name":"Unidentified Armor Cube (Lv. 270)","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"FD_Armor_270_Rare","numArg1":20000}},{"itemId":800013,"className":"Cube_FD_Weapon_315_Magic","name":"Unidentified Weapon Cube (Lv. 315)","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"FD_Weapon_315_Magic","numArg1":20000}},{"itemId":800014,"className":"Cube_FD_Armor_315_Magic","name":"Unidentified Armor Cube (Lv. 315)","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"FD_Armor_315_Magic","numArg1":20000}},{"itemId":800015,"className":"Cube_FD_Weapon_315_Rare","name":"Unidentified Weapon Cube (Lv. 315)","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"FD_Weapon_315_Rare","numArg1":20000}},{"itemId":800016,"className":"Cube_FD_Armor_315_Rare","name":"Unidentified Armor Cube (Lv. 315)","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"FD_Armor_315_Rare","numArg1":20000}},{"itemId":801000,"className":"Cube_Challenge_01","name":"Lv 300 Challenge Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_CHALLENGE","strArg":"Challenge_Cube"}},{"itemId":801001,"className":"Cube_Challenge_02","name":"Lv 200 Challenge Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_CHALLENGE","strArg":"Challenge_Cube2"}},{"itemId":801002,"className":"Cube_Challenge_01_Add","name":"Shining Lv 300 Challenge Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE_CHALLENGE","strArg":"Challenge_Cube_Add"}},{"itemId":801003,"className":"Cube_Challenge_03","name":"Lv 100 Challenge Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Challenge_Cube3"}},{"itemId":900111,"className":"Event_160714_1","name":"Bracelet Chest (7-Days)","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_160714_1"}},{"itemId":900112,"className":"Event_160714_2","name":"Dye Chest (7-Days)","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_160714_2"}},{"itemId":900133,"className":"Event_160929_1","name":"Black Cube","type":"Consume","group":"Cube","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_160929_1","numArg1":20000}},{"itemId":900134,"className":"Event_160929_2","name":"Silver Cube","type":"Consume","group":"Cube","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_160929_2","numArg1":20000}},{"itemId":900135,"className":"Event_160929_3","name":"Gold Cube","type":"Consume","group":"Cube","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_160929_3","numArg1":20000}},{"itemId":900147,"className":"Event_170117_1","name":"Prison Cube","type":"Consume","group":"Cube","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_170117_1","numArg1":50000}},{"itemId":900148,"className":"Event_SakuraCube_170405","name":"Cherry Blossom Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_SakuraCube_170405","numArg1":100000}},{"itemId":900149,"className":"Event_170404_1","name":"LV1 Daily Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_170404_1","numArg1":40000}},{"itemId":900150,"className":"Event_170404_2","name":"LV2 Daily Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_170404_2","numArg1":50000}},{"itemId":900151,"className":"Event_170404_3","name":"LV3 Daily Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_170404_3","numArg1":60000}},{"itemId":900152,"className":"Event_170404_4","name":"LV4 Daily Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_170404_4","numArg1":100000}},{"itemId":900153,"className":"Event_170404_5","name":"LV5 Daily Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_170404_5","numArg1":250000}},{"itemId":900154,"className":"Event_170404_6","name":"LV6 Daily Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_170404_6","numArg1":450000}},{"itemId":900219,"className":"Event_Valen_Choco_cube_1","name":"Gift Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_VALEN_THANKS_CUBE","numArg1":100000}},{"itemId":900220,"className":"Event_Valen_Choco_cube_2","name":"Chocolate Cube No. 1","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_VALEN_CHOCO1_CUBE","numArg1":100000}},{"itemId":900221,"className":"Event_Valen_Choco_cube_3","name":"Chocolate Cube No. 2","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_VALEN_CHOCO2_CUBE","numArg1":100000}},{"itemId":900222,"className":"Event_Valen_Choco_cube_4","name":"Chocolate Cube No. 3","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_VALEN_CHOCO3_CUBE","numArg1":100000}},{"itemId":900223,"className":"Event_Valen_Choco_cube_5","name":"Chocolate Cube No. 4","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_VALEN_CHOCO4_CUBE","numArg1":100000}},{"itemId":900224,"className":"Event_Valen_Choco_cube_6","name":"Chocolate Cube No. 5","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_VALEN_CHOCO5_CUBE","numArg1":100000}},{"itemId":900225,"className":"Event_Valen_Choco_cube_7","name":"Chocolate Cube No. 6","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_VALEN_CHOCO6_CUBE","numArg1":100000}},{"itemId":900226,"className":"Event_Valen_Choco_cube_8","name":"Chocolate Cube No. 7","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_VALEN_CHOCO7_CUBE","numArg1":100000}},{"itemId":900227,"className":"Event_Valen_Choco_cube_9","name":"Chocolate Cube No. 8","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_VALEN_CHOCO8_CUBE","numArg1":100000}},{"itemId":900228,"className":"Event_Valen_Choco_cube_10","name":"Chocolate Cube No. 9","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_VALEN_CHOCO9_CUBE","numArg1":100000}},{"itemId":900229,"className":"Event_Valen_Choco_cube_11","name":"Chocolate Cube No. 10","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_VALEN_CHOCO10_CUBE","numArg1":100000}},{"itemId":900236,"className":"Event_WhiteDay_Cube_1","name":"Cookie House Cube","type":"Consume","group":"Cube","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_WHITECUBE","numArg1":100000}},{"itemId":900237,"className":"Event_Cupon_Giftbox","name":"Gift Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_CUPON_GIFTBOX","numArg1":100000}},{"itemId":900239,"className":"Event_ManWooCube_1","name":"Totally Legit Cube","type":"Consume","group":"Cube","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_MANWOO_WEAPON_CUBE","numArg1":100000}},{"itemId":900270,"className":"Event_1704_CashBox","name":"Blessed Gift","type":"Consume","group":"Cube","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":15,"script":{"function":"SCR_USE_Event_1704_CashBox","strArg":"Event_170404_1","numArg1":40000}},{"itemId":902010,"className":"Event_BlueCube_Lv1","name":"LV1 Blue Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_BlueCube_Lv1","numArg1":50000}},{"itemId":902011,"className":"Event_BlueCube_Lv2","name":"LV2 Blue Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_BlueCube_Lv2","numArg1":100000}},{"itemId":902012,"className":"Event_BlueCube_Lv3","name":"LV3 Blue Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_BlueCube_Lv3","numArg1":150000}},{"itemId":902013,"className":"Event_BlueCube_Lv4","name":"LV4 Blue Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_BlueCube_Lv4","numArg1":200000}},{"itemId":902014,"className":"Event_BlueCube_Lv5","name":"LV5 Blue Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_BlueCube_Lv5","numArg1":300000}},{"itemId":902015,"className":"Event_BlueCube_Lv6","name":"Blue Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_BlueCube_Lv6","numArg1":500000}},{"itemId":902033,"className":"Event_CurseDoor_Cube","name":"Cursed Doll Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_CurseDoor_Cube","numArg1":100000}},{"itemId":902061,"className":"EVENT_1801_ORB_ARMORBOX","name":"Armor Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_1801_ORB_ARMORBOX"}},{"itemId":902062,"className":"EVENT_1801_ORB_WEAPONBOX","name":"Weapon Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_1801_ORB_WEAPONBOX"}},{"itemId":902104,"className":"Event_SakuraCube_2018","name":"Cherry Blossom Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_SakuraCube_2018","numArg1":100000}},{"itemId":902112,"className":"Event_JP_WEB_2018","name":"ITEM_20230424_028512","type":"Consume","group":"Cube","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_JP_WEB_2018","numArg1":100000}},{"itemId":902133,"className":"Event_JP_LIVE_2018","name":"ITEM_20230424_028517","type":"Consume","group":"Cube","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_JP_LIVE_2018","numArg1":100000}},{"itemId":902137,"className":"EVENT_1812_ORB_ARMORBOX","name":"Armor Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_1812_ORB_ARMORBOX"}},{"itemId":902138,"className":"EVENT_1812_ORB_WEAPONBOX","name":"Weapon Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_1812_ORB_WEAPONBOX"}},{"itemId":902139,"className":"Event_BlueCube_Lv6_1812","name":"Blue Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_BlueCube_Lv6_1812","numArg1":500000}},{"itemId":902154,"className":"Steam_Event_Carnival_Box","name":"Festival Costume Selection Box","type":"Consume","group":"Cube","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902158,"className":"Event_JP_FLOWER_CUBE","name":"Flower Road Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_JP_FLOWER_CUBE","numArg1":100000}},{"itemId":902163,"className":"Steam_Event_Popo_Weapon_3d_Box","name":"Popo Shop Weapon Selection Box (3 Days)","type":"Consume","group":"Cube","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902164,"className":"Steam_Event_Popo_Weapon_7d_Box","name":"Popo Shop Weapon Selection Box (7 Days)","type":"Consume","group":"Cube","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904002,"className":"EVENT_1802_MASTER_REWARD_CUBE","name":"Infinite Potential Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1802_MASTER_REWARD_CUBE"}},{"itemId":904014,"className":"EVENT_1804_ARBOR_GROW_CRYSTAL_CUBE_1_2","name":"Sapling Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1804_ARBOR_GROW_CRYSTAL_CUBE_1_2"}},{"itemId":904015,"className":"EVENT_1804_ARBOR_GROW_CRYSTAL_CUBE_3_4","name":"Tree Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1804_ARBOR_GROW_CRYSTAL_CUBE_3_4"}},{"itemId":904016,"className":"EVENT_1804_ARBOR_GROW_CRYSTAL_CUBE_5_6","name":"Leafy Tree Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1804_ARBOR_GROW_CRYSTAL_CUBE_5_6"}},{"itemId":904028,"className":"MISSION_SURVIVAL_EVENT2_CUBE","name":"Stolen Treasure Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_MISSION_SURVIVAL_EVENT2_CUBE"}},{"itemId":904041,"className":"EVENT_1805_SLATE_CUBE","name":"Lena's Thank You Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1805_SLATE_CUBE"}},{"itemId":904049,"className":"EVENT_1806_STORY_1_CUBE","name":"Astral Tower Hero Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1806_STORY_1_CUBE"}},{"itemId":904057,"className":"EVENT_1807_BALL_CUBE","name":"Summer Party Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1807_BALL_CUBE"}},{"itemId":904083,"className":"EVENT_1807_HOTTIME_BOX","name":"[R10] Lucky Box (1 Hour)","type":"Consume","group":"Cube","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":50,"script":{"function":"SCR_USE_EVENT_1807_HOTTIME_BOX"}},{"itemId":904095,"className":"EVENT_1810_UNIQUE_CUBE","name":"Rota's Special Support Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1810_UNIQUE_CUBE"}},{"itemId":904111,"className":"KUPOLE_SERVER_TEST_REINFORCE","name":"[Kupole] Test Scroll: Enhancement","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_SERVER_KUPOLE_REINFORCE_SCROLL"}},{"itemId":904127,"className":"EVENT_1812_HOTTIME_BOX","name":"[3rd Anniversary] Lucky Box (1 Hour)","type":"Consume","group":"Cube","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":30,"script":{"function":"SCR_USE_EVENT_1812_HOTTIME_BOX"}},{"itemId":904129,"className":"EVENT_BORUTA_CLEAR_REWARDBOX","name":"Goddess' Present Chest","type":"Consume","group":"Cube","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_BORUTA_CLEAR_REWARDBOX"}},{"itemId":904138,"className":"EVENT_1902_NEWYEAR_FORTUNEPOUCH","name":"[Event] New Year Lucky Bag","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1902_NEWYEAR_FORTUNEPOUCH","strArg":"EVENT_1902_NEWYEAR_FORTUNEPOUCH"}},{"itemId":904228,"className":"EVENT_QOS_SHIRTS_S1","name":"NA","type":"Consume","group":"Cube","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904245,"className":"EVENT_2020_NEWYEAR_FORTUNEPOUCH","name":"[Event] Lucky Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_2020_POUCH_GLOBAL"}},{"itemId":904246,"className":"EVENT_2020_GOLDEN_FORTUNEPOUCH","name":"[Event] Golden Lucky Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_2020_GOLDEN_POUCH_GLOBAL"}},{"itemId":904289,"className":"txbox_wonderers_armor_recipe","name":"Goddess' Grace Wonderous Recipe Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_MUTIPLE_ITEM_NUMBER_SPLIT","strArg":"Selectbox_Weapon_MoringPonia/1*Selectbox_Armor_MoringPonia/1*Legend_Misc_Moringponia/1*R_EP12_TOP04_001/1;Selectbox_Weapon_MoringPonia/1*Selectbox_Armor_MoringPonia/1*Legend_Misc_Moringponia/1*R_EP12_TOP04_002/1;Selectbox_Weapon_MoringPonia/1*Selectbox_Armor_MoringPonia/1*Legend_Misc_Moringponia/1*R_EP12_TOP04_003/1;Selectbox_Weapon_MoringPonia/1*Selectbox_Armor_MoringPonia/1*Legend_Misc_Moringponia/1*R_EP12_LEG04_001/1;Selectbox_Weapon_MoringPonia/1*Selectbox_Armor_MoringPonia/1*Legend_Misc_Moringponia/1*R_EP12_LEG04_002/1;Selectbox_Weapon_MoringPonia/1*Selectbox_Armor_MoringPonia/1*Legend_Misc_Moringponia/1*R_EP12_LEG04_003/1;Selectbox_Weapon_MoringPonia/1*Selectbox_Armor_MoringPonia/1*Legend_Misc_Moringponia/1*R_EP12_HAND04_001/1;Selectbox_Weapon_MoringPonia/1*Selectbox_Armor_MoringPonia/1*Legend_Misc_Moringponia/1*R_EP12_HAND04_002/1;Selectbox_Weapon_MoringPonia/1*Selectbox_Armor_MoringPonia/1*Legend_Misc_Moringponia/1*R_EP12_HAND04_003/1;Selectbox_Weapon_MoringPonia/1*Selectbox_Armor_MoringPonia/1*Legend_Misc_Moringponia/1*R_EP12_FOOT04_001/1;Selectbox_Weapon_MoringPonia/1*Selectbox_Armor_MoringPonia/1*Legend_Misc_Moringponia/1*R_EP12_FOOT04_002/1;Selectbox_Weapon_MoringPonia/1*Selectbox_Armor_MoringPonia/1*Legend_Misc_Moringponia/1*R_EP12_FOOT04_003/1;"}},{"itemId":904290,"className":"txbox_wonderers_armor_set","name":"Goddess' Grace Wonderous Armor Set Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_MUTIPLE_ITEM_NUMBER_SPLIT","strArg":"EP12_TOP04_001/1*EP12_LEG04_001/1*EP12_HAND04_001/1*EP12_FOOT04_001/1;EP12_TOP04_002/1*EP12_LEG04_002/1*EP12_HAND04_002/1*EP12_FOOT04_002/1;EP12_TOP04_003/1*EP12_LEG04_003/1*EP12_HAND04_003/1*EP12_FOOT04_003/1;"}},{"itemId":904291,"className":"txbox_LegendCardEP11_ALL","name":"Goddess' Grace Legend Card Set Envelope","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Legendcard_skiaclips/1;Legendcard_Moringponia/1;Legendcard_Misrus/1;"}},{"itemId":904292,"className":"txbox_Ruby_Moru_cnt20","name":"Goddess' Grace Ruby Anvil Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Ruby_Charge/20;"}},{"itemId":904304,"className":"PCbang_God_Potion_BOX","name":"ITEM_20230425_028598","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"God_Potion_ATK/100;God_Potion_DEF/100;"}},{"itemId":1000094,"className":"Gem_Select_Box_Color","name":"Colored Gem Selection Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":2020001,"className":"HiddenAbility_TotalCube","name":"Unidentified Mystic Tome Page","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"HiddenAbility_Total"}},{"itemId":2020002,"className":"HiddenAbility_SwordmanCube","name":"Unidentified Mystic Tome: Swordsman","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"HiddenAbility_Swordman"}},{"itemId":2020003,"className":"HiddenAbility_WizardCube","name":"Unidentified Mystic Tome: Wizard","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"HiddenAbility_Wizard"}},{"itemId":2020004,"className":"HiddenAbility_ArcherCube","name":"Unidentified Mystic Tome: Archer","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"HiddenAbility_Archer"}},{"itemId":2020005,"className":"HiddenAbility_ClericCube","name":"Unidentified Mystic Tome: Cleric","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"HiddenAbility_Cleric"}},{"itemId":2020006,"className":"HiddenAbility_ScoutCube","name":"Unidentified Mystic Tome: Scout","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"HiddenAbility_Scout"}},{"itemId":2030001,"className":"HiddenAbility_SwordmanPackage1","name":"Mystic Encyclopedia: Swordsman Book I","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030002,"className":"HiddenAbility_SwordmanPackage2","name":"Mystic Encyclopedia: Swordsman Book II","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030003,"className":"HiddenAbility_SwordmanPackage3","name":"Mystic Encyclopedia: Swordsman Book III","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030004,"className":"HiddenAbility_WizardPackage1","name":"Mystic Encyclopedia: Wizard Book I","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030005,"className":"HiddenAbility_WizardPackage2","name":"Mystic Encyclopedia: Wizard Book II","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030006,"className":"HiddenAbility_WizardPackage3","name":"Mystic Encyclopedia: Wizard Book III","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030007,"className":"HiddenAbility_ArcherPackage1","name":"Mystic Encyclopedia: Archer Book I","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030008,"className":"HiddenAbility_ArcherPackage2","name":"Mystic Encyclopedia: Archer Book II","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030009,"className":"HiddenAbility_ArcherPackage3","name":"Mystic Encyclopedia: Archer Book III","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030010,"className":"HiddenAbility_ClericPackage1","name":"Mystic Encyclopedia: Cleric Book I","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030011,"className":"HiddenAbility_ClericPackage2","name":"Mystic Encyclopedia: Cleric Book II","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030012,"className":"HiddenAbility_ClericPackage3","name":"Mystic Encyclopedia: Cleric Book III","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030013,"className":"HiddenAbility_ScoutPackage1","name":"Mystic Encyclopedia: Scout Book I","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030014,"className":"HiddenAbility_ScoutPackage2","name":"Mystic Encyclopedia: Scout Book II","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030015,"className":"HiddenAbility_ScoutPackage3","name":"Mystic Encyclopedia: Scout Book III","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030016,"className":"HiddenAbility_SwordmanPackage4","name":"Mystic Encyclopedia: Swordsman Book IV","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030017,"className":"HiddenAbility_SwordmanPackage5","name":"Mystic Encyclopedia: Swordsman Book V","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030018,"className":"HiddenAbility_SwordmanPackage6","name":"Mystic Encyclopedia: Swordsman Book VI","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030019,"className":"HiddenAbility_SwordmanPackage7","name":"Mystic Encyclopedia: Swordsman Book VII","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030020,"className":"HiddenAbility_SwordmanPackage8","name":"Mystic Encyclopedia: Swordsman Book VIII","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030021,"className":"HiddenAbility_SwordmanPackage9","name":"Mystic Encyclopedia: Swordsman Book IX","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030022,"className":"HiddenAbility_WizardPackage4","name":"Mystic Encyclopedia: Wizard Book IV","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030023,"className":"HiddenAbility_WizardPackage5","name":"Mystic Encyclopedia: Wizard Book V","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030024,"className":"HiddenAbility_WizardPackage6","name":"Mystic Encyclopedia: Wizard Book VI","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030025,"className":"HiddenAbility_WizardPackage7","name":"Mystic Encyclopedia: Wizard Book VII","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030026,"className":"HiddenAbility_WizardPackage8","name":"Mystic Encyclopedia: Wizard Book VIII","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030027,"className":"HiddenAbility_WizardPackage9","name":"Mystic Encyclopedia: Wizard Book IX","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030028,"className":"HiddenAbility_ArcherPackage4","name":"Mystic Encyclopedia: Archer Book IV","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030029,"className":"HiddenAbility_ArcherPackage5","name":"Mystic Encyclopedia: Archer Book V","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030030,"className":"HiddenAbility_ArcherPackage6","name":"Mystic Encyclopedia: Archer Book VI","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030031,"className":"HiddenAbility_ArcherPackage7","name":"Mystic Encyclopedia: Archer Book VII","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030032,"className":"HiddenAbility_ArcherPackage8","name":"Mystic Encyclopedia: Archer Book VIII","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030033,"className":"HiddenAbility_ClericPackage4","name":"Mystic Encyclopedia: Cleric Book IV","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030034,"className":"HiddenAbility_ClericPackage5","name":"Mystic Encyclopedia: Cleric Book V","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030035,"className":"HiddenAbility_ClericPackage6","name":"Mystic Encyclopedia: Cleric Book VI","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030036,"className":"HiddenAbility_ScoutPackage4","name":"Mystic Encyclopedia: Scout Book IV","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030037,"className":"HiddenAbility_ScoutPackage5","name":"Mystic Encyclopedia: Scout Book V","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030038,"className":"HiddenAbility_ScoutPackage6","name":"Mystic Encyclopedia: Scout Book VI","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030039,"className":"HiddenAbility_SwordmanPackage10","name":"Mystic Encyclopedia: Swordsman Book X","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030040,"className":"HiddenAbility_WizardPackage10","name":"Mystic Encyclopedia: Wizard Book X","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030041,"className":"HiddenAbility_ArcherPackage9","name":"Mystic Encyclopedia: Archer Book IX","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030042,"className":"HiddenAbility_ClericPackage7","name":"Mystic Encyclopedia: Cleric Book VII","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2030043,"className":"HiddenAbility_ScoutPackage7","name":"Mystic Encyclopedia: Scout Book VII","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":2500104,"className":"GEM_BOX_Fencer","name":"Skill Gem Selection Box: Fencer","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500105,"className":"GLOBAL_TWN_Yellow_Watermelon_Box","name":"Yellow Watermelon Costume Selection Box","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500132,"className":"GEM_BOX_Murmillo","name":"Skill Gem Selection Box: Murmillo","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500159,"className":"GEM_BOX_Musketeer","name":"Skill Gem Selection Box: Musketeer","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500171,"className":"GEM_BOX_Doppelsoeldner","name":"Skill Gem Selection Box: Doppelsoeldner","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500185,"className":"GEM_BOX_Appraiser","name":"Skill Gem Selection Box: Appraiser","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500186,"className":"GEM_BOX_PiedPiper","name":"Skill Gem Selection Box: Pied Piper","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500187,"className":"GEM_BOX_Chronomancer","name":"Skill Gem Selection Box: Chronomancer","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500188,"className":"GEM_BOX_Linker","name":"Skill Gem Selection Box: Linker","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500189,"className":"GEM_BOX_Corsair","name":"Skill Gem Selection Box: Corsair","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500190,"className":"GEM_BOX_Thaumaturge","name":"Skill Gem Selection Box: Thaumaturge","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500191,"className":"GEM_BOX_Enchanter","name":"Skill Gem Selection Box: Enchanter","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500192,"className":"GEM_BOX_Schwarzereiter","name":"Skill Gem Selection Box: Schwarzer Reiter","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500227,"className":"GEM_BOX_Sadhu","name":"Skill Gem Selection Box: Sadhu","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500238,"className":"GEM_BOX_Ranger","name":"Skill Gem Selection Box: Ranger","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500239,"className":"GEM_BOX_Fletcher","name":"Skill Gem Selection Box: Fletcher","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500240,"className":"GEM_BOX_Arquebusier","name":"Skill Gem Selection Box: Arquebusier","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500241,"className":"GEM_BOX_Cannoneer","name":"Skill Gem Selection Box: Cannoneer","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500242,"className":"GEM_BOX_Matross","name":"Skill Gem Selection Box: Matross","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500243,"className":"GEM_BOX_Highlander","name":"Skill Gem Selection Box: Highlander","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500244,"className":"GEM_BOX_Barbarian","name":"Skill Gem Selection Box: Barbarian","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500245,"className":"GEM_BOX_Featherfoot","name":"Skill Gem Selection Box: Featherfoot","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500246,"className":"GEM_BOX_Onmyoji","name":"Skill Gem Selection Box: Onmyoji","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500247,"className":"GEM_BOX_Druid","name":"Skill Gem Selection Box: Druid","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500248,"className":"GEM_BOX_Paladin","name":"Skill Gem Selection Box: Paladin","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500256,"className":"GEM_BOX_Hackapell","name":"Skill Gem Selection Box: Hackapell","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500290,"className":"GEM_BOX_Priest","name":"Skill Gem Selection Box: Priest","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500291,"className":"GEM_BOX_Kabbalist","name":"Skill Gem Selection Box: Kabbalist","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500296,"className":"GEM_BOX_Oracle","name":"Skill Gem Selection Box: Oracle","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500297,"className":"GEM_BOX_PlagueDoctor","name":"Skill Gem Selection Box: Plague Doctor","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500315,"className":"GEM_BOX_Templar","name":"Skill Gem Selection Box: Templar","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500328,"className":"GEM_BOX_Sapper","name":"Skill Gem Selection Box: Sapper","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500345,"className":"GEM_BOX_Hunter","name":"Skill Gem Selection Box: Hunter","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":10003011,"className":"EVENT_2004_Arbor_Day_BOX","name":"[Event] Gift Box of the Tree","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_2004_Arbor_Day_BOX"}},{"itemId":10003012,"className":"EVENT_2004_Arbor_Day_gift_pouch1","name":"[Event] Gift Pouch of the Tree 1","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EVENT_Blessed_Fruit/1;Ability_Point_Stone_500_14d_Team/1;Premium_Mystic_Glass_Event_14d/1"}},{"itemId":10003013,"className":"EVENT_2004_Arbor_Day_gift_pouch2","name":"[Event] Gift Pouch of the Tree 2","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EVENT_Blessed_Fruit/2;Ability_Point_Stone_500_14d_Team/3;Premium_Master_Glass_Event_14d/1;Event_indunReset_Team_14d/1;Premium_dungeoncount_Event/1"}},{"itemId":10003014,"className":"EVENT_2004_Arbor_Day_gift_pouch3","name":"[Event] Gift Pouch of the Tree 3","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EVENT_Blessed_Fruit/3;Ability_Point_Stone_1000_14d_Team/3;Adventure_Reward_Seed_14d_Team/1;Event_Goddess_Statue_Team/1;Event_190110_ChallengeModeReset_14d/1;EVENT_1712_SECOND_CHALLENG_14d_Team/1"}},{"itemId":10003027,"className":"Event_2004_Stamp_All_Clear","name":"[Event] Stamp Tour Mission Clear Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_2004_Stamp_Title/3;Event_Ability_Point_Stone_10000_14d_2/5;Moru_Ruby_event/5;Event_Transcend_Scroll_10_420Lv/1"}},{"itemId":10003035,"className":"EVENT_2005_Random_stone","name":"[Event] Unidentified Gemstone","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_2005_Random_stone"}},{"itemId":10003036,"className":"EVENT_2005_Appraiser_Box","name":"[Event] Sandra's Gift Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_2005_Appraiser_Box"}},{"itemId":10003045,"className":"EVENT_2006_WaterMelon","name":"[Event] Fresh Watermelon","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_2006_WaterMelon"}},{"itemId":10003051,"className":"Nyang_Piano_Box_Do_White","name":"White Meow Piano Toy Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"nyang_piano_Do_White/1;nyang_piano_Re_White/1;nyang_piano_Mi_White/1;nyang_piano_Fa_White/1;nyang_piano_So_White/1;nyang_piano_La_White/1;nyang_piano_Ti_White/1;nyang_piano_High_Do_White/1;"}},{"itemId":10003052,"className":"Nyang_Piano_Box_Do_Black","name":"Black Meow Piano Toy Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"nyang_piano_Do_Black/1;nyang_piano_Re_Black/1;nyang_piano_Fa_Black/1;nyang_piano_So_Black/1;nyang_piano_La_Black/1;"}},{"itemId":10003057,"className":"Event_2004_Stamp_All_Clear_2","name":"[Event] Stamp Tour Mission Clear Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_2004_Stamp_Title/3;Event_Ability_Point_Stone_10000_3/5;Moru_Ruby_event/5;Event_Transcend_Scroll_5_440Lv_Weapon/1"}},{"itemId":10003061,"className":"Event_Gosu_Emoticon_Box","name":"[Event] Maximum Level Emoji Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"emoticonItem_70_73/3;kupole_emotion04/3;kupole_emotion05/3;kupole_emotion06_2/3;Boruble_emotion01/3;Rozaliia_emotion01/3;marnox_emotion02/3;medeina_emotion03_2/3;medeina_emotion01/3;medeina_emotion02/3;motion_kupole_emotion03/3;motion_kupole_emotion02/3;motion_kupole_emotion01/3;motion_medeina_emotion01/3;motion_medeina_emotion02/3;"}},{"itemId":10003062,"className":"Event_Gosu_Reset_Box","name":"[Event] Reset Pack","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_StatReset/1;Premium_SkillReset/1;Premium_Abillitypoint/1;"}},{"itemId":10003064,"className":"EVENT_2008_Master_Vote_86_BOX","name":"[Your Master] Voting Reward","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_2008_Master_Vote_86"}},{"itemId":10003066,"className":"Event_Gosu_Emoticon_Box_2","name":"[Event] Maximum Level Emoji Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"kupole_emotion04/3;kupole_emotion05/3;kupole_emotion06_2/3;Boruble_emotion01/3;Rozaliia_emotion01/3;marnox_emotion02/3;medeina_emotion03_2/3;medeina_emotion01/3;medeina_emotion02/3;motion_kupole_emotion03/3;motion_kupole_emotion02/3;motion_kupole_emotion01/3;motion_medeina_emotion01/3;motion_medeina_emotion02/3;"}},{"itemId":10003067,"className":"EVENT_2008_OBON_OMUKAE","name":"[Lantern] Omukae Dango","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_2008_OBON_OMUKAE"}},{"itemId":10003068,"className":"EVENT_2008_OBON_OHAGI","name":"[Lantern] Ohagi","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_2008_OBON_OHAGI"}},{"itemId":10003069,"className":"EVENT_2008_OBON_OKURI","name":"[Lantern] Okuri Dango","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_2008_OBON_OKURI"}},{"itemId":10003114,"className":"EVENT_2005_Appraiser_Box_STM","name":"[Event] Sandra's Gift Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_2005_Appraiser_Box_STM"}},{"itemId":10003116,"className":"Event_2009_Chursok_Gift_Box1","name":"[Full Moon] Full Moon Festival Gift Box Stage 1","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Stone_500_2/1;Event_Master_Glass_6/3;Event_dungeoncount_8/2;Event_indunReset_Team_8/1;"}},{"itemId":10003117,"className":"Event_2009_Chursok_Gift_Box2","name":"[Full Moon] Full Moon Festival Gift Box Stage 2","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_1000_6/1;Event_Sandra_Glass_1line_8/1;Event_dungeoncount_8/4;Event_indunReset_Team_8/2;"}},{"itemId":10003118,"className":"Event_2009_Chursok_Gift_Box3","name":"[Full Moon] Full Moon Festival Gift Box Stage 3","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_1000_6/3;Moru_Event_Gold_5/3;Event_dungeoncount_8/6;Event_indunReset_Team_8/3;"}},{"itemId":10003119,"className":"Event_2009_Chursok_Gift_Box4","name":"[Full Moon] Full Moon Festival Gift Box Stage 4","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_1000_6/5;Event_Enchantchip_5/5;Event_2009_Elixir_Box_1/1;"}},{"itemId":10003120,"className":"Event_2009_Chursok_Gift_Box5","name":"[Full Moon] Full Moon Festival Gift Box Stage 5","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_8/1;misc_pvp_mine2/2000;Event_ChallengeModeReset_8/1;EVENT_SECOND_CHALLENG_8/1;"}},{"itemId":10003121,"className":"Event_2009_Elixir_Box_1","name":"[Full Moon] Event Elixir Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Drug_RedApple20_Event_1/10;Drug_BlueApple20_Event_1/10;"}},{"itemId":10003125,"className":"Event_2009_Chursok_Enchant_Jewel_Box","name":"[Event] Enchant Jewel Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Legend_Enchant_Jewel_450_2/3;event_Unique_Enchant_Jewel_440_1/10;"}},{"itemId":10003126,"className":"Event_2009_Chursok_Random_BOX","name":"[Full Moon] Full Moon Festival Random Box","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_2009_Chursok_Random_BOX"}},{"itemId":10003127,"className":"EVENT_2009_FISHING","name":"[Event] Fresh Watermelon","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_2009_FISHING"}},{"itemId":10003133,"className":"EVENT_2010_Halloween_Costume_Box_F","name":"[Event] Halloween Costume Random Box (Female)","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_2010_HALLOWEEN_COSTUME_F"}},{"itemId":10003134,"className":"EVENT_2010_Halloween_Costume_Box_M","name":"[Event] Halloween Costume Random Box (Male)","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_2010_HALLOWEEN_COSTUME_M"}},{"itemId":10003144,"className":"Event_Roulette_Vaivora_box","name":"[Event] Vaivora Unique Weapon Random Box","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT","strArg":"SWD04_126_1/1;TSP04_128_1/1;TSF04_129_1/1;DAG04_123_1/1;TSF04_129_2/1;STF04_127_1/1;MAC04_129_1/1;TMAC04_118_1/1;PST04_122_1/1;DAG04_123_2/1;DAG04_123_3/1;TBW04_126_1/1;SWD04_126_2/1;STF04_127_2/1;TSW04_126_1/1;SPR04_127_1/1;MUS04_118_1/1;TMAC04_118_2/1;SWD04_126_3/1;DAG04_123_4/1;BOW04_126_1/1;TSW04_126_2/1;TSP04_128_2/1;RAP04_124_1/1;PST04_122_2/1;CAN04_118_1/1;TSF04_129_3/1;TMAC04_118_3/1;STF04_127_3/1;SHD04_122_1/1;SPR04_127/1;TSF04_129/1;DAG04_123/1;PST04_122/1;RAP04_124/1;CAN04_118/1;MUS04_118/1;TRK04_111/1;SWD04_126/1;TSW04_126/1;STF04_127/1;TBW04_126/1;BOW04_126/1;MAC04_129/1;TMAC04_118/1;SHD04_122/1;SPR04_127/1;TSP04_128/1;DAG04_123/1;TSF04_129/1;PST04_122/1;RAP04_124/1;"}},{"itemId":10003164,"className":"Event_Grimoire_Weapon_Box_Wei_2","name":"[Event] Wastrel Unique Weapon Selection Box","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003165,"className":"Event_Grimoire_Weapon_Box_Asio_2","name":"[Event] Asio Unique Weapon Selection Box","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003166,"className":"Event_Unique_Weapon_Box","name":"[Event] Unique Weapon Selection Box","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003167,"className":"Event_MoringPonia_Weapon_Box","name":"[Event] Moringponia Unique Weapon Selection Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":100000}},{"itemId":10003168,"className":"Event_Misrus_Weapon_Box","name":"[Event] Misrus Unique Weapon Selection Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":100000}},{"itemId":10003172,"className":"EVENT_2010_Yuja_box","name":"[Event] Sweet Citron","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_2010_TWN_FISHING"}},{"itemId":10003173,"className":"EVENT_2010_Halloween_Attendance_Box","name":"[Halloween] Surprise Gift Box","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_2010_Halloween_Attendance_Box"}},{"itemId":10003177,"className":"Event_SeasonNewWorld_Reward_1","name":"[Attendance] Day 1 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"card_Xpupkit10_Event_1/2;Event_HiddenAbility_MasterPiece/1;malsuns_emotion80/3;Event_Ability_Point_Stone_1000_8/10;"}},{"itemId":10003178,"className":"Event_SeasonNewWorld_Reward_2","name":"[Attendance] Day 2 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ancient_CardBook_ALL/3;Event_repairPotion_8/25;Event_2010_Coin_Ticket_2/10;Event_Ability_Point_Stone_1000_8/5;Premium_boostToken03_event01_team/2;"}},{"itemId":10003179,"className":"Event_SeasonNewWorld_Reward_3","name":"[Attendance] Day 3 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Drung_Box_Elixer_Event_2/2;Event_ChallengeModeReset_11/3;Event_Ability_Point_Stone_10000_12/1;Event_Roulette_Master_box_1/1;RestartCristal/10;"}},{"itemId":10003180,"className":"Event_SeasonNewWorld_Reward_4","name":"[Attendance] Day 4 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Legend_Enchant_Jewel_450_1/2;Event_Sandra_Glass_6/2;Event_awakeningStone_8/5;Mic/10;"}},{"itemId":10003181,"className":"Event_SeasonNewWorld_Reward_5","name":"[Attendance] Day 5 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_2010_Coin_Ticket_2/5;Event_HiddenAbility_MasterPiece/2;Event_Drug_Looting_Potion_500_4/10;Moru_Ruby_event_10/2;Event_Ability_Point_Stone_1000_8/5;"}},{"itemId":10003182,"className":"Event_SeasonNewWorld_Reward_6","name":"[Attendance] Day 6 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Extract_kit_Gold_Team_8/5;Moru_Event_Gold_7/5;Mic/20;Event_Ability_Point_Stone_1000_8/5;"}},{"itemId":10003183,"className":"Event_SeasonNewWorld_Reward_7","name":"[Attendance] Day 7 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_1000_8/5;Event_gemExpStone09_5/3;Event_ChallengeModeReset_11/3;EVENT_Coupon_Reagent_Bottle_Expup_100_5/3;"}},{"itemId":10003184,"className":"Event_SeasonNewWorld_Reward_8","name":"[Attendance] Day 8 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_1000_8/5;Challenge_RepeatHealPotion/5;Event_Sandra_Glass_1line_10/3;Event_Roulette_Master_box_1/1;"}},{"itemId":10003185,"className":"Event_SeasonNewWorld_Reward_9","name":"[Attendance] Day 9 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_1000_8/5;Premium_boostToken03_event01_team/2;event_Unique_Enchant_Jewel_450_1/5;Event_2010_Coin_Ticket_2/10;"}},{"itemId":10003186,"className":"Event_SeasonNewWorld_Reward_10","name":"[Attendance] Day 10 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_12/1;Ancient_CardBook_ALL/3;Event_Master_Glass_8/5;Event_Mystic_Glass_8/10;"}},{"itemId":10003187,"className":"Event_SeasonNewWorld_Reward_11","name":"[Attendance] Day 11 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_12/2;Moru_Ruby_event_10/3;Event_ChallengeModeReset_11/3;Abrasive_430/10;"}},{"itemId":10003188,"className":"Event_SeasonNewWorld_Reward_12","name":"[Attendance] Day 12 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_1000_8/5;Event_RankReset_Point_Lv3_90d/1;Event_Skill_Ability_Reset_Package_14d_2/1;Event_HiddenAbility_MasterPiece/2;"}},{"itemId":10003189,"className":"Event_SeasonNewWorld_Reward_13","name":"[Attendance] Day 13 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_12/2;RestartCristal/10;Event_Enchantchip_7/10;"}},{"itemId":10003190,"className":"Event_SeasonNewWorld_Reward_14","name":"[Attendance] Day 14 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_1000_8/5;Abrasive_430/10;Event_awakeningStone_8/10;Event_ChallengeModeReset_11/3;"}},{"itemId":10003191,"className":"Event_SeasonNewWorld_Reward_15","name":"[Attendance] Day 15 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_1000_8/5;Event_repairPotion_8/25;Event_indunReset_Team_10/5;Drung_Box_Elixer_Event_2/2;"}},{"itemId":10003192,"className":"Event_SeasonNewWorld_Reward_16","name":"[Attendance] Day 16 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_1000_8/5;Event_2010_Coin_Ticket_2/10;RVR_BK_MEDAL_BORUTOS_KAPAS_1/4;card_Xpupkit10_Event_1/1;"}},{"itemId":10003193,"className":"Event_SeasonNewWorld_Reward_17","name":"[Attendance] Day 17 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_12/1;Event_gemExpStone09_5/3;Moru_Event_Gold_7/5;Event_HiddenAbility_MasterPiece/1;"}},{"itemId":10003194,"className":"Event_SeasonNewWorld_Reward_18","name":"[Attendance] Day 18 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_12/2;Event_Roulette_Master_box_1/1;Drung_Box_Elixer_Event_2/2;Moru_Ruby_event_10/2;"}},{"itemId":10003195,"className":"Event_SeasonNewWorld_Reward_19","name":"[Attendance] Day 19 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_1000_8/5;Premium_boostToken03_event01_team/2;Event_HiddenAbility_MasterPiece/2;Extract_kit_Gold_Team_8/5;"}},{"itemId":10003196,"className":"Event_SeasonNewWorld_Reward_20","name":"[Attendance] Day 20 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_1000_8/5;Event_2010_Coin_Ticket_2/5;Event_Drug_Looting_Potion_500_4/10;Drung_Box_Elixer_Event_2/2;"}},{"itemId":10003197,"className":"Event_SeasonNewWorld_Reward_21","name":"[Attendance] Day 21 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_1000_8/5;Event_Master_Glass_8/5;Ancient_CardBook_ALL/3;event_Unique_Enchant_Jewel_450_1/5;Event_Roulette_Master_box_1/1;"}},{"itemId":10003198,"className":"Event_SeasonNewWorld_Reward_22","name":"[Attendance] Day 22 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_1000_8/5;Mic/20;RVR_BK_MEDAL_BORUTOS_KAPAS_1/4;Challenge_RepeatHealPotion/5;Event_Sandra_Glass_1line_10/3;"}},{"itemId":10003199,"className":"Event_SeasonNewWorld_Reward_23","name":"[Attendance] Day 23 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_1000_8/5;RestartCristal/10;Event_Enchantchip_7/10;Event_2010_Coin_Ticket_2/10;"}},{"itemId":10003200,"className":"Event_SeasonNewWorld_Reward_24","name":"[Attendance] Day 24 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_12/1;Event_Sandra_Glass_1line_10/2;Event_Sandra_Glass_6/2;Event_ChallengeModeReset_11/3;"}},{"itemId":10003201,"className":"Event_SeasonNewWorld_Reward_25","name":"[Attendance] Day 25 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_12/2;malsuns_emotion83/3;Moru_Ruby_event_10/3;Event_Sandra_Glass_6/2;"}},{"itemId":10003202,"className":"Event_SeasonNewWorld_Reward_26","name":"[Attendance] Day 26 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_12/2;Event_2010_Coin_Ticket_2/3;Event_HiddenAbility_MasterPiece/1;Abrasive_430/5;"}},{"itemId":10003203,"className":"Event_SeasonNewWorld_Reward_27","name":"[Attendance] Day 27 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_12/2;Event_2010_Coin_Ticket_2/3;Event_HiddenAbility_MasterPiece/1;Event_Sandra_Glass_1line_10/4;Event_Roulette_Master_box_1/1;"}},{"itemId":10003204,"className":"Event_SeasonNewWorld_Reward_28","name":"[Attendance] Day 28 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_12/3;Event_HiddenAbility_MasterPiece/2;malsuns_emotion84/3;Drung_Box_Elixer_Event_2/2;RVR_BK_MEDAL_BORUTOS_KAPAS_1/2;"}},{"itemId":10003205,"className":"Event_SeasonNewWorld_Reward_29","name":"[Attendance] Day 1 Reward Box (Season Server)","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"card_Xpupkit10_Event_1/4;Event_HiddenAbility_MasterPiece/2;malsuns_emotion80/3;Event_Ability_Point_Stone_1000_8/20;Event_SeasonNewWorld_Achieve1/3;"}},{"itemId":10003206,"className":"Event_SeasonNewWorld_Reward_30","name":"[Attendance] Day 28 Reward Box (Season Server)","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_12/6;Event_HiddenAbility_MasterPiece/4;malsuns_emotion84/3;Drung_Box_Elixer_Event_2/4;RVR_BK_MEDAL_BORUTOS_KAPAS_1/4;"}},{"itemId":10003207,"className":"Event_SeasonNewWorld_Reward_31","name":"[Attendance] Day 25 Reward Box (Season Server)","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_12/4;malsuns_emotion83/3;Moru_Ruby_event_10/6;Event_Sandra_Glass_6/4;"}},{"itemId":10003209,"className":"Event_2009_Elixir_Box_2","name":"[Giltine] Event Elixir Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Drug_RedApple20_Event_3/10;Drug_BlueApple20_Event_3/10;"}},{"itemId":10003220,"className":"Event_2009_Elixir_Box_3","name":"[5th Anniversary] Event Elixir Box","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Drug_RedApple20_Event_4/10;Drug_BlueApple20_Event_4/10;"}},{"itemId":10003227,"className":"EVENT_2011_Random","name":"[Fishing] Unidentified bait bucket","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_2011_Random"}},{"itemId":10003230,"className":"Event_SeasonNewWorld_Reward_1_STM","name":"[Attendance] Day 1 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_HiddenAbility_MasterPiece/2;Event_Ability_Point_Stone_10000_201/2;malsuns_emotion80/3;"}},{"itemId":10003231,"className":"Event_SeasonNewWorld_Reward_2_STM","name":"[Attendance] Day 2 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_awakeningStone_201/5;Event_Enchantchip_201/5;Ancient_CardBook_ALL/3;"}},{"itemId":10003232,"className":"Event_SeasonNewWorld_Reward_3_STM","name":"[Attendance] Day 3 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Event_Gold_201/5;Moru_Ruby_event_201/2;Event_Ability_Point_Stone_1000_201/5;"}},{"itemId":10003233,"className":"Event_SeasonNewWorld_Reward_4_STM","name":"[Attendance] Day 4 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_2011_Coin_Ticket_200/5;Event_gemExpStone09_201/3;RVR_BK_MEDAL_BORUTOS_KAPAS_1/2;"}},{"itemId":10003234,"className":"Event_SeasonNewWorld_Reward_5_STM","name":"[Attendance] Day 5 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Mic/20;RestartCristal/10;Premium_boostToken03_event01_team/2;"}},{"itemId":10003235,"className":"Event_SeasonNewWorld_Reward_6_STM","name":"[Attendance] Day 6 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Master_Glass_201/10;Event_Sandra_Glass_1line_201/5;Event_repairPotion_201/10;"}},{"itemId":10003236,"className":"Event_SeasonNewWorld_Reward_7_STM","name":"[Attendance] Day 7 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Legend_Enchant_Jewel_450_200/2;event_Unique_Enchant_Jewel_440_200/5;Event_Drug_Looting_Potion_500_201/10;"}},{"itemId":10003237,"className":"Event_SeasonNewWorld_Reward_8_STM","name":"[Attendance] Day 8 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_1000_201/5;Event_ChallengeModeReset_201/3;Extract_kit_Gold_Team_201/5;"}},{"itemId":10003238,"className":"Event_SeasonNewWorld_Reward_9_STM","name":"[Attendance] Day 9 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_HiddenAbility_MasterPiece/2;Event_2011_Coin_Ticket_200/5;Drung_Box_Elixer_Event_2/1;"}},{"itemId":10003239,"className":"Event_SeasonNewWorld_Reward_10_STM","name":"[Attendance] Day 10 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_awakeningStone_201/5;Event_Enchantchip_201/5;Ancient_CardBook_ALL/3;"}},{"itemId":10003240,"className":"Event_SeasonNewWorld_Reward_11_STM","name":"[Attendance] Day 11 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_RankReset_Point_Lv3_90d/1;RVR_BK_MEDAL_BORUTOS_KAPAS_1/2;Event_Ability_Point_Stone_1000_201/5;"}},{"itemId":10003241,"className":"Event_SeasonNewWorld_Reward_12_STM","name":"[Attendance] Day 12 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Event_Gold_201/5;Moru_Ruby_event_201/2;event_Unique_Enchant_Jewel_440_200/5;"}},{"itemId":10003242,"className":"Event_SeasonNewWorld_Reward_13_STM","name":"[Attendance] Day 13 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_2011_Coin_Ticket_200/5;Event_gemExpStone09_201/3;malsuns_emotion83/3;"}},{"itemId":10003243,"className":"Event_SeasonNewWorld_Reward_14_STM","name":"[Attendance] Day 14 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Master_Glass_201/10;Event_Sandra_Glass_1line_201/5;Event_repairPotion_201/10;"}},{"itemId":10003244,"className":"Event_SeasonNewWorld_Reward_15_STM","name":"[Attendance] Day 15 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_ChallengeModeReset_201/3;Extract_kit_Gold_Team_201/5;Event_Legend_Enchant_Jewel_450_200/2;"}},{"itemId":10003245,"className":"Event_SeasonNewWorld_Reward_16_STM","name":"[Attendance] Day 16 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Drug_Looting_Potion_500_201/10;Event_Ability_Point_Stone_10000_201/2;Premium_boostToken03_event01_team/2;"}},{"itemId":10003246,"className":"Event_SeasonNewWorld_Reward_17_STM","name":"[Attendance] Day 17 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_HiddenAbility_MasterPiece/2;Event_2011_Coin_Ticket_200/5;Drung_Box_Elixer_Event_2/1;"}},{"itemId":10003247,"className":"Event_SeasonNewWorld_Reward_18_STM","name":"[Attendance] Day 18 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_awakeningStone_201/5;Event_Enchantchip_201/5;Ancient_CardBook_ALL/3;"}},{"itemId":10003248,"className":"Event_SeasonNewWorld_Reward_19_STM","name":"[Attendance] Day 19 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Mic/20;RestartCristal/10;RVR_BK_MEDAL_BORUTOS_KAPAS_1/2;"}},{"itemId":10003249,"className":"Event_SeasonNewWorld_Reward_20_STM","name":"[Attendance] Day 20 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_1000_201/5;Event_ChallengeModeReset_201/3;Event_repairPotion_201/10;"}},{"itemId":10003250,"className":"Event_SeasonNewWorld_Reward_21_STM","name":"[Attendance] Day 21 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_HiddenAbility_MasterPiece/2;Event_Ability_Point_Stone_10000_201/2;Event_2011_Coin_Ticket_200/5;malsuns_emotion84/3;"}},{"itemId":10003251,"className":"Event_SeasonNewWorld_Reward_22_STM","name":"[Attendance] Day 1 Reward Box (Season Server)","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_HiddenAbility_MasterPiece/4;Event_Ability_Point_Stone_10000_201/4;malsuns_emotion80/3;Event_SeasonNewWorld_Achieve1/3;"}},{"itemId":10003258,"className":"Event_JPN_1Year_Reward_1","name":"[1st Anniversary] Day 1 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_HiddenAbility_MasterPiece/4;Event_Ability_Point_Stone_10000_203/5;Drung_Box_Elixer_Event_2/3;"}},{"itemId":10003259,"className":"Event_JPN_1Year_Reward_2","name":"[1st Anniversary] Day 2 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_awakeningStone_202/10;Event_Enchantchip_202/10;misc_gemExpStone10_Ev_200/3;"}},{"itemId":10003260,"className":"Event_JPN_1Year_Reward_3","name":"[1st Anniversary] Day 3 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Event_Gold_202/5;Moru_Ruby_event_203/3;Extract_kit_Gold_Team_202/10;"}},{"itemId":10003261,"className":"Event_JPN_1Year_Reward_4","name":"[1st Anniversary] Day 4 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Master_Glass_202/10;Event_Sandra_Glass_1line_202/5;Event_Sandra_Glass_202/3;"}},{"itemId":10003262,"className":"Event_JPN_1Year_Reward_5","name":"[1st Anniversary] Day 5 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"RVR_BK_MEDAL_BORUTOS_KAPAS_1/5;Mic/20;RestartCristal/10;"}},{"itemId":10003263,"className":"Event_JPN_1Year_Reward_6","name":"[1st Anniversary] Day 6 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_2011_Coin_Ticket_202/10;Event_ChallengeModeReset_203/3;Event_repairPotion_202/10;"}},{"itemId":10003264,"className":"Event_JPN_1Year_Reward_7","name":"[1st Anniversary] Day 7 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Legend_Enchant_Jewel_450_200/5;event_Unique_Enchant_Jewel_440_200/10;Ancient_CardBook_ALL/5;"}},{"itemId":10003265,"className":"Event_JPN_1Year_Reward_8","name":"[1st Anniversary] Day 8 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_RankReset_Point_Lv3_90d/2;Premium_boostToken03_event01_team/3;Event_2011_Coin_Ticket_202/5;"}},{"itemId":10003266,"className":"Event_JPN_1Year_Reward_9","name":"[1st Anniversary] Day 9 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_HiddenAbility_MasterPiece/2;Event_Ability_Point_Stone_10000_203/3;Drung_Box_Elixer_Event_2/2;"}},{"itemId":10003267,"className":"Event_JPN_1Year_Reward_10","name":"[1st Anniversary] Day 10 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_awakeningStone_202/10;Event_Enchantchip_202/10;misc_gemExpStone10_Ev_200/3;"}},{"itemId":10003268,"className":"Event_JPN_1Year_Reward_11","name":"[1st Anniversary] Day 11 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Event_Gold_202/5;Moru_Ruby_event_203/3;Extract_kit_Gold_Team_202/10;"}},{"itemId":10003269,"className":"Event_JPN_1Year_Reward_12","name":"[1st Anniversary] Day 12 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Master_Glass_202/10;Event_Sandra_Glass_1line_202/5;Event_Sandra_Glass_202/3;"}},{"itemId":10003270,"className":"Event_JPN_1Year_Reward_13","name":"[1st Anniversary] Day 13 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_2011_Coin_Ticket_202/10;Event_ChallengeModeReset_203/3;Event_repairPotion_202/10;"}},{"itemId":10003271,"className":"Event_JPN_1Year_Reward_14","name":"[1st Anniversary] Day 14 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_HiddenAbility_MasterPiece/2;Event_Ability_Point_Stone_10000_203/3;Drung_Box_Elixer_Event_2/2;"}},{"itemId":10003276,"className":"Event_SandraGlass_Box_2","name":"[Yak Mambo] Sandra's Magnifier Box ","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Sandra_Glass_8/5;Event_Sandra_Glass_1line_14/5;"}},{"itemId":10003278,"className":"Event_R_SandraGlass_Box_1","name":"[Event] Sandra's Magnifier Recipe Box ","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"R_Premium_Sandra_Glass_MAX_4line/1;R_Premium_Sandra_Glass_MAX_6line/1;"}},{"itemId":10003284,"className":"EVENT_2012_Transcend_Scroll_Box_1","name":"[Yak Mambo] Transcendence Scroll Random Box","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_2012_Transcend_Scroll_Box_1"}},{"itemId":10003294,"className":"EVENT_2011_1year_JPN_box","name":"[Event] Maru's Suprise Box","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_2011_1year_JPN"}},{"itemId":10003298,"className":"Cupole_Vaivora_lv4_selectbox","name":"[Kupole] Lv4 Vaivora Weapon Selection Box","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003299,"className":"Cupole_GoddessArmor_lv3_setbox","name":"[Kupole] Lv3 Goddess'/Demon God's Unique Armor Set Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP12_EVIL_TOP_Lv3/1;EP12_EVIL_LEG_Lv3/1;EP12_EVIL_FOOT_Lv3/1;EP12_EVIL_HAND_Lv3/1;EP12_Vakarine_TOP_Lv3/1;EP12_Vakarine_LEG_Lv3/1;EP12_Vakarine_FOOT_Lv3/1;EP12_Vakarine_HAND_Lv3/1;EP12_Zemyna_TOP_Lv3/1;EP12_Zemyna_LEG_Lv3/1;EP12_Zemyna_FOOT_Lv3/1;EP12_Zemyna_HAND_Lv3/1;EP12_Dalia_TOP_Lv3/1;EP12_Dalia_LEG_Lv3/1;EP12_Dalia_FOOT_Lv3/1;EP12_Dalia_HAND_Lv3/1;EP12_EVIL_SUMMONNER_TOP_Lv3/1;EP12_EVIL_SUMMONNER_LEG_Lv3/1;EP12_EVIL_SUMMONNER_FOOT_Lv3/1;EP12_EVIL_SUMMONNER_HAND_Lv3/1;EP12_Gabija_TOP_Lv3/1;EP12_Gabija_LEG_Lv3/1;EP12_Gabija_FOOT_Lv3/1;EP12_Gabija_HAND_Lv3/1;EP12_Austeja_TOP_Lv3/1;EP12_Austeja_LEG_Lv3/1;EP12_Austeja_FOOT_Lv3/1;EP12_Austeja_HAND_Lv3/1;EP12_installation_TOP_Lv3/1;EP12_installation_LEG_Lv3/1;EP12_installation_FOOT_Lv3/1;EP12_installation_HAND_Lv3/1;"}},{"itemId":10003310,"className":"Event_SandraGlass_Box_3","name":"[Supply] Sandra's Magnifier Box","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Sandra_Glass_9/5;Event_Sandra_Glass_1line_15/5;"}},{"itemId":10003313,"className":"Event_SandraGlass_Box_4","name":"[2021] Sandra's Magnifier Large Box","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Sandra_Glass_10/15;Event_Sandra_Glass_1line_16/30;"}},{"itemId":10003318,"className":"Event_New_Year_box_1_STM","name":"[Event] Day 1 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_HiddenAbility_MasterPiece/2;Mic/20;event_Unique_Enchant_Jewel_440_200/5;"}},{"itemId":10003319,"className":"Event_New_Year_box_2_STM","name":"[Event] Day 2 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"RestartCristal/10;Ancient_CardBook_ALL/3;Drung_Box_Elixer_Event_2/3;"}},{"itemId":10003320,"className":"Event_New_Year_box_3_STM","name":"[Event] Day 3 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Legend_Enchant_Jewel_450_200/2;Event_RankReset_Point_Lv3_90d/1;Premium_boostToken03_event01_team/2;"}},{"itemId":10003321,"className":"Event_New_Year_box_4_STM","name":"[Event] Day 4 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Roulette_Master_box_1/1;Event_dungeoncount_14/20;Event_indunReset_Team_13/10;"}},{"itemId":10003322,"className":"Event_New_Year_box_5_STM","name":"[Event] Day 5 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ancient_CardBook_ALL/5;Event_Roulette_Master_box_1/1;RVR_BK_MEDAL_BORUTOS_KAPAS_1/4;Ability_Point_Stone_10000/2;"}},{"itemId":10003323,"className":"Event_New_Year_box_6_STM","name":"[Event] Day 6 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Roulette_Master_box_1/1;Premium_boostToken03_event01_team/3;Event_HiddenAbility_MasterPiece/2;Premium_Sandra_Glass_14d/2;"}},{"itemId":10003324,"className":"Event_New_Year_box_7_STM","name":"[Event] Day 7 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Mic/20;RestartCristal/10;Event_RankReset_Point_Lv3_90d/2;"}},{"itemId":10003327,"className":"Event_New_Year_box_1_JPN","name":"[Event] Day 1 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_HiddenAbility_MasterPiece/2;Mic/20;Coupon_Reagent_Bottle_Expup_100_Daily/2;"}},{"itemId":10003328,"className":"Event_New_Year_box_2_JPN","name":"[Event] Day 2 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"RestartCristal/10;Ancient_CardBook_ALL/3;Drung_Box_Elixer_Event_2/3;"}},{"itemId":10003329,"className":"Event_New_Year_box_3_JPN","name":"[Event] Day 3 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Legend_Enchant_Jewel_450_200/2;Coupon_Reagent_Bottle_Expup_100_Daily/2;Premium_boostToken03_event01_team/2;Event_Roulette_Master_box_1/1;"}},{"itemId":10003330,"className":"Event_New_Year_box_4_JPN","name":"[Event] Day 4 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Roulette_Master_box_1/1;Event_dungeoncount_14/20;Event_indunReset_Team_13/10;"}},{"itemId":10003331,"className":"Event_New_Year_box_5_JPN","name":"[Event] Day 5 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ancient_CardBook_ALL/3;Event_Roulette_Master_box_1/1;RVR_BK_MEDAL_BORUTOS_KAPAS_1/4;"}},{"itemId":10003332,"className":"Event_New_Year_box_6_JPN","name":"[Event] Day 6 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_boostToken03_event01_team/3;Event_HiddenAbility_MasterPiece/2;Event_Legend_Enchant_Jewel_450_200/2;"}},{"itemId":10003333,"className":"Event_New_Year_box_7_JPN","name":"[Event] Day 7 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Mic/20;RestartCristal/10;Event_RankReset_Point_Lv3_90d/2;"}},{"itemId":10003349,"className":"Event_Unique_Weapon_Box_2","name":"[Event] Unique Weapon Selection Box","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003350,"className":"Event_MoringPonia_Weapon_Box_2","name":"[Event] Moringponia Unique Weapon Selection Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":100000}},{"itemId":10003351,"className":"Event_Misrus_Weapon_Box_2","name":"[Event] Misrus Unique Weapon Selection Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":100000}},{"itemId":10003356,"className":"EVENT_2103_Reward_Box_S","name":"[Lovey Dovey] Gift Box - S","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_2103_Reward_Box_S"}},{"itemId":10003357,"className":"EVENT_2103_Reward_Box_A","name":"[Lovey Dovey] Gift Box - A","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_2103_Reward_Box_A"}},{"itemId":10003358,"className":"EVENT_2103_Reward_Box_B","name":"[Lovey Dovey] Gift Box - B","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_2103_Reward_Box_B"}},{"itemId":10003375,"className":"Event_Gacha_Relic_Gem_Goddess","name":"[Event] Goddess Res Sacrae Gem Box","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT","strArg":"Gem_Relic_Cyan_G_001/1;Gem_Relic_Cyan_G_002/1;Gem_Relic_Magenta_G_001/1;Gem_Relic_Magenta_G_002/1;Gem_Relic_Magenta_G_003/1;Gem_Relic_Black_G_001/1;Gem_Relic_Black_G_002/1;Gem_Relic_Black_G_003/1;Gem_Relic_Black_G_004/1;Gem_Relic_Black_G_005/1;Gem_Relic_Black_G_006/1;Gem_Relic_Black_G_007/1;Gem_Relic_Black_G_008/1;Gem_Relic_Black_G_009/1;Gem_Relic_Black_G_010/1;Gem_Relic_Black_G_011/1;Gem_Relic_Black_G_012/1;Gem_Relic_Black_G_013/1;Gem_Relic_Black_G_014/1;Gem_Relic_Black_G_015/1;Gem_Relic_Black_G_016/1;Gem_Relic_Black_G_017/1;Gem_Relic_Black_G_018/1;Gem_Relic_Black_G_019/1;Gem_Relic_Black_G_020/1;Gem_Relic_Black_G_021/1;Gem_Relic_Black_G_022/1;Gem_Relic_Black_G_023/1;Gem_Relic_Black_G_024/1;Gem_Relic_Black_G_025/1;"}},{"itemId":10003417,"className":"Event_SelectBox_2105_treee_planting_box","name":"I♥TOS Costume Selection Box (Cannot Trade)","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10003427,"className":"Event_SandraGlass_Box_5","name":"[FLEX BOX] Sandra's Magnifier Large Box","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Sandra_Glass_19/15;Event_Sandra_Glass_1line_22/30;"}},{"itemId":10003433,"className":"Event_Reward_Attendance_box_1","name":"[Attendance] Day 1 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"card_Xpupkit10_Event_205/2;Event_HiddenAbility_MasterPiece/1;Event_Ability_Point_Stone_1000_205/10;"}},{"itemId":10003434,"className":"Event_Reward_Attendance_box_2","name":"[Attendance] Day 2 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ancient_CardBook_ALL/3;Event_repairPotion_205/25;Event_Coin_Ticket_1000_205/10;Event_Ability_Point_Stone_1000_205/5;"}},{"itemId":10003435,"className":"Event_Reward_Attendance_box_3","name":"[Attendance] Day 3 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Drung_Box_Elixer_Event_2/2;RestartCristal/10;Event_ChallengeModeReset_205/3;Event_Ability_Point_Stone_10000_205/1;"}},{"itemId":10003436,"className":"Event_Reward_Attendance_box_4","name":"[Attendance] Day 4 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Legend_Enchant_Jewel_450_1/2;Event_Sandra_Glass_205/2;Event_awakeningStone_205/5;Mic/10;"}},{"itemId":10003437,"className":"Event_Reward_Attendance_box_5","name":"[Attendance] Day 5 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Coin_Ticket_1000_205/5;Event_Drug_Looting_Potion_500_205/10;Moru_Ruby_event_205/2;Event_Ability_Point_Stone_1000_205/5;"}},{"itemId":10003438,"className":"Event_Reward_Attendance_box_6","name":"[Attendance] Day 6 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Extract_kit_Gold_Team_205/5;Moru_Event_Gold_205/5;Mic/20;Event_Ability_Point_Stone_1000_205/5;"}},{"itemId":10003439,"className":"Event_Reward_Attendance_box_7","name":"[Attendance] Day 7 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_gemExpStone09_205/3;Event_ChallengeModeReset_205/3;EVENT_Coupon_Reagent_Bottle_Expup_100_205/3;Event_Ability_Point_Stone_1000_205/5;"}},{"itemId":10003440,"className":"Event_Reward_Attendance_box_8","name":"[Attendance] Day 8 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Coin_Ticket_1000_205/3;Event_Sandra_Glass_1line_205/3;Event_Ability_Point_Stone_1000_205/5;"}},{"itemId":10003441,"className":"Event_Reward_Attendance_box_9","name":"[Attendance] Day 9 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"event_Unique_Enchant_Jewel_450_1/5;Event_Coin_Ticket_1000_205/10;Event_Ability_Point_Stone_1000_205/5;"}},{"itemId":10003442,"className":"Event_Reward_Attendance_box_10","name":"[Attendance] Day 10 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ancient_CardBook_ALL/3;Event_Master_Glass_205/5;Event_Mystic_Glass_205/10;Event_Ability_Point_Stone_10000_205/1;"}},{"itemId":10003443,"className":"Event_Reward_Attendance_box_11","name":"[Attendance] Day 11 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Ruby_event_205/3;Event_Ability_Point_Stone_10000_205/2;Event_ChallengeModeReset_205/3;Abrasive_430/10;"}},{"itemId":10003444,"className":"Event_Reward_Attendance_box_12","name":"[Attendance] Day 12 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_RankReset_Point_Lv3_90d/1;Event_Skill_Ability_Reset_Package_14d_2/1;Event_HiddenAbility_MasterPiece/2;Event_Ability_Point_Stone_1000_205/5;"}},{"itemId":10003445,"className":"Event_Reward_Attendance_box_13","name":"[Attendance] Day 13 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Enchantchip_205/10;RestartCristal/10;Event_Ability_Point_Stone_10000_205/2;"}},{"itemId":10003446,"className":"Event_Reward_Attendance_box_14","name":"[Attendance] Day 14 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Abrasive_430/10;Event_awakeningStone_205/10;Event_ChallengeModeReset_205/3;Event_Ability_Point_Stone_1000_205/5;"}},{"itemId":10003447,"className":"Event_Reward_Attendance_box_15","name":"[Attendance] Day 15 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_repairPotion_205/25;Event_indunReset_Team_205/5;Drung_Box_Elixer_Event_2/2;Event_Ability_Point_Stone_1000_205/5;"}},{"itemId":10003448,"className":"Event_Reward_Attendance_box_16","name":"[Attendance] Day 16 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Coin_Ticket_1000_205/10;card_Xpupkit10_Event_205/1;Event_Ability_Point_Stone_1000_205/5;"}},{"itemId":10003449,"className":"Event_Reward_Attendance_box_17","name":"[Attendance] Day 17 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_gemExpStone09_205/3;Moru_Event_Gold_205/5;Event_HiddenAbility_MasterPiece/1;Event_Ability_Point_Stone_10000_205/1;"}},{"itemId":10003450,"className":"Event_Reward_Attendance_box_18","name":"[Attendance] Day 18 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_205/2;Drung_Box_Elixer_Event_2/2;Moru_Ruby_event_205/2;Event_HiddenAbility_MasterPiece/2;"}},{"itemId":10003451,"className":"Event_Reward_Attendance_box_19","name":"[Attendance] Day 19 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_HiddenAbility_MasterPiece/2;Extract_kit_Gold_Team_205/5;Event_Ability_Point_Stone_1000_205/5;"}},{"itemId":10003452,"className":"Event_Reward_Attendance_box_20","name":"[Attendance] Day 20 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_1000_205/5;Event_Coin_Ticket_1000_205/5;Event_Drug_Looting_Potion_500_205/10;Drung_Box_Elixer_Event_2/2;"}},{"itemId":10003453,"className":"Event_Reward_Attendance_box_21","name":"[Attendance] Day 21 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Master_Glass_205/5;Ancient_CardBook_ALL/3;Event_HiddenAbility_MasterPiece/1;Event_Ability_Point_Stone_1000_205/5;"}},{"itemId":10003454,"className":"Event_Reward_Attendance_box_22","name":"[Attendance] Day 22 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Mic/20;Event_Ability_Point_Stone_1000_205/5;Event_Sandra_Glass_1line_205/3;"}},{"itemId":10003455,"className":"Event_Reward_Attendance_box_23","name":"[Attendance] Day 23 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"RestartCristal/10;Event_Ability_Point_Stone_1000_205/5;Event_Enchantchip_205/10;Event_Coin_Ticket_1000_205/10;"}},{"itemId":10003456,"className":"Event_Reward_Attendance_box_24","name":"[Attendance] Day 24 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_205/1;Event_Sandra_Glass_205/2;Event_ChallengeModeReset_205/3;Event_Sandra_Glass_1line_205/5;"}},{"itemId":10003457,"className":"Event_Reward_Attendance_box_25","name":"[Attendance] Day 25 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_205/2;Moru_Ruby_event_205/3;Event_Sandra_Glass_205/4;"}},{"itemId":10003458,"className":"Event_Reward_Attendance_box_26","name":"[Attendance] Day 26 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_205/2;Event_Coin_Ticket_1000_205/3;Event_HiddenAbility_MasterPiece/1;Abrasive_430/5;"}},{"itemId":10003459,"className":"Event_Reward_Attendance_box_27","name":"[Attendance] Day 27 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_205/2;Event_Coin_Ticket_1000_205/3;Event_HiddenAbility_MasterPiece/1;Event_Sandra_Glass_1line_205/4;"}},{"itemId":10003460,"className":"Event_Reward_Attendance_box_28","name":"[Attendance] Day 28 Reward Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_205/3;Event_HiddenAbility_MasterPiece/2;Drung_Box_Elixer_Event_2/2;"}},{"itemId":10003477,"className":"Event_Attendance_GR_Box_1","name":"[Event] Boost Box - 1st","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_boostToken06/1;Event_Adventure_Reward_Seed_30/5;Event_indunReset_Team_30/3;Event_dungeoncount_30/8;"}},{"itemId":10003478,"className":"Event_Attendance_GR_Box_2","name":"[Event] Boost Box - 2nd","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Adventure_Reward_Seed_30/5;Event_ChallengeModeReset_30/3;Event_dungeoncount_30/2;"}},{"itemId":10003479,"className":"Event_Attendance_GR_Box_3","name":"[Event] Boost Box - 3rd","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Adventure_Reward_Seed_30/5;Event_indunReset_Team_30/3;Event_dungeoncount_30/8;"}},{"itemId":10003480,"className":"Event_Attendance_GR_Box_4","name":"[Event] Boost Box - 4th","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Adventure_Reward_Seed_30/5;Event_ChallengeModeReset_30/3;Event_dungeoncount_30/2;"}},{"itemId":10003481,"className":"Event_Attendance_GR_Box_5","name":"[Event] Boost Box - 5th","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Adventure_Reward_Seed_30/5;Event_indunReset_Team_30/3;Event_dungeoncount_30/8;"}},{"itemId":10003482,"className":"Event_Attendance_GR_Box_6","name":"[Event] Boost Box - 6th","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Adventure_Reward_Seed_30/5;Event_ChallengeModeReset_30/3;Event_dungeoncount_30/2;"}},{"itemId":10003483,"className":"Event_Attendance_GR_Box_7","name":"[Event] Boost Box - 7th","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Adventure_Reward_Seed_30/5;Event_indunReset_Team_30/3;Event_dungeoncount_30/8;"}},{"itemId":10003491,"className":"EVENT_2107_WaterMelon","name":"[Watermelon Fishing] Fresh Watermelon","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_2107_WaterMelon"}},{"itemId":10003499,"className":"Event_Vasilissa_Armor_TxBox_Plate","name":"[Event] 10TRA Vasilisa Armor Set Box - Plate","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_RAID_PLATE_TOP/1/Transcend/10;EP13_RAID_PLATE_LEG/1/Transcend/10;EP13_RAID_PLATE_FOOT/1/Transcend/10;EP13_RAID_PLATE_HAND/1/Transcend/10;"}},{"itemId":10003500,"className":"Event_Vasilissa_Armor_TxBox_Leather","name":"[Event] 10TRA Vasilisa Armor Set Box - Leather","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_RAID_LEATHER_TOP/1/Transcend/10;EP13_RAID_LEATHER_LEG/1/Transcend/10;EP13_RAID_LEATHER_FOOT/1/Transcend/10;EP13_RAID_LEATHER_HAND/1/Transcend/10;"}},{"itemId":10003501,"className":"Event_Vasilissa_Armor_TxBox_Cloth","name":"[Event] 10TRA Vasilisa Armor Set Box - Cloth","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_RAID_CLOTH_TOP/1/Transcend/10;EP13_RAID_CLOTH_LEG/1/Transcend/10;EP13_RAID_CLOTH_FOOT/1/Transcend/10;EP13_RAID_CLOTH_HAND/1/Transcend/10;"}},{"itemId":10003510,"className":"Event_2109_Wish_Box","name":"[Rabbit] Full Moon Wish Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_2109_Wish_Box"}},{"itemId":10003512,"className":"Event_2109_box_1","name":"Harvest New/Return Support Box (Day 1)","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"20Season_Disnai_Weapon_box/4;20Season_Disnai_Aromor_box/4;Premium_boostToken03/5;Event_Ability_Point_Stone_10000_33/10;Event_2107_EP_Clear_Box_9/1;"}},{"itemId":10003513,"className":"Event_2109_box_2","name":"Harvest New/Return Support Box (Day 2)","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"HiddenAbility_MasterPiece_Fragment/30;AbillityArts_Box_Total/4;Event_Ability_Point_Stone_10000_33/10;Event_Dragon_Ac_Box_Total/1;Event_Arborday_Ark_SelectBox_LV3/1;"}},{"itemId":10003514,"className":"Event_2109_box_3","name":"Harvest New/Return Support Box (Day 3)","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Relic_exp_token/200;Relic_exp_refine_conversion_Event/20;Event_Ability_Point_Stone_10000_33/10;reputation_relief_ep13_Event_All/100;"}},{"itemId":10003515,"className":"Event_2109_box_4","name":"Harvest New/Return Support Box (Day 4)","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"SelectBox_Goddess_MainWeapon_25/2;SelectBox_Goddess_SubWeapon_25/2;Event_Vasilissa_Armor_Select_Category_2/1;"}},{"itemId":10003516,"className":"Event_2109_box_5","name":"Harvest New/Return Support Box (Day 5)","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_vasilisa_NoTrade/120;GabijaCertificateCoin_1000p/15;misc_Enchant_460_NoTrade/10;vibora_Vision_Select_Box_NoTrade/2;"}},{"itemId":10003519,"className":"Event_Vasilissa_Armor_TxBox_Plate_2","name":"[Event] Vasilisa Armor Set Box - Plate","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_RAID_PLATE_TOP/1;EP13_RAID_PLATE_LEG/1;EP13_RAID_PLATE_FOOT/1;EP13_RAID_PLATE_HAND/1;"}},{"itemId":10003520,"className":"Event_Vasilissa_Armor_TxBox_Leather_2","name":"[Event] Vasilisa Armor Set Box - Leather","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_RAID_LEATHER_TOP/1;EP13_RAID_LEATHER_LEG/1;EP13_RAID_LEATHER_FOOT/1;EP13_RAID_LEATHER_HAND/1;"}},{"itemId":10003521,"className":"Event_Vasilissa_Armor_TxBox_Cloth_2","name":"[Event] Vasilisa Armor Set Box - Cloth","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_RAID_CLOTH_TOP/1;EP13_RAID_CLOTH_LEG/1;EP13_RAID_CLOTH_FOOT/1;EP13_RAID_CLOTH_HAND/1;"}},{"itemId":10003527,"className":"Event_Attendance_Support_Box_1","name":"[Event] Settlement Support Box - 1","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Jumping_expCard_460Lv/1;Event_JobexpCard_BOX/1;Premium_Sandra_Glass_460_NoTrade/25;Premium_Sandra_Glass_1line_460_NoTrade/55;Premium_Mystic_Glass_460_NoTrade/25;Coupon_ItemRandomReset2/400;Ability_Point_Stone_10000/50;Free_Item_RandomOption/8;"}},{"itemId":10003528,"className":"Event_Attendance_Support_Box_2","name":"[Event] Settlement Support Box - 2","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_Sandra_Glass_460_NoTrade/25;Premium_Sandra_Glass_1line_460_NoTrade/55;Premium_Mystic_Glass_460_NoTrade/25;Legend_ExpPotion_2_460_complete/48/ItemExpString/1250000000;Event_Dragon_Ac_Box_Total/1;misc_vasilisa_NoTrade/40;HiddenAbility_MasterPiece_Fragment/30;GabijaCertificateCoin_10000p/1;Event_Coin_Ticket_5000/5;"}},{"itemId":10003529,"className":"Event_Attendance_Support_Box_3","name":"[Event] Settlement Support Box - 3","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_Sandra_Glass_460_NoTrade/25;Premium_Sandra_Glass_1line_460_NoTrade/55;Premium_Mystic_Glass_460_NoTrade/25;Event_Coin_Ticket_5000/5;misc_vasilisa_NoTrade/40;GabijaCertificateCoin_5000p/1;Ability_Point_Stone_10000/50;"}},{"itemId":10003530,"className":"Event_Attendance_Support_Box_4","name":"[Event] Settlement Support Box - 4","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_vasilisa_NoTrade/40;misc_Enchant_460_NoTrade/20;HiddenAbility_MasterPiece_Fragment/30;Coupon_ItemRandomReset2/400;Event_MasterCard_box_NoTrade_1/6;Event_MasterCard_box_NoTrade_2/6;"}},{"itemId":10003531,"className":"Event_Attendance_Support_Box_5","name":"[Event] Settlement Support Box - 5","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_Enchant_460_NoTrade/20;Ability_Point_Stone_10000/50;Event_Coin_Ticket_5000/5;Event_indunReset_Team_30/10;Event_dungeoncount_30/20;"}},{"itemId":10003532,"className":"Event_Attendance_Support_Box_6","name":"[Event] Settlement Support Box - 6","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_Enchant_460_NoTrade/20;HiddenAbility_MasterPiece_Fragment/30;Coupon_ItemRandomReset2/400;Event_ChallengeModeReset_30/20;GabijaCertificateCoin_50000p/4;misc_pvp_mine2_NotLimit_50000/4;"}},{"itemId":10003533,"className":"Event_Attendance_Support_Box_7","name":"[Event] Settlement Support Box - 7","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ability_Point_Stone_10000/50;misc_Engrave_460_NoTrade/20;Event_Coin_Ticket_5000/5;ChallengeExpertModeCountUp_Ev_1/10;"}},{"itemId":10003534,"className":"Event_Attendance_Support_Box_8","name":"[Event] Settlement Support Box - 8","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"HiddenAbility_MasterPiece_Fragment/30;misc_Engrave_460_NoTrade/20;Coupon_ItemRandomReset2/400;reputation_relief_ep13_Event_All/50;"}},{"itemId":10003535,"className":"Event_Attendance_Support_Box_9","name":"[Event] Settlement Support Box - 9","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ability_Point_Stone_10000/50;HiddenAbility_MasterPiece_Fragment/30;misc_Engrave_460_NoTrade/20;Event_Coin_Ticket_5000/5;Ticket_Giltine_Auto_Premium_Ev_1/5;ChallengeExpertModeCountUp_Ev_1/10;"}},{"itemId":10003536,"className":"Event_Attendance_Support_Box_10","name":"[Event] Settlement Support Box - 10","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"HiddenAbility_MasterPiece_Fragment/30;misc_Engrave_460_NoTrade/20;Coupon_ItemRandomReset2/400;reputation_relief_ep13_Event_All/50;Ticket_Mythic_Auto_Event34/10;"}},{"itemId":10003537,"className":"Event_Attendance_Support_Box_11","name":"[Event] Settlement Support Box - 11","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"HiddenAbility_MasterPiece_Fragment/30;misc_Engrave_460_NoTrade/20;Event_Coin_Ticket_5000/5;Relic_exp_token_refine/20;Ticket_Mythic_Auto_Hard_Ev_1/5;"}},{"itemId":10003538,"className":"Event_Attendance_Support_Box_12","name":"[Event] Settlement Support Box - 12","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"HiddenAbility_MasterPiece_Fragment/30;misc_Engrave_460_NoTrade/20;Moru_Event_Gold_34/50;Relic_exp_token_refine/20;reputation_relief_ep13_Event_All/50;SoloRaidCntReset_Team_Event_4/20;"}},{"itemId":10003539,"className":"Event_Attendance_Support_Box_13","name":"[Event] Settlement Support Box - 13","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"HiddenAbility_MasterPiece_Fragment/30;misc_Engrave_460_NoTrade/20;Event_Coin_Ticket_5000/5;Relic_exp_token_refine/20;Moru_Ruby_event/30;Multiple_Token_MythicHARD_Event34/10;"}},{"itemId":10003540,"className":"Event_Attendance_Support_Box_14","name":"[Event] Settlement Support Box - 14","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EVENT_1811_NEWCHARACTER_BARRACK_SLOT2/1;HiddenAbility_MasterPiece_Fragment/30;misc_Engrave_460_NoTrade/20;reputation_relief_ep13_Event_All/100;Relic_exp_token_refine/50;EVENT_2103_Relic_Gem/2;GabijaCertificateCoin_5000p/1;"}},{"itemId":10003541,"className":"Event_Random_Bountyhunt_Box","name":"[Halloween] [Lv.460] Random Written Order Pouch","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT","strArg":"tricket_bountyhunt_klapeda_ep13_3d/1;tricket_bountyhunt_pedimian_ep13_3d/1;tricket_bountyhunt_orsha_ep13_3d/1;"}},{"itemId":10003548,"className":"Achieve_Ability_Reset_Box_30d","name":"[Event] Arts Reset Package (30 Days)","type":"Consume","group":"Cube","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"2020_AbillityArts_Box_1_d7/4;Event_RankReset_Point_Lv4_90d_Team/1;"}},{"itemId":10003552,"className":"Pharmacy_Random_Material_Box_1","name":"[Lv.470] LR Arcanum Brewing Material Box","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT","strArg":"pharmacy_material_A1_470/3;pharmacy_material_A2_470/3;pharmacy_material_A3_470/3;pharmacy_material_A4_470/3;pharmacy_material_A5_470/3;pharmacy_material_A6_470/3;pharmacy_material_A7_470/3;pharmacy_material_A8_470/3;pharmacy_material_C1_470/3;pharmacy_material_C2_470/3;pharmacy_material_C3_470/3;pharmacy_material_C4_470/3;pharmacy_material_C5_470/3;pharmacy_material_C6_470/3;pharmacy_material_C7_470/3;pharmacy_material_C8_470/3;"}},{"itemId":10003553,"className":"Pharmacy_Random_Material_Box_2","name":"[Lv.470] HR Arcanum Brewing Material Box","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT","strArg":"pharmacy_material_D1_470/1;pharmacy_material_D2_470/1;pharmacy_material_D3_470/1;pharmacy_material_D4_470/1;"}},{"itemId":10003555,"className":"Event_2201_New_Year_Box","name":"[Event] New Year's 3 Day Hump Box","type":"Consume","group":"Cube","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_2201_New_Year_Box"}},{"itemId":10003560,"className":"Event_2203_ARBOR_DAY_Box_1","name":"Arbor Day Special Event Box #1","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_vasilisa_NoTrade/400;GabijaCertificateCoin_10000p/4;Event_misc_reinforce_percentUp_470_NoTrade_limit/60;Event_2103_ARBOR_DAY_coin1/2000;"}},{"itemId":10003561,"className":"Event_2203_ARBOR_DAY_Box_2","name":"Arbor Day Special Event Box #2","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"open_ticket_cabinet_vibora_lv4/1;Event_2103_ARBOR_DAY_coin1/2000;"}},{"itemId":10003562,"className":"Event_2203_ARBOR_DAY_Box_3","name":"Arbor Day Special Event Box #3","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"open_ticket_cabinet_goddess_lv3/2;Event_2103_ARBOR_DAY_coin1/2000;"}},{"itemId":10003563,"className":"Event_2203_ARBOR_DAY_Box_4","name":"Arbor Day Special Event Box #4","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"open_ticket_cabinet_ark/1;ark_lvup_scroll_lv10/1;Event_2103_ARBOR_DAY_coin1/2000;"}},{"itemId":10003564,"className":"Event_2203_ARBOR_DAY_Box_5","name":"Arbor Day Special Event Box #5","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Relic_exp_token_refine/1500;EVENT_2103_Relic_Gem/70;Relic_gem_upgrade_token/1000;relicgem_lvup_scroll_lv5/1;Event_2103_ARBOR_DAY_coin1/2000;"}},{"itemId":10003572,"className":"Event_2203_ARBOR_DAY_Box_1_GLOBAL","name":"Arbor Day Special Event Box #1","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_vasilisa_NoTrade/200;GabijaCertificateCoin_10000p/4;Event_misc_reinforce_percentUp_470_NoTrade_limit/60;Event_2103_ARBOR_DAY_coin1/2000;"}},{"itemId":10003573,"className":"Event_2203_ARBOR_DAY_Box_5_GLOBAL","name":"Arbor Day Special Event Box #5","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Relic_exp_token_refine/150;EVENT_2103_Relic_Gem/35;Relic_gem_upgrade_token/500;relicgem_lvup_scroll_lv5/1;Event_2103_ARBOR_DAY_coin1/2000;"}},{"itemId":10003574,"className":"SeasonServerOpen_Box_1","name":"[Season Server] Opening Celebration Box - 1st","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_ChallengeModeReset_30/10;HiddenAbility_MasterPiece_Fragment/300;Ability_Point_Stone_10000/300;ExpPotion_box_60ea/1;Premium_Mystic_Glass_460_NoTrade/150;Premium_Sandra_Glass_460_NoTrade/150;Premium_Sandra_Glass_1line_460_NoTrade/150;Coupon_ItemRandomReset2/2350;Relic_exp_token_refine/2350;relicgem_lvup_scroll_lv5/1;selectbox_Gem_Relic_Black/1;givebox_Seal_Boruta_Common/1;"}},{"itemId":10003575,"className":"SeasonServerOpen_Box_2","name":"[Season Server] Opening Celebration Box - 2nd","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Bernice_Enter/10;Legend_SlotOpen_Card_Team/1;selectbox_NoTrade_Leg_Card/1;Event_MasterCard_box_NoTrade_1/5;Event_MasterCard_box_NoTrade_2/5;card_Xpupkit10_Team/10;Gem_Select_Box_Color/8;misc_gemExpStone12_NoTrade/8;misc_Ether_Gem_Socket_460_NoTrade/4;selectbox_Gem_High/4;HighColorGem_UpgradeToken_460_NoTrade/5;Coupon_c_request_1/50;"}},{"itemId":10003576,"className":"SeasonServerOpen_Box_3","name":"[Season Server] Opening Celebration Box - 3rd","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeExpertModeCountUp_Ev_1/5;misc_Enchant_460_NoTrade/10;misc_reinforce_percentUp_460_NoTrade/10;Coupon_c_request_1/50;"}},{"itemId":10003577,"className":"SeasonServerOpen_Box_4","name":"[Season Server] Opening Celebration Box - 4th","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Mythic_Auto_Event34/5;misc_Enchant_460_NoTrade/10;misc_reinforce_percentUp_460_NoTrade/10;Coupon_c_request_1/50;"}},{"itemId":10003578,"className":"SeasonServerOpen_Box_5","name":"[Season Server] Opening Celebration Box - 5th","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Giltine_Auto_Premium_Ev_1/5;misc_Enchant_460_NoTrade/10;misc_reinforce_percentUp_460_NoTrade/10;Coupon_c_request_1/50;"}},{"itemId":10003579,"className":"SeasonServerOpen_Box_6","name":"[Season Server] Opening Celebration Box - 6th","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Vasilissa_Auto_Enter_NoTrade/5;misc_Enchant_460_NoTrade/10;misc_reinforce_percentUp_460_NoTrade/10;Coupon_c_request_1/50;"}},{"itemId":10003580,"className":"SeasonServerOpen_Box_7","name":"[Season Server] Opening Celebration Box - 7th","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Auto_Enter_NoTrade/5;Premium_Enchantchip_NoTrade/30;EVENT_2103_Relic_Gem/5;selectbox_Gem_Relic_Black/1;selectbox_Gem_Relic_Cyan/1;selectbox_Gem_Relic_Magenta/1;"}},{"itemId":10003584,"className":"Event_Attendance_SEASON_2022_Box_1","name":"[Season Server] Settlement Support Box - 1","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"open_ticket_cabinet_vibora_lv4/1;open_ticket_cabinet_luci_acc/1;ark_lvup_scroll_lv10/1;PremiumToken_1d/1;Ability_Point_Stone_10000/7;"}},{"itemId":10003585,"className":"Event_Attendance_SEASON_2022_Box_2","name":"[Season Server] Settlement Support Box - 2","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"open_ticket_cabinet_vibora_lv4/1;open_ticket_cabinet_goddess_lv3/2;Relic_exp_token_refine/400;misc_pvp_mine2_NotLimit_10000/4;Ability_Point_Stone_10000/7;"}},{"itemId":10003586,"className":"Event_Attendance_SEASON_2022_Box_3","name":"[Season Server] Settlement Support Box - 3","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"open_ticket_cabinet_vibora_lv4/1;open_ticket_cabinet_goddess_lv3/2;Relic_gem_upgrade_token/200;misc_pvp_mine2_NotLimit_10000/4;Ability_Point_Stone_10000/7;"}},{"itemId":10003587,"className":"Event_Attendance_SEASON_2022_Box_4","name":"[Season Server] Settlement Support Box - 4","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ancient_CardBook_ALL/20;Ancient_CardBook_Choice_Unique/20;EVENT_2103_Relic_Gem/5;misc_pvp_mine2_NotLimit_10000/4;Ability_Point_Stone_10000/7;"}},{"itemId":10003588,"className":"Event_Attendance_SEASON_2022_Box_5","name":"[Season Server] Settlement Support Box - 5","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ancient_CardBook_ALL/20;Ancient_CardBook_Choice_Unique/20;Relic_exp_token_refine/400;misc_pvp_mine2_NotLimit_10000/4;Ability_Point_Stone_10000/7;"}},{"itemId":10003589,"className":"Event_Attendance_SEASON_2022_Box_6","name":"[Season Server] Settlement Support Box - 6","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ancient_CardBook_ALL/20;Ancient_CardBook_Choice_Unique/20;Relic_gem_upgrade_token/200;misc_pvp_mine2_NotLimit_10000/4;Ability_Point_Stone_10000/7;"}},{"itemId":10003590,"className":"Event_Attendance_SEASON_2022_Box_7","name":"[Season Server] Settlement Support Box - 7","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EVENT_1811_NEWCHARACTER_BARRACK_SLOT2/1;EVENT_SEASON2022_Title/1;EVENT_2103_Relic_Gem/5;PremiumToken_1d/1;Ability_Point_Stone_10000/7;"}},{"itemId":10003591,"className":"Event_Attendance_Server_Integ_Box_1","name":"Server Merge Celebration Reward - 1st","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"open_ticket_cabinet_vibora_lv4/1;Ticket_Bernice_Enter/30;misc_pvp_mine2_NotLimit_10000/2;Ability_Point_Stone_10000/2;GabijaCertificateCoin_10000p/20;Premium_RankReset/1;"}},{"itemId":10003592,"className":"Event_Attendance_Server_Integ_Box_2","name":"Server Merge Celebration Reward - 2nd","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/30;ChallengeExpertModeCountUp_NoTrade/10;misc_pvp_mine2_NotLimit_10000/2;Ability_Point_Stone_10000/2;GabijaCertificateCoin_10000p/20;"}},{"itemId":10003593,"className":"Event_Attendance_Server_Integ_Box_3","name":"Server Merge Celebration Reward - 3rd","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Vasilissa_Auto_Enter_NoTrade/30;Ticket_Vasilissa_Party_Enter_NoTrade/10;misc_pvp_mine2_NotLimit_10000/2;Ability_Point_Stone_10000/2;GabijaCertificateCoin_10000p/20;"}},{"itemId":10003594,"className":"Event_Attendance_Server_Integ_Box_4","name":"Server Merge Celebration Reward - 4th","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Mythic_Auto_Premium_NoTrade/30;Ticket_Mythic_Auto_Hard/10;misc_pvp_mine2_NotLimit_10000/2;Ability_Point_Stone_10000/2;GabijaCertificateCoin_10000p/20;Premium_RankReset/1;"}},{"itemId":10003595,"className":"Event_Attendance_Server_Integ_Box_5","name":"Server Merge Celebration Reward - 5th","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"open_ticket_cabinet_goddess_lv3/2;Ticket_earring_raid_NoTrade/30;misc_pvp_mine2_NotLimit_10000/2;Ability_Point_Stone_10000/2;GabijaCertificateCoin_10000p/20;"}},{"itemId":10003596,"className":"Event_Attendance_Server_Integ_Box_6","name":"Server Merge Celebration Reward - 6th","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Auto_Enter_NoTrade/30;Ticket_RevivalPaulius_Party_Enter_NoTrade/10;misc_pvp_mine2_NotLimit_10000/2;Ability_Point_Stone_10000/2;GabijaCertificateCoin_10000p/20;"}},{"itemId":10003597,"className":"Event_Attendance_Server_Integ_Box_7","name":"Server Merge Celebration Reward - 7th","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Jellyzele_Auto_Enter_NoTrade/30;Ticket_Jellyzele_Party_Enter_NoTrade/10;misc_pvp_mine2_NotLimit_10000/2;Ability_Point_Stone_10000/2;GabijaCertificateCoin_10000p/20;Premium_RankReset/1;"}},{"itemId":10003599,"className":"Event_Attendance_Support_Box_VS_01","name":"[Event] Settlement Support Box - 1","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"PremiumToken_1d/1;Ability_Point_Stone_10000_Team_NoDate/50;HiddenAbility_MasterPiece_Fragment/30;Event_Drug_RedApple20/10;Event_Drug_BlueApple20/10;Premium_repairPotion/5;"}},{"itemId":10003600,"className":"Event_Attendance_Support_Box_VS_02","name":"[Event] Settlement Support Box - 2","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Achieve_Coin_Ticket_5000_1/5;Premium_WarpScroll_bundle10/1;Event_Goddess_Statue/3;Adventure_Reward_Seed_14d/3;Event_Drug_RedApple20/10;Event_Drug_BlueApple20/10;Premium_repairPotion/5;"}},{"itemId":10003601,"className":"Event_Attendance_Support_Box_VS_03","name":"[Event] Settlement Support Box - 3","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_ChallengeModeReset_30/10;misc_reinforce_percentUp_480_NoTrade/10;Event_Drug_RedApple20/10;Event_Drug_BlueApple20/10;Premium_repairPotion/5;"}},{"itemId":10003602,"className":"Event_Attendance_Support_Box_VS_04","name":"[Event] Settlement Support Box - 4","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_MasterCard_box_NoTrade_1/3;Event_MasterCard_box_NoTrade_2/3;Event_Drug_RedApple20/10;Event_Drug_BlueApple20/10;Premium_repairPotion/5;"}},{"itemId":10003603,"className":"Event_Attendance_Support_Box_VS_05","name":"[Event] Settlement Support Box - 5","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Bernice_Enter/10;misc_reinforce_percentUp_480_NoTrade/10;Event_Drug_RedApple20/10;Event_Drug_BlueApple20/10;Premium_repairPotion/5;"}},{"itemId":10003604,"className":"Event_Attendance_Support_Box_VS_06","name":"[Event] Settlement Support Box - 6","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Relic_exp_token_refine/150;misc_0533/10;Event_Drug_RedApple20/10;Event_Drug_BlueApple20/10;Premium_repairPotion/5;"}},{"itemId":10003605,"className":"Event_Attendance_Support_Box_VS_07","name":"[Event] Settlement Support Box - 7","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"PremiumToken_1d/1;Ability_Point_Stone_10000_Team_NoDate/50;HiddenAbility_MasterPiece_Fragment/30;Event_Drug_RedApple20/10;Event_Drug_BlueApple20/10;Premium_repairPotion/5;"}},{"itemId":10003606,"className":"Event_Attendance_Support_Box_VS_08","name":"[Event] Settlement Support Box - 8","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Achieve_Coin_Ticket_5000_1/5;Premium_WarpScroll_bundle10/1;Event_Goddess_Statue/3;Adventure_Reward_Seed_14d/3;Event_Drug_RedApple20/10;Event_Drug_BlueApple20/10;Premium_repairPotion/5;"}},{"itemId":10003607,"className":"Event_Attendance_Support_Box_VS_09","name":"[Event] Settlement Support Box - 9","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_ChallengeModeReset_30/10;misc_reinforce_percentUp_480_NoTrade/10;Event_Drug_RedApple20/10;Event_Drug_BlueApple20/10;Premium_repairPotion/5;"}},{"itemId":10003608,"className":"Event_Attendance_Support_Box_VS_10","name":"[Event] Settlement Support Box - 10","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_MasterCard_box_NoTrade_1/3;Event_MasterCard_box_NoTrade_2/3;Event_Drug_RedApple20/10;Event_Drug_BlueApple20/10;Premium_repairPotion/5;"}},{"itemId":10003609,"className":"Event_Attendance_Support_Box_VS_11","name":"[Event] Settlement Support Box - 11","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Bernice_Enter/10;misc_reinforce_percentUp_480_NoTrade/10;Event_Drug_RedApple20/10;Event_Drug_BlueApple20/10;Premium_repairPotion/5;"}},{"itemId":10003610,"className":"Event_Attendance_Support_Box_VS_12","name":"[Event] Settlement Support Box - 12","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Relic_exp_token_refine/150;misc_0533/10;Event_Drug_RedApple20/10;Event_Drug_BlueApple20/10;Premium_repairPotion/5;"}},{"itemId":10003611,"className":"Event_Attendance_Support_Box_VS_13","name":"[Event] Settlement Support Box - 13","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"PremiumToken_1d/1;Ability_Point_Stone_10000_Team_NoDate/50;HiddenAbility_MasterPiece_Fragment/30;Event_Drug_RedApple20/10;Event_Drug_BlueApple20/10;Premium_repairPotion/5;"}},{"itemId":10003612,"className":"Event_Attendance_Support_Box_VS_14","name":"[Event] Settlement Support Box - 14","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"VakarineCertificateCoin_50000p/1;Ticket_earring_raid_NoTrade/10;Ticket_RevivalPaulius_Auto_Enter_NoTrade/10;Ticket_Jellyzele_Auto_Enter_NoTrade/10;Ticket_TurbulentCore_Auto_Enter_NoTrade/10;"}},{"itemId":10003614,"className":"Event_2209_Attendance_Box","name":"2022 Moon Rabbit's Gift Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_transmutationSpreader_NoTrade/100;VakarineCertificateCoin_50000p/2;Event_misc_reinforce_percentUp_480_NoTrade_limit/60;Event_Ticket_earring_raid_limit/5;Event_Ticket_RevivalPaulius_Auto_Enter_limit/5;Event_ChallengeExpertModeCountUp_limit/5;Event_ChallengeModeReset_limit/10;Ticket_Jellyzele_Auto_Enter_limit/5;Ticket_TurbulentCore_Auto_Enter_limit/5;Gacha_Blessed_CUBE_Event_2209/3;"}},{"itemId":10003615,"className":"GLOBAL_2209_GM_Box_1","name":"GM's Surprise Gift Box - Day 1","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Jellyzele_Auto_Enter_LimitTime/5;Relic_gem_upgrade_token/150;Event_Ability_Point_Stone_10000_team/4;"}},{"itemId":10003616,"className":"GLOBAL_2209_GM_Box_2","name":"GM's Surprise Gift Box - Day 2","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_vasilisa_NoTrade/300;Ancient_CardBook_ALL/10;Ticket_Giltine_Auto_7d/5;"}},{"itemId":10003617,"className":"GLOBAL_2209_GM_Box_3","name":"GM's Surprise Gift Box - Day 3","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Relic_gem_upgrade_token/150;ChallengeExpertModeCountUp_1d/5;misc_pvp_mine2_NotLimit_10000/4;"}},{"itemId":10003618,"className":"GLOBAL_2209_GM_Box_4","name":"GM's Surprise Gift Box - Day 4","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_470_NoTrade/30;GabijaCertificateCoin_50000p/3;Ticket_RevivalPaulius_Auto_Enter_LimitTime/5;"}},{"itemId":10003619,"className":"GLOBAL_2209_GM_Box_5","name":"GM's Surprise Gift Box - Day 5","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Relic_exp_token_refine/100;Ticket_earring_raid_1d/5;Event_Ability_Point_Stone_10000_team/4;"}},{"itemId":10003620,"className":"GLOBAL_2209_GM_Box_6","name":"GM's Surprise Gift Box - Day 6","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Beauty_HairCoupon_90_14d/5;Beauty_DyeCoupon_90_14d/5;R_Premium_boostToken06/1;ChallengeModeReset_14d/5;"}},{"itemId":10003621,"className":"GLOBAL_2209_GM_Box_7","name":"GM's Surprise Gift Box - Day 7","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EVENT_2103_Relic_Gem/3;Ancient_CardBook_Choice_Unique/5;Mulia_emotion138/1;"}},{"itemId":10003622,"className":"TWN_2209_GM_Box_2","name":"GM's Surprise Gift Box - Day 2","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Relic_exp_token_refine/30;Ancient_CardBook_ALL/10;Ticket_Giltine_Auto_7d/5;"}},{"itemId":10003623,"className":"TWN_2209_GM_Box_4","name":"GM's Surprise Gift Box - Day 4","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_480_NoTrade/15;Ticket_Mythic_Auto_7d/5;Ticket_RevivalPaulius_Auto_Enter_LimitTime/5;"}},{"itemId":10003624,"className":"TWN_2209_GM_Box_5","name":"GM's Surprise Gift Box - Day 5","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Relic_exp_token_refine/70;Ticket_earring_raid_1d/5;Ticket_TurbulentCore_Auto_Enter_LimitTime/3;"}},{"itemId":10003625,"className":"Nyang_Piano_Box_Do_White_2","name":"White Meow Piano Toy Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"nyang_piano_Do_White/1;nyang_piano_Re_White/1;nyang_piano_Mi_White/1;nyang_piano_Fa_White/1;nyang_piano_So_White/1;nyang_piano_La_White/1;nyang_piano_Ti_White/1;nyang_piano_High_Do_White/1;"}},{"itemId":10003627,"className":"GLOBAL_2212_GM_Box_6","name":"GM's Surprise Gift Box - Day 6","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Beauty_HairCoupon_90_14d/5;Ancient_CardBook_Choice_Unique/5;Beauty_DyeCoupon_90_14d/5;ChallengeModeReset_14d/5;"}},{"itemId":10003628,"className":"GLOBAL_2212_GM_Box_7","name":"GM's Surprise Gift Box - Day 7","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EVENT_2103_Relic_Gem/2;VakarineCertificateCoin_10000p/4;Gacha_HairAcc_HotTime010_GLOBAL/1;Mulia_emotion141/1;"}},{"itemId":10003629,"className":"Event_2212_Attendance_Box_0","name":"Christmas Day 1 Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"piece_EP14_GoddessIcor_Weapon_high_NoTrade/1;piece_EP14_GoddessIcor_Weapon_NoTrade/49;misc_reinforce_percentUp_480_NoTrade/35;misc_pvp_mine2_NotLimit_10000/2;VakarineCertificateCoin_10000p/2;Event_2212_Snow_Key/2500;"}},{"itemId":10003630,"className":"Event_2212_Attendance_Box_1","name":"Christmas Day 2 Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"piece_EP14_GoddessIcor_Armor_high_NoTrade/1;piece_EP14_GoddessIcor_Armor_NoTrade/49;misc_reinforce_percentUp_480_NoTrade/35;misc_pvp_mine2_NotLimit_10000/2;VakarineCertificateCoin_10000p/2;Event_2212_Snow_Key/2500;"}},{"itemId":10003631,"className":"Event_2212_Attendance_Box_2","name":"Christmas Day 3 Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"piece_fierce_shoulder_high_NoTrade/1;piece_fierce_shoulder_NoTrade/100;piece_penetration_belt_high/1;piece_penetration_belt_NoTrade/100;misc_pvp_mine2_NotLimit_10000/2;VakarineCertificateCoin_10000p/2;Event_2212_Snow_Key/2500;"}},{"itemId":10003632,"className":"Event_2301_Attendance_Box_0","name":"Popolion Perm Party Box - 1","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_2301_Attendance_Box_poporion/1;"}},{"itemId":10003633,"className":"Event_2301_Attendance_Box_1","name":"Popolion Perm Party Box - 2","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"open_ticket_cabinet_vibora_lv4/1;"}},{"itemId":10003634,"className":"Event_2301_Attendance_Box_2","name":"Popolion Perm Party Box - 3","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"open_ticket_cabinet_goddess_lv3/2;"}},{"itemId":10003635,"className":"Event_2301_Attendance_Box_3","name":"Popolion Perm Party Box - 4","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Relic_exp_token_refine/2580;"}},{"itemId":10003636,"className":"Event_2301_Attendance_Box_4","name":"Popolion Perm Party Box - 5","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"relicgem_lvup_scroll_lv7/1;"}},{"itemId":10003637,"className":"Event_2301_Attendance_Box_5","name":"Popolion Perm Party Box - 6","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"VakarineCertificateCoin_50000p/7;"}},{"itemId":10003638,"className":"Event_2301_Attendance_Box_6","name":"Popolion Perm Party Box - 7","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"box_GACHA_HAIRACC_ReSale_001_4_NoTrade/7;"}},{"itemId":10003639,"className":"Event_2301_Attendance_Box_poporion","name":"Popolion Perm Party Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"helmet_afro_poporion/1;box_GACHA_HAIRACC_ReSale_001_4_NoTrade/3;open_ticket_cabinet_vibora_lv4/1;open_ticket_cabinet_goddess_lv3/2;Relic_exp_token_refine/2350;relicgem_lvup_scroll_lv5/1;PremiumToken_15d/1;"}},{"itemId":10003640,"className":"Event2301_Newyear_Attendance_Box_0","name":"New Year's Special Event Box #1","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"box_GACHA_HAIRACC_ReSale_001_4_NoTrade/4;"}},{"itemId":10003641,"className":"Event2301_Newyear_Attendance_Box_1","name":"New Year's Special Event Box #2","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"box_GACHA_HAIRACC_ReSale_001_4_NoTrade/4;"}},{"itemId":10003642,"className":"Event2301_Newyear_Attendance_Box_2","name":"New Year's Special Event Box #3","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"box_GACHA_HAIRACC_ReSale_001_4_NoTrade/8;"}},{"itemId":10003643,"className":"Event_Valentine_Attendance_Box","name":"[2023] Last Day of February Gift Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"box_GACHA_HAIRACC_ReSale_001_4_NoTrade/2;piece_fierce_shoulder_high_NoTrade_Belonging/1;piece_penetration_belt_high_Belonging/1;piece_GabijaEarring_select_job_NoTrade_Belonging/1;piece_EP14_GoddessIcor_Armor_high_NoTrade_Belonging/4;piece_EP14_GoddessIcor_Weapon_high_NoTrade_Belonging/4;VakarineCertificateCoin_10000p/6;misc_pvp_mine2_NotLimit_10000/6;"}},{"itemId":10003644,"className":"Event_Whiteday_Attendance_Box","name":"7th Anniversary Gift Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"box_GACHA_HAIRACC_ReSale_001_4_NoTrade/2;piece_fierce_shoulder_high_NoTrade_Belonging/1;piece_penetration_belt_high_Belonging/1;piece_GabijaEarring_select_job_NoTrade_Belonging/1;piece_EP14_GoddessIcor_Armor_high_NoTrade_Belonging/4;piece_EP14_GoddessIcor_Weapon_high_NoTrade_Belonging/4;"}},{"itemId":10003645,"className":"JPN_Event_AprilFoolsDay_Attendance_Box","name":"April Fools Gift Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"VakarineCertificateCoin_10000p/2;piece_fierce_shoulder_high_NoTrade_Belonging/1;piece_penetration_belt_high_Belonging/1;piece_GabijaEarring_select_job_NoTrade_Belonging/1;piece_EP14_GoddessIcor_Armor_high_NoTrade_Belonging/4;piece_EP14_GoddessIcor_Weapon_high_NoTrade_Belonging/4;"}},{"itemId":10006501,"className":"TWN_Event_2303_Attendance_Box_0","name":"TWN Special Attendance Box #1","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_14d_2/3;misc_pvp_mine2_NotLimit_10000/5;VakarineCertificateCoin_10000p/10;Relic_exp_token_refine/50;Ticket_TurbulentCore_Auto_Enter_NoTrade/5;"}},{"itemId":10006502,"className":"TWN_Event_2303_Attendance_Box_1","name":"TWN Special Attendance Box #2","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_14d_2/3;misc_pvp_mine2_NotLimit_10000/5;VakarineCertificateCoin_10000p/10;Relic_exp_token_refine/50;Ticket_Jellyzele_Auto_Enter_NoTrade/5;"}},{"itemId":10006503,"className":"TWN_Event_2303_Attendance_Box_2","name":"TWN Special Attendance Box #3","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_14d_2/3;misc_pvp_mine2_NotLimit_10000/5;VakarineCertificateCoin_10000p/10;Relic_exp_token_refine/50;Ticket_earring_raid_NoTrade/5;"}},{"itemId":10006504,"className":"TWN_Event_2303_Attendance_Box_3","name":"TWN Special Attendance Box #4","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_14d_2/3;misc_pvp_mine2_NotLimit_10000/5;VakarineCertificateCoin_10000p/10;Relic_exp_token_refine/50;Ticket_RevivalPaulius_Auto_Enter_NoTrade/5;"}},{"itemId":10006505,"className":"TWN_Event_2303_Attendance_Box_4","name":"TWN Special Attendance Box #5","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_14d_2/3;misc_pvp_mine2_NotLimit_10000/5;VakarineCertificateCoin_10000p/10;Relic_exp_token_refine/50;Ticket_Jellyzele_Auto_Enter_NoTrade/5;wing_poporion/1;"}},{"itemId":10006506,"className":"TWN_Event_2303_Attendance_Box_5","name":"TWN Special Attendance Box #6","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_14d_2/3;misc_pvp_mine2_NotLimit_10000/5;VakarineCertificateCoin_10000p/10;Relic_exp_token_refine/50;Ticket_earring_raid_NoTrade/5;"}},{"itemId":10006507,"className":"TWN_Event_2303_Attendance_Box_6","name":"TWN Special Attendance Box #7","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_14d_2/3;misc_pvp_mine2_NotLimit_10000/5;VakarineCertificateCoin_10000p/10;Relic_exp_token_refine/50;Ticket_RevivalPaulius_Auto_Enter_NoTrade/5;"}},{"itemId":10006508,"className":"TWN_Event_2303_Attendance_Box_7","name":"TWN Special Attendance Box #8","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Ability_Point_Stone_10000_14d_2/3;misc_pvp_mine2_NotLimit_10000/5;VakarineCertificateCoin_10000p/10;Relic_exp_token_refine/50;Ticket_TurbulentCore_Auto_Enter_NoTrade/5;"}},{"itemId":10600064,"className":"Drung_Box_Elixer_Event_2","name":"[Event] Combat Support Box","type":"Consume","group":"Cube","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Boruta_Drug_RedApple20/30;Boruta_Drug_BlueApple20/30;","numArg1":3}},{"itemId":10600102,"className":"Drung_Box_Elixer_Event_3","name":"[Event] Combat Support Box","type":"Consume","group":"Cube","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"RestartCristal/10;EVENT_2005_repairPotion/20;","numArg1":3}},{"itemId":11030014,"className":"misc_Brikynite_box","name":"Goddess' Grace Brikynite Box","type":"Consume","group":"Cube","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_Brikynite/32;"}},{"itemId":11030022,"className":"Galimybe_box","name":"Kedora Merchant Alliance Galimive Armor Box","type":"Consume","group":"Cube","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP12_Galimybe_TOP/1;EP12_Galimybe_LEG/1;EP12_Galimybe_FOOT/1;EP12_Galimybe_HAND/1;"}},{"itemId":11030026,"className":"misc_Brikynite_box_64cnt","name":"Goddess' Grace Brikynite Box II","type":"Consume","group":"Cube","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_Brikynite/64;"}},{"itemId":11030027,"className":"misc_Brikynite_box_10cnt","name":"Goddess' Grace Brikynite Mini Box","type":"Consume","group":"Cube","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_Brikynite/5;"}},{"itemId":11030029,"className":"Goddess_miscBox","name":"Goddess' Grace Ore Box","type":"Consume","group":"Cube","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_0530/15;misc_ore15/5;Premium_item_transcendence_Stone/5;"}},{"itemId":11030075,"className":"randombox_ep13reputation_forest","name":"Deep Woods Theme Housing Box","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT","strArg":"PersonalHousing_Item_hp_p_h_barrack_11_carpet_L/1;PersonalHousing_Item_hp_p_h_barrack_11_carpet_M/1;PersonalHousing_Item_hp_p_h_barrack_11_carpet_round/1;PersonalHousing_Item_hp_p_h_barrack_11_chair/1;PersonalHousing_Item_hp_p_h_barrack_11_clover/1;PersonalHousing_Item_hp_p_h_barrack_11_flower_white/1;PersonalHousing_Item_hp_p_h_barrack_11_flowers/1;PersonalHousing_Item_hp_p_h_barrack_11_pansy/1;PersonalHousing_Item_hp_p_h_barrack_11_partition/1;PersonalHousing_Item_hp_p_h_barrack_11_pinecone/1;PersonalHousing_Item_hp_p_h_barrack_11_plant/1;PersonalHousing_Item_hp_p_h_barrack_11_shelf_01/1;PersonalHousing_Item_hp_p_h_barrack_11_shelf_02/1;PersonalHousing_Item_hp_p_h_barrack_11_shelf_03/1;PersonalHousing_Item_hp_p_h_barrack_11_table/1;PersonalHousing_Item_hp_p_h_barrack_11_window/1;PersonalHousing_Item_hp_p_h_barrack_11_woodlight/1;"}},{"itemId":11030076,"className":"randombox_ep13reputation_flowershop","name":"Flower Shop Theme Housing Box","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT","strArg":"PersonalHousing_Item_hp_p_h_barrack_14_birdcage/1;PersonalHousing_Item_hp_p_h_barrack_14_desk/1;PersonalHousing_Item_hp_p_h_barrack_14_drawer/1;PersonalHousing_Item_hp_p_h_barrack_14_flower_01/1;PersonalHousing_Item_hp_p_h_barrack_14_flower_02/1;PersonalHousing_Item_hp_p_h_barrack_14_flower_03/1;PersonalHousing_Item_hp_p_h_barrack_14_flower_basket_01/1;PersonalHousing_Item_hp_p_h_barrack_14_flower_basket_02/1;PersonalHousing_Item_hp_p_h_barrack_14_flower_basket_03/1;PersonalHousing_Item_hp_p_h_barrack_14_flower_deco/1;PersonalHousing_Item_hp_p_h_barrack_14_flowerpot/1;PersonalHousing_Item_hp_p_h_barrack_14_frameset/1;PersonalHousing_Item_hp_p_h_barrack_14_lamp/1;PersonalHousing_Item_hp_p_h_barrack_14_rotatingpot/1;PersonalHousing_Item_hp_p_h_barrack_14_shelf_flowers/1;PersonalHousing_Item_hp_p_h_barrack_14_shelf_tools/1;PersonalHousing_Item_hp_p_h_barrack_14_wateringpot/1;PersonalHousing_Item_hp_p_h_barrack_14_wrappaper/1;"}},{"itemId":11030077,"className":"randombox_ep13reputation_winebar","name":"Wine Bar Theme Housing Box","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT","strArg":"PersonalHousing_Item_hp_p_h_barrack_15_barrelshelf/1;PersonalHousing_Item_hp_p_h_barrack_15_barshelf/1;PersonalHousing_Item_hp_p_h_barrack_15_barstand/1;PersonalHousing_Item_hp_p_h_barrack_15_carpet/1;PersonalHousing_Item_hp_p_h_barrack_15_chair/1;PersonalHousing_Item_hp_p_h_barrack_15_dart/1;PersonalHousing_Item_hp_p_h_barrack_15_lamp/1;PersonalHousing_Item_hp_p_h_barrack_15_signboard/1;PersonalHousing_Item_hp_p_h_barrack_15_storage/1;PersonalHousing_Item_hp_p_h_barrack_15_tableset/1;PersonalHousing_Item_hp_p_h_barrack_15_vintagewalldeco/1;PersonalHousing_Item_hp_p_h_barrack_15_winebarrel/1;PersonalHousing_Item_hp_p_h_barrack_15_winecart/1;PersonalHousing_Item_hp_p_h_barrack_15_winedeco/1;PersonalHousing_Item_hp_p_h_barrack_15_wineglass/1;PersonalHousing_Item_hp_p_h_barrack_15_winerack/1;"}},{"itemId":11030096,"className":"Gacha_Relic_Gem_Goddess","name":"Goddess Res Sacrae Gem Random Box","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT","strArg":"Gem_Relic_Cyan_G_001/1;Gem_Relic_Cyan_G_002/1;Gem_Relic_Magenta_G_001/1;Gem_Relic_Magenta_G_002/1;Gem_Relic_Magenta_G_003/1;Gem_Relic_Black_G_001/1;Gem_Relic_Black_G_002/1;Gem_Relic_Black_G_003/1;Gem_Relic_Black_G_004/1;Gem_Relic_Black_G_005/1;Gem_Relic_Black_G_006/1;Gem_Relic_Black_G_007/1;Gem_Relic_Black_G_008/1;Gem_Relic_Black_G_009/1;Gem_Relic_Black_G_010/1;Gem_Relic_Black_G_011/1;Gem_Relic_Black_G_012/1;Gem_Relic_Black_G_013/1;Gem_Relic_Black_G_014/1;Gem_Relic_Black_G_015/1;Gem_Relic_Black_G_016/1;Gem_Relic_Black_G_017/1;Gem_Relic_Black_G_018/1;Gem_Relic_Black_G_019/1;Gem_Relic_Black_G_020/1;Gem_Relic_Black_G_021/1;Gem_Relic_Black_G_022/1;Gem_Relic_Black_G_023/1;Gem_Relic_Black_G_024/1;Gem_Relic_Black_G_025/1;"}},{"itemId":11030097,"className":"Goddess_miscBox_2","name":"Goddess' Grace Ore Box II","type":"Consume","group":"Cube","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"evil_misc/3;goddess_misc/1;"}},{"itemId":11030098,"className":"Goddess_Morubox","name":"Goddess' Grace Anvil Box","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Gold_Team_Trade/20;Moru_Ruby_Charge/10;"}},{"itemId":11030099,"className":"Goddess_SandraGlass_Small_Box","name":"Sandra's Magnifier Small Box","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_Sandra_Glass/1;Premium_Sandra_Glass_1line/1;"}},{"itemId":11030100,"className":"Gacha_Relic_Gem_Cube","name":"Res Sacrae Gem Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ALL_USE_GHACHA_CUBE","strArg":"Relic_Gem_Cube"}},{"itemId":11030101,"className":"Gacha_Relic_Black_G_Gem_Cube","name":"Goddess Black Gem Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Relic_Black_G_Gem_Cube"}},{"itemId":11030102,"className":"Gacha_Relic_Cyan_G_Gem_Cube","name":"Goddess Cyan Gem Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Relic_Cyan_G_Gem_Cube"}},{"itemId":11030103,"className":"Gacha_Relic_Magenta_G_Gem_Cube","name":"Goddess Magenta Gem Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Relic_Magenta_G_Gem_Cube"}},{"itemId":11030104,"className":"Gacha_Relic_Black_L_Gem_Cube","name":"Legend Black Gem Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Relic_Black_L_Gem_Cube"}},{"itemId":11030105,"className":"Gacha_Relic_Cyan_L_Gem_Cube","name":"Legend Cyan Gem Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Relic_Cyan_L_Gem_Cube"}},{"itemId":11030106,"className":"Gacha_Relic_Magenta_L_Gem_Cube","name":"Legend Magenta Gem Cube","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Relic_Magenta_L_Gem_Cube"}},{"itemId":11030108,"className":"Gacha_Guilty_Guild","name":"Giltine's Pouch: Guild","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Gacha_Guilty_Guild"}},{"itemId":11030109,"className":"Gacha_Relic_Gem_Guild","name":"Res Sacrae Gem Cube: Guild","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ALL_USE_GHACHA_CUBE","strArg":"Gacha_Relic_Gem_Guild"}},{"itemId":11030113,"className":"Gacha_SKLGEM_2","name":"Skill Gem Cube","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_SKILL_GEM_CUBE","numArg1":10}},{"itemId":11030124,"className":"Moru_Premium_10box","name":"Advanced Golden Anvil x10 Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Premium/10;"}},{"itemId":11030125,"className":"Moru_ruby_10box","name":"Ruby Anvil x10 Box","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Ruby_Charge/10;"}},{"itemId":11030126,"className":"Sandra_Glass_Bundle_10cnt","name":"Sandra's Magnifier Bundle","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_Sandra_Glass/1;Premium_Sandra_Glass_1line/1;"}},{"itemId":11030127,"className":"Premium_Drug_RedBlue_10cnt","name":"Small Elixir Box (x10)","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Drug_RedApple20/10;Drug_BlueApple20/10;"}},{"itemId":11030148,"className":"Gacha_Relic_Gem_Goddess_2","name":"Goddess Res Sacrae Gem Random Box","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT","strArg":"Gem_Relic_Cyan_G_001/1;Gem_Relic_Cyan_G_002/1;Gem_Relic_Magenta_G_001/1;Gem_Relic_Magenta_G_002/1;Gem_Relic_Magenta_G_003/1;Gem_Relic_Black_G_001/1;Gem_Relic_Black_G_002/1;Gem_Relic_Black_G_003/1;Gem_Relic_Black_G_004/1;Gem_Relic_Black_G_005/1;Gem_Relic_Black_G_006/1;Gem_Relic_Black_G_007/1;Gem_Relic_Black_G_008/1;Gem_Relic_Black_G_009/1;Gem_Relic_Black_G_010/1;Gem_Relic_Black_G_011/1;Gem_Relic_Black_G_012/1;Gem_Relic_Black_G_013/1;Gem_Relic_Black_G_014/1;Gem_Relic_Black_G_015/1;Gem_Relic_Black_G_016/1;Gem_Relic_Black_G_017/1;Gem_Relic_Black_G_018/1;Gem_Relic_Black_G_019/1;Gem_Relic_Black_G_020/1;Gem_Relic_Black_G_021/1;Gem_Relic_Black_G_022/1;Gem_Relic_Black_G_023/1;Gem_Relic_Black_G_024/1;Gem_Relic_Black_G_025/1;"}},{"itemId":11030163,"className":"Coop_ArmorBox_Glacier01","name":"Joint Strike Raid Unique Armor Box - First Strike","type":"Consume","group":"Cube","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP12_TOP04_005/1;EP12_LEG04_005/1;EP12_FOOT04_005/1;EP12_HAND04_005/1;"}},{"itemId":11030164,"className":"Coop_ArmorBox_Glacier02","name":"Joint Strike Raid Unique Armor Box - Imperturbable","type":"Consume","group":"Cube","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP12_TOP04_006/1;EP12_LEG04_006/1;EP12_FOOT04_006/1;EP12_HAND04_006/1;"}},{"itemId":11030165,"className":"Coop_ArmorBox_Glacier03","name":"Joint Strike Raid Unique Armor Box - Thaw","type":"Consume","group":"Cube","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP12_TOP04_004/1;EP12_LEG04_004/1;EP12_FOOT04_004/1;EP12_HAND04_004/1;"}},{"itemId":11030166,"className":"Coop_ArmorBox_Moth01","name":"Joint Strike Raid Unique Armor Box - Stability","type":"Consume","group":"Cube","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP12_TOP04_001/1;EP12_LEG04_001/1;EP12_FOOT04_001/1;EP12_HAND04_001/1;"}},{"itemId":11030167,"className":"Coop_ArmorBox_Moth02","name":"Joint Strike Raid Unique Armor Box - Courage","type":"Consume","group":"Cube","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP12_TOP04_002/1;EP12_LEG04_002/1;EP12_FOOT04_002/1;EP12_HAND04_002/1;"}},{"itemId":11030168,"className":"Coop_ArmorBox_Moth03","name":"Joint Strike Raid Unique Armor Box - Wisdom","type":"Consume","group":"Cube","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP12_TOP04_003/1;EP12_LEG04_003/1;EP12_FOOT04_003/1;EP12_HAND04_003/1;"}},{"itemId":11030199,"className":"misc_reinforce_percentUp_460_NoTrade_10ea","name":"[Lv.460] Enhance Aid (Untradable) x10 Box","type":"Consume","group":"Cube","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_460_NoTrade/10;"}},{"itemId":11030200,"className":"misc_reinforce_percentUp_460_NoTrade_30ea","name":"[Lv.460] Enhance Aid (Untradable) x30 Box","type":"Consume","group":"Cube","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_460_NoTrade/30;"}},{"itemId":11030203,"className":"SilverBox_460","name":"[Goddess Raid Reward] Lottery Silver Chest (1 Day)","type":"Consume","group":"Cube","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SilverBox_460","strArg":"SilverBox_460","numArg1":5000000}},{"itemId":11030207,"className":"Piece_Gem_High_460","name":"[Lv.460] Aether Gem Fragment","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":10}},{"itemId":11030217,"className":"misc_reinforce_percentUp_460_NoTrade_50ea","name":"[Lv.460] Enhance Aid (Untradable) x50 Box","type":"Consume","group":"Cube","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_460_NoTrade/50;"}},{"itemId":11030218,"className":"Goddess_miscBox_3","name":"Goddess' Grace Ore Box III","type":"Consume","group":"Cube","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"evil_misc/2;goddess_misc/2;misc_Brikynite/5;"}},{"itemId":11030219,"className":"Goddess_SandraGlass_460_SetBox","name":"[Lv.460] Sandra's Magnifier Box","type":"Consume","group":"Cube","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_Sandra_Glass_460/10;Premium_Sandra_Glass_1line_460/15;"}},{"itemId":11030220,"className":"Premium_Sandra_Glass_1line_460_3cnt","name":"[Lv.460] Sandra's Detailed Magnifier Set (x3)","type":"Consume","group":"Cube","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Premium_Sandra_Glass_1line_460/3;"}},{"itemId":11030221,"className":"Weapon_Artifact_SelectBox_Asio","name":"[Appearance Change] Asio Weapon Selection Box","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":2}},{"itemId":11030222,"className":"Weapon_Artifact_SelectBox_Wei","name":"[Appearance Change] Wastrel Zvaigzde Weapon Selection Box","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":2}},{"itemId":11030223,"className":"Weapon_Artifact_SelectBox_Masinios","name":"[Appearance Change] Masinios Weapon Selection Box","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":2}},{"itemId":11030224,"className":"Weapon_Artifact_SelectBox_Moth","name":"[Appearance Change] Moringponia Weapon Selection Box","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":2}},{"itemId":11030225,"className":"Weapon_Artifact_SelectBox_Vibora","name":"[Appearance Change] Vaivora Weapon Selection Box","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":2}},{"itemId":11030438,"className":"Weapon_Artifact_SelectBox_Solmiki","name":"[Appearance Change] Solmiki Weapon Selection Box","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":2}},{"itemId":11030439,"className":"Weapon_Artifact_SelectBox_Skiaclipse","name":"[Appearance Change] Skiaclipse Weapon Selection Box","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":2}},{"itemId":11030440,"className":"Weapon_Artifact_SelectBox_Velcofer","name":"[Appearance Change] Velcoffer Weapon Selection Box","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":2}},{"itemId":11030446,"className":"Weapon_Artifact_SelectBox_GroundTower","name":"[Appearance Change] Lolopanther Weapon Selection Box","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":2}},{"itemId":11030462,"className":"Piece_Gem_High_480","name":"[Lv.480] Aether Gem Fragment","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":10}},{"itemId":11035014,"className":"txbox_LegendCardEP11_ALL_2","name":"Goddess' Grace Legend Card Set Envelope II","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Legendcard_skiaclips/1;Legendcard_Moringponia/1;Legendcard_Misrus/1;Legend_card_Marnoks/1;Legend_card_Blud/1;Legend_card_Zawra/1;Legend_card_Nuaele/1;Legend_card_Helgasercle/1;Legend_card_Lecifer/1;Legend_card_FrosterLord/1;"}},{"itemId":11035120,"className":"randombox_AssistorCard","name":"Legend/Unique Assister Box","type":"Consume","group":"Cube","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT","strArg":"Ancient_Card_ChiefGuard/1;Ancient_Card_mirtis/1;Ancient_Card_helgasercle/1;Ancient_Card_Marnoks/1;Ancient_Card_Lecifer/1;Ancient_Card_ignas/1;Ancient_Card_Zawra/1;Ancient_Card_Blud/1;Ancient_Card_Nuaelle/1;Ancient_Card_succubus/1;Ancient_Card_Moringponia/1;Ancient_Card_Skiaclipse/1;Ancient_Card_Velcoffer/1;Ancient_Card_Boruta/1;Ancient_Card_Baby_Skiaclipse/1;Ancient_Card_Baby_Marnoks/1;Ancient_Card_Baby_Hauberk/1;Ancient_Card_Misrus/1;"}},{"itemId":11035434,"className":"SilverBox_dungeonkey_care","name":"Silver Box: 215,000","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SilverBox_care","strArg":"SilverBox_care","numArg1":215000}},{"itemId":11035451,"className":"global_SilverBox_dungeonkey_care","name":"Silver Chest: 100,000","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Vis/100000;"}},{"itemId":11035568,"className":"SilverBox_skillgem_care","name":"Silver Chest: 1,000","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SilverBox_care","strArg":"SilverBox_care","numArg1":1000}},{"itemId":11200054,"className":"misc_reinforce_percentUp_470_NoTrade_10ea","name":"[Lv.470] Enhance Aid (Untradable) x10 Box","type":"Consume","group":"Cube","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_470_NoTrade/10;"}},{"itemId":11200055,"className":"misc_reinforce_percentUp_470_NoTrade_30ea","name":"[Lv.470] Enhance Aid (Untradable) x30 Box","type":"Consume","group":"Cube","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_470_NoTrade/30;"}},{"itemId":11200056,"className":"misc_reinforce_percentUp_470_NoTrade_50ea","name":"[Lv.470] Enhance Aid (Untradable) x50 Box","type":"Consume","group":"Cube","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_470_NoTrade/50;"}},{"itemId":11200094,"className":"SilverBox_dungeonkey_care_10000","name":"Silver Chest: 10,000","type":"Consume","group":"Cube","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SilverBox_care","strArg":"SilverBox_care","numArg1":10000}},{"itemId":11200200,"className":"Baubas_cube","name":"Baubas Cube","type":"Consume","group":"Cube","weight":5,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ALL_USE_BAUBAS_CUBE","strArg":"baubas_cube"}},{"itemId":11200269,"className":"Baubas_cube_2","name":"Baubas Cube (Guild Mission)","type":"Consume","group":"Cube","weight":5,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ALL_USE_BAUBAS_CUBE_2","strArg":"baubas_cube"}},{"itemId":201001,"className":"ColorSpray_1","name":"Spray - Black","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":500,"sellPrice":11,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ITEM_COLOR_SPRAY","numArg1":1,"numArg2":3}},{"itemId":201002,"className":"ColorSpray_2","name":"Spray - Red","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":500,"sellPrice":11,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ITEM_COLOR_SPRAY","numArg1":2,"numArg2":3}},{"itemId":201003,"className":"ColorSpray_3","name":"Spray - White","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":500,"sellPrice":11,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ITEM_COLOR_SPRAY","numArg1":3,"numArg2":3}},{"itemId":201004,"className":"ColorSpray_4","name":"Spray - Orange","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":500,"sellPrice":11,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ITEM_COLOR_SPRAY","numArg1":1,"numArg2":3}},{"itemId":201005,"className":"ColorSpray_5","name":"Spray - Yellow","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":500,"sellPrice":11,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ITEM_COLOR_SPRAY","numArg1":2,"numArg2":3}},{"itemId":201006,"className":"ColorSpray_6","name":"Spray - Green","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":500,"sellPrice":11,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ITEM_COLOR_SPRAY","numArg1":3,"numArg2":3}},{"itemId":490155,"className":"Premium_IndunReset_All","name":"Superior Dungeon Reset Voucher","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Premium_IndunReset_All"}},{"itemId":490156,"className":"Premium_IndunReset_All_14d","name":"Superior Dungeon Reset Voucher: 14 Days","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Premium_IndunReset_All"}},{"itemId":490354,"className":"indunReset_1add_14d_NoStack_Team","name":"Instance One Entry Voucher (14 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494155,"className":"Premium_AddSkillPoint","name":"Skill Point Potion","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":420},{"itemId":640001,"className":"Drug_MAXSTA1","name":"Stamina +5 Potion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":2000,"sellPrice":200,"minLevel":1,"script":{"function":"SCR_USE_ITEM_MaxSTAUP","numArg1":5,"numArg2":5}},{"itemId":640002,"className":"Drug_HP1","name":"Small HP Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP","numArg1":39}},{"itemId":640003,"className":"Drug_HP2","name":"HP Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP","numArg1":66}},{"itemId":640004,"className":"Drug_HP3","name":"Large HP Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":360,"sellPrice":72,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP","numArg1":132}},{"itemId":640005,"className":"Drug_SP1","name":"Small SP Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":120,"sellPrice":24,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP","numArg1":12}},{"itemId":640006,"className":"Drug_SP2","name":"SP Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":480,"sellPrice":96,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP","numArg1":21}},{"itemId":640007,"className":"Drug_SP3","name":"Medium SP Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":1080,"sellPrice":216,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP","numArg1":41}},{"itemId":640008,"className":"Drug_STA1","name":"Small Stamina Pill","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","strArg":"Drug_HealSP_Dot","numArg1":30}},{"itemId":640009,"className":"Drug_STA2","name":"Stamina Pill","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":320,"sellPrice":64,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","strArg":"Drug_HealSP_Dot","numArg1":40}},{"itemId":640010,"className":"Drug_STA3","name":"Big Stamina Pill","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":720,"sellPrice":144,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","numArg1":50}},{"itemId":640011,"className":"Drug_HPSP1","name":"Small Recovery Potion","type":"Consume","group":"Drug","weight":15,"maxStack":32767,"price":75,"sellPrice":15,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHPSP_Dot","numArg1":28}},{"itemId":640012,"className":"Drug_HPSP2","name":"Recovery Potion","type":"Consume","group":"Drug","weight":20,"maxStack":32767,"price":250,"sellPrice":50,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHPSP_Dot","numArg1":46}},{"itemId":640013,"className":"Drug_HPSP3","name":"Large Recovery Potion","type":"Consume","group":"Drug","weight":25,"maxStack":32767,"price":750,"sellPrice":150,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHPSP_Dot","numArg1":93}},{"itemId":640014,"className":"Drug_MaxSTAUP1","name":"STA +5 Potion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":1000,"sellPrice":200,"minLevel":1,"script":{"function":"SCR_USE_ITEM_MaxSTAUP","numArg1":5}},{"itemId":640015,"className":"OnionPiece_Red","name":"Red Kepa Piece","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"OnionPiece_Red"}},{"itemId":640017,"className":"Heal_HP1","name":"HP Recovery Potion (Small)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":100,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP_Dot","numArg1":20}},{"itemId":640018,"className":"Heal_SP1","name":"SP Recovery Potion (Small)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":100,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP_Dot","numArg1":10}},{"itemId":640019,"className":"Drug_MHP1","name":"HP +5 Potion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":500,"sellPrice":50,"minLevel":1,"script":{"function":"SCR_USE_ITEM_MaxHPUP","numArg1":5}},{"itemId":640020,"className":"Drug_MHP2","name":"HP +10 Potion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":500,"sellPrice":50,"minLevel":1,"script":{"function":"SCR_USE_ITEM_MaxHPUP","numArg1":10}},{"itemId":640021,"className":"Drug_Haste1","name":"Movement Speed Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":2,"numArg2":180000}},{"itemId":640022,"className":"Scroll_WarpKlaipe","name":"Warp Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_Warp"}},{"itemId":640024,"className":"Velhider_Food","name":"Companion Food","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"PET_FOOD_USE","strArg":"ham_obj","numArg1":30}},{"itemId":640025,"className":"food_001","name":"Varnalesa","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":125,"sellPrice":21,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSP1","numArg1":32,"numArg2":35}},{"itemId":640026,"className":"food_002","name":"Valerijonas","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640027,"className":"food_003","name":"Ciobrelis","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":85,"sellPrice":17,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","strArg":"ham_obj","numArg1":8}},{"itemId":640028,"className":"food_004","name":"Uosis","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":390,"sellPrice":78,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640029,"className":"food_005","name":"Amalas","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":230,"sellPrice":46,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640030,"className":"food_006","name":"Aviete","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":75,"sellPrice":15,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640032,"className":"food_008","name":"Jonazole","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":335,"sellPrice":67,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640033,"className":"food_009","name":"Mairunas","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":2185,"sellPrice":437,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640034,"className":"food_010","name":"Ramunele","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":120,"sellPrice":24,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640035,"className":"food_011","name":"Raudonelis","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":280,"sellPrice":56,"minLevel":1,"script":{"function":"SCR_USE_ITEM_Raudonelis","strArg":"ham_obj","numArg1":50,"numArg2":60}},{"itemId":640036,"className":"food_012","name":"Onion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":120,"sellPrice":12,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640037,"className":"food_013","name":"Salavijas","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":250,"sellPrice":50,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640038,"className":"food_014","name":"Dilgele","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":155,"sellPrice":31,"minLevel":1,"script":{"function":"SCR_USE_ITEM_Dilgele","strArg":"ham_obj","numArg1":50,"numArg2":60}},{"itemId":640039,"className":"food_015","name":"Medus","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":70,"sellPrice":14,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640041,"className":"food_017","name":"Acorn","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640042,"className":"food_018","name":"Truffle","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":20740,"sellPrice":2074,"minLevel":1,"script":{"function":"SCR_USE_ITEM_Truffle","strArg":"ham_obj","numArg1":350,"numArg2":400}},{"itemId":640043,"className":"food_019","name":"Flower Bun","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640044,"className":"food_020","name":"Pine Mushroom","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":268,"sellPrice":53,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddHPSP1","numArg1":30,"numArg2":30}},{"itemId":640045,"className":"food_021","name":"Bezoar","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"ham_obj","numArg1":500,"numArg2":500}},{"itemId":640046,"className":"food_022","name":"Red Ox","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_RedOxBuff"}},{"itemId":640047,"className":"food_023","name":"Hardtack","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640048,"className":"food_024","name":"Firent Fruit","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640049,"className":"food_025","name":"Mangosteen","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640050,"className":"food_026","name":"Peach","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640051,"className":"food_027","name":"Surstromming","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Surstromming","strArg":"ham_obj"}},{"itemId":640052,"className":"food_028","name":"Durian","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":11100,"sellPrice":1110,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640053,"className":"food_029","name":"Strawberry","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_DotHealHP","numArg1":16}},{"itemId":640054,"className":"food_030","name":"Fruit of Wisdom","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640055,"className":"food_031","name":"Lemon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640056,"className":"Drug_aggro","name":"Aggro Potion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":10,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddHP1","numArg1":370,"numArg2":410}},{"itemId":640057,"className":"food_mandragora","name":"Mandragora","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640071,"className":"food_032","name":"Garlic","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":8350,"sellPrice":835,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640072,"className":"food_Popolion","name":"Popolion Meat","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":200,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddHP1","numArg1":80,"numArg2":100}},{"itemId":640073,"className":"Scroll_Warp_Klaipe","name":"Klaipeda Warp Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":500,"sellPrice":100,"minLevel":1,"script":{"function":"SCR_USE_ITEM_WARP_KLAIPE","strArg":"c_Klaipe"}},{"itemId":640074,"className":"Scroll_Add_Medal","name":"TP Chest","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_MEDAL"}},{"itemId":640075,"className":"Drug_Detoxifiy","name":"Antidote ","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":100,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DETOXIFIY"}},{"itemId":640076,"className":"food_Velhider","name":"Velheider's Food","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":489,"sellPrice":97,"minLevel":1,"script":{"function":"PET_FOOD_USE","strArg":"ham_obj","numArg1":60,"numArg2":1}},{"itemId":640077,"className":"food_hoglan_Pet","name":"Hoglan's Food","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":1728,"sellPrice":345,"minLevel":1,"script":{"function":"PET_FOOD_USE","strArg":"ham_obj","numArg1":60,"numArg2":2}},{"itemId":640078,"className":"food_Pet_arma","name":"Arma's Food","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":1152,"sellPrice":230,"minLevel":1,"script":{"function":"PET_FOOD_USE","strArg":"ham_obj","numArg1":60,"numArg2":3}},{"itemId":640079,"className":"Scroll_Warp_quest","name":"Basic Warp Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_Warp"}},{"itemId":640080,"className":"expCard1","name":"Lv1 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"XpCard","numArg1":500}},{"itemId":640081,"className":"expCard2","name":"Lv2 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":5,"script":{"strArg":"XpCard","numArg1":2686}},{"itemId":640082,"className":"expCard3","name":"Lv3 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":20,"script":{"strArg":"XpCard","numArg1":8442}},{"itemId":640083,"className":"expCard4","name":"Lv3 EXP Card (Deletion)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_EXPCARD","numArg1":8442}},{"itemId":640084,"className":"expCard5","name":"Lv4 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":30,"script":{"strArg":"XpCard","numArg1":22860}},{"itemId":640085,"className":"expCard6","name":"Lv5 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":60,"script":{"strArg":"XpCard","numArg1":24571}},{"itemId":640086,"className":"expCard7","name":"Lv6 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":70,"script":{"strArg":"XpCard","numArg1":60312}},{"itemId":640087,"className":"Drug_AddMaxHP1","name":"HP Increase Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_MaxHPUP","numArg1":50}},{"itemId":640088,"className":"Drug_AddMaxSP1","name":"SP Increase Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_MaxSPUP","numArg1":20}},{"itemId":640089,"className":"Drug_AddMaxSTA1","name":"Stamina Increase Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_MaxSTAUP","numArg1":5}},{"itemId":640090,"className":"Drug_AddMaxWeight1","name":"Weight Increase Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_MaxWeightUP","numArg1":100}},{"itemId":640091,"className":"Drug_HP1_Q","name":"Basic Small HP Potion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP_MHP","numArg1":25}},{"itemId":640092,"className":"Drug_HP2_Q","name":"Basic HP Potion Supply","type":"Consume","group":"Drug","weight":3,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP_MHP","numArg1":41}},{"itemId":640093,"className":"Drug_HP3_Q","name":"Basic Large HP Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP_MHP","numArg1":82}},{"itemId":640094,"className":"Drug_SP1_Q","name":"Basic Small SP Potion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP_MSP","numArg1":15}},{"itemId":640095,"className":"Drug_SP2_Q","name":"Basic SP Potion","type":"Consume","group":"Drug","weight":3,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP_MSP","numArg1":26}},{"itemId":640096,"className":"Drug_SP3_Q","name":"Basic Medium SP Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP_MSP","numArg1":51}},{"itemId":640097,"className":"Drug_STA1_Q","name":"Basic Small Stamina Pill","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","numArg1":15}},{"itemId":640098,"className":"Drug_STA2_Q","name":"Basic Stamina Pill","type":"Consume","group":"Drug","weight":3,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","numArg1":30}},{"itemId":640099,"className":"Drug_STA3_Q","name":"Basic Big Stamina Pill","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","numArg1":45}},{"itemId":640100,"className":"Drug_HPSP1_Q","name":"Basic Small Recovery Potion","type":"Consume","group":"Drug","weight":3,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHPSP_Dot","numArg1":28}},{"itemId":640101,"className":"Drug_HPSP2_Q","name":"Basic Recovery Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHPSP_Dot","numArg1":46}},{"itemId":640102,"className":"Drug_HPSP3_Q","name":"Basic Large Recovery Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHPSP_Dot","numArg1":93}},{"itemId":640103,"className":"Drug_Haste1_Q","name":"Basic Movement Speed Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":2,"numArg2":180000}},{"itemId":640104,"className":"Drug_AddSTR1","name":"STR Increase Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_STRUP","numArg1":1}},{"itemId":640105,"className":"Drug_AddDEX1","name":"DEX Increase Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DEXUP","numArg1":1}},{"itemId":640106,"className":"Drug_AddCON1","name":"CON Increase Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_CONUP","numArg1":1}},{"itemId":640107,"className":"Drug_AddINT1","name":"INT Increase Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_INTUP","numArg1":1}},{"itemId":640108,"className":"Drug_AddMNA1","name":"SPR Increase Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_MNAUP","numArg1":1}},{"itemId":640109,"className":"Drug_AddStat","name":"Status Increase Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_STATUP","numArg1":1}},{"itemId":640110,"className":"Drug_AddMaxWeight2","name":"Weight Increase Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_MaxWeightUP","numArg1":50}},{"itemId":640111,"className":"Drug_CooltimeDown","name":"Cooldown Time Potion (CBT Test Purposes)","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_Drug_CooltimeDown","strArg":"Drug_CooltimeDown"}},{"itemId":640112,"className":"Scroll_StatReset_CBT","name":"Stat Reset Scroll [Remove]","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_Scroll_StatReset_CBT","strArg":"Drug_CooltimeDown"}},{"itemId":640113,"className":"expCard8","name":"Lv7 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":100,"script":{"strArg":"XpCard","numArg1":142150}},{"itemId":640114,"className":"expCard9","name":"Lv8 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":120,"script":{"strArg":"XpCard","numArg1":209334}},{"itemId":640115,"className":"squire_food_01","name":"Sandwich","type":"Consume","group":"Drug","weight":15,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"squire_food2_buff","numArg1":1,"numArg2":600000}},{"itemId":640116,"className":"squire_food_02","name":"Soup","type":"Consume","group":"Drug","weight":15,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_DotHealHP","numArg1":40}},{"itemId":640117,"className":"squire_food_03","name":"Salad","type":"Consume","group":"Drug","weight":15,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"squire_food1_buff","numArg1":1,"numArg2":600000}},{"itemId":640118,"className":"crystal_air","name":"Air Purification Crystal","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_crystal_Poison","numArg1":60000}},{"itemId":640119,"className":"crystal_life","name":"Life Crystal","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP","numArg1":57}},{"itemId":640120,"className":"crystal_mind","name":"Composure Crystal","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP","numArg1":30}},{"itemId":640121,"className":"crystal_speed","name":"Swiftness Crystal","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":2,"numArg2":180000}},{"itemId":640122,"className":"crystal_dust","name":"Ground Crystal Powder","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_crystal_dust","numArg1":60000}},{"itemId":640123,"className":"food_033","name":"White Bread","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":128,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddHP1","numArg1":30,"numArg2":30}},{"itemId":640124,"className":"food_034","name":"Lettuce","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":185,"sellPrice":37,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSP1","numArg1":30,"numArg2":30}},{"itemId":640125,"className":"food_035","name":"Milk","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":153,"sellPrice":30,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","numArg1":5,"numArg2":5}},{"itemId":640126,"className":"expCard10","name":"Lv9 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":150,"script":{"strArg":"XpCard","numArg1":237943}},{"itemId":640127,"className":"expCard11","name":"Lv10 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":180,"script":{"strArg":"XpCard","numArg1":541023}},{"itemId":640128,"className":"expCard12","name":"Lv11 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":210,"script":{"strArg":"XpCard","numArg1":985061}},{"itemId":640129,"className":"expCard13","name":"Lv12 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":250,"script":{"strArg":"XpCard","numArg1":2420238}},{"itemId":640131,"className":"Drug_lapasape","name":"Lapasape Mushroom","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":268,"sellPrice":53,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"item_poison","numArg1":30,"numArg2":30}},{"itemId":640132,"className":"Reward_PartyQuest","name":"Party Quest Reward Chest","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"GIVE_REWARD_PARTYQUEST","strArg":"Normal"}},{"itemId":640133,"className":"Achieve_CBT3_RANK6_1","name":"Title - Ausrine's Incarnation","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_CBT3_RANK6_1","strArg":"Normal"}},{"itemId":640134,"className":"Achieve_CBT3_RANK6_10","name":"Title - Ausrine's Hero","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_CBT3_RANK6_10","strArg":"Normal"}},{"itemId":640135,"className":"Scroll_SkillReset_CBT","name":"Skill Reset Scroll","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_Scroll_SkillReset_CBT","strArg":"Drug_CooltimeDown"}},{"itemId":640139,"className":"Achieve_IamDeveloper","name":"Title - Developer","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_IAMDEVELOPER","strArg":"Normal"}},{"itemId":640140,"className":"Drug_deadparts","name":"Corpse Parts Urn","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":500,"sellPrice":100,"minLevel":1,"script":{"function":"SCR_USE_ADDDPARTS","numArg1":30}},{"itemId":640141,"className":"expCard_Max","name":"Lv 170 EXP Boost","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_EXP_LV200","numArg1":106850600}},{"itemId":640142,"className":"jexpCard_UpRank2","name":"Class EXP Recovery Card (1st)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_JEXP_MAX"}},{"itemId":640143,"className":"jexpCard_UpRank3","name":"Class EXP Recovery Card (2nd)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_JEXP_MAX"}},{"itemId":640144,"className":"jexpCard_UpRank4","name":"Class EXP Recovery Card (3rd)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_JEXP_MAX"}},{"itemId":640145,"className":"jexpCard_UpRank5","name":"Class EXP Recovery Card (4th)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_JEXP_MAX"}},{"itemId":640146,"className":"jexpCard_UpRank6","name":"No Function","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":640147,"className":"potion_hairColor_01","name":"Dye: Black","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HAIRCOLOR","strArg":"black"}},{"itemId":640148,"className":"potion_hairColor_02","name":"Dye: Blue","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HAIRCOLOR","strArg":"blue"}},{"itemId":640149,"className":"potion_hairColor_03","name":"Dye: White","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HAIRCOLOR","strArg":"white"}},{"itemId":640150,"className":"potion_hairColor_04","name":"Dye: Pink","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HAIRCOLOR","strArg":"pink"}},{"itemId":640151,"className":"Guild_Tower01","name":"Build Guild Tower","type":"Consume","group":"Drug","weight":100,"maxStack":32767,"price":100000,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_ITEM_GUILDTOWER"}},{"itemId":640152,"className":"food_companion","name":"Companion Food","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":489,"sellPrice":97,"minLevel":1,"script":{"function":"PET_FOOD_USE","strArg":"ham_obj","numArg1":60}},{"itemId":640153,"className":"Guild_Academy01","name":"Academy","type":"Consume","group":"Drug","weight":100,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_AGIT_ACADEMY","strArg":"Academy"}},{"itemId":640156,"className":"Scroll_Warp_Orsha","name":"Orsha Warp Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":500,"sellPrice":100,"minLevel":1,"script":{"function":"SCR_USE_ITEM_WARP_ORSHA","strArg":"c_orsha"}},{"itemId":640157,"className":"Drug_d_underfortress_30_1_1","name":"Incomplete Ruklys Brew","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_SR","numArg1":1,"numArg2":60000}},{"itemId":640158,"className":"Drug_d_underfortress_30_1_2","name":"Complete Ruklys Brew","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_SR","numArg1":3,"numArg2":180000}},{"itemId":640159,"className":"Drug_CRTHR_GIMMICK1","name":"Might Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":500,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_CRTATK","numArg1":24,"numArg2":60000}},{"itemId":640160,"className":"Drug_CRTHR_GIMMICK2","name":"Condensed Might Potion","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":500,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_CRTATK","numArg1":36,"numArg2":30000}},{"itemId":640161,"className":"Drug_PATK_GIMMICK1","name":"Strength Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":500,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_PATK","numArg1":35,"numArg2":60000}},{"itemId":640162,"className":"Drug_PATK_GIMMICK2","name":"Condensed Strength Potion","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":500,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_PATK","numArg1":65,"numArg2":30000}},{"itemId":640163,"className":"Drug_CRTATK_GIMMICK1","name":"Physical Critical Damage Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_CRTATK","numArg1":80,"numArg2":120000}},{"itemId":640164,"className":"Drug_ResFire_GIMMICK1","name":"Fire Property Resistance Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_ResFire","numArg1":30,"numArg2":60000}},{"itemId":640165,"className":"Drug_ResIce_GIMMICK1","name":"Ice Property Resistance Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_ResIce","numArg1":30,"numArg2":60000}},{"itemId":640166,"className":"Drug_ResPoison_GIMMICK1","name":"Poison Property Resistance Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_ResPoison","numArg1":30,"numArg2":60000}},{"itemId":640167,"className":"Drug_ResEarth_GIMMICK1","name":"Earth Property Resistance Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_ResEarth","numArg1":30,"numArg2":60000}},{"itemId":640168,"className":"Drug_ResLightning_GIMMICK1","name":"Lightning Property Resistance Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_ResLightning","numArg1":30,"numArg2":60000}},{"itemId":640169,"className":"Drug_MDEF_GIMMICK1","name":"Magic Defense Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_MDEF","numArg1":20,"numArg2":60000}},{"itemId":640170,"className":"Drug_MATK_GIMMICK1","name":"Magic Attack Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_MATK","numArg1":35,"numArg2":60000}},{"itemId":640171,"className":"GIMMICK_TRANSFORM_POPOLION","name":"Transformation Scroll: Popolion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GIMMICK_TRANSFORM_POPOLION"}},{"itemId":640172,"className":"GIMMICK_TRANSFORM_FERRET","name":"Transformation Scroll: Ferret","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GIMMICK_TRANSFORM_FERRET"}},{"itemId":640173,"className":"GIMMICK_TRANSFORM_TINY","name":"Transformation Scroll: Tini","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GIMMICK_TRANSFORM_TINY"}},{"itemId":640174,"className":"GIMMICK_TRANSFORM_PHANTO","name":"Transformation Scroll: Panto","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GIMMICK_TRANSFORM_PHANTO"}},{"itemId":640175,"className":"GIMMICK_TRANSFORM_HONEY","name":"Transformation Scroll: Honeybean","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GIMMICK_TRANSFORM_HONEY"}},{"itemId":640176,"className":"GIMMICK_TRANSFORM_ONION","name":"Transformation Scroll: Kepa","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GIMMICK_TRANSFORM_ONION"}},{"itemId":640177,"className":"GIMMICK_TRANSFORM_JUKOPUS","name":"Transformation Scroll: Jukopus","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GIMMICK_TRANSFORM_JUKOPUS"}},{"itemId":640178,"className":"Drug_HP_GIMMICK1","name":"Kalejimas HP Potion","type":"Consume","group":"Drug","weight":15,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP","numArg1":313}},{"itemId":640179,"className":"Drug_SP_GIMMICK1","name":"Kalejimas SP Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP","numArg1":104}},{"itemId":640180,"className":"Drug_HP_GIMMICK2","name":"Alemeth HP Potion","type":"Consume","group":"Drug","weight":15,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP","numArg1":230}},{"itemId":640181,"className":"Drug_SP_GIMMICK2","name":"Alemeth SP Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP","numArg1":76}},{"itemId":640182,"className":"Scroll_Warp_Fedimian","name":"Fedimian Warp Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":1000,"sellPrice":200,"minLevel":1,"script":{"function":"SCR_USE_ITEM_WARP_FEDIMIAN","strArg":"c_fedimian"}},{"itemId":640183,"className":"Achieve_PlayCBT1","name":"Title - Beginning of Savior","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_PLAYCBT1","strArg":"Normal"}},{"itemId":640184,"className":"Drug_HP_GIMMICK3","name":"Taumas HP Potion","type":"Consume","group":"Drug","weight":15,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP","numArg1":346}},{"itemId":640185,"className":"Drug_SP_GIMMICK3","name":"Rasvoy SP Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP","numArg1":115}},{"itemId":640186,"className":"food_Piggy","name":"Feed","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"PET_FOOD_USE","strArg":"ham_obj","numArg1":60,"numArg2":6}},{"itemId":640187,"className":"food_Lesser_panda","name":"Bamboo","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"PET_FOOD_USE","strArg":"ham_obj","numArg1":60,"numArg2":5}},{"itemId":640188,"className":"food_Toucan","name":"Tropical Fruit","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":10254,"sellPrice":0,"minLevel":1,"script":{"function":"PET_FOOD_USE","strArg":"ham_obj","numArg1":60,"numArg2":8}},{"itemId":640189,"className":"food_Guineapig","name":"Alfalfa","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":10254,"sellPrice":0,"minLevel":1,"script":{"function":"PET_FOOD_USE","strArg":"alfalfa","numArg1":60,"numArg2":9}},{"itemId":640190,"className":"food_owl","name":"Raw Meat","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"PET_FOOD_USE","strArg":"ham_obj","numArg1":60,"numArg2":10}},{"itemId":640191,"className":"Drug_Detoxifiy_Q","name":"Basic Antidote","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DETOXIFIY"}},{"itemId":640192,"className":"food_bread884","name":"Warm Bread Roll","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_BREAD884","strArg":"ham_obj"}},{"itemId":640193,"className":"food_strangePotion","name":"Strange Potion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_STRANGEPOTION","strArg":"ham_obj"}},{"itemId":640194,"className":"Drug_AriesAtk_PC","name":"Attack Boost Potion: Pierce","type":"Consume","group":"Drug","weight":2,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_AriesAtk_PC","numArg1":5,"numArg2":300000}},{"itemId":640195,"className":"Drug_SlashAtk_PC","name":"Attack Boost Potion: Slash","type":"Consume","group":"Drug","weight":2,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_SlashAtk_PC","numArg1":5,"numArg2":300000}},{"itemId":640196,"className":"Drug_StrikeAtk_PC","name":"Attack Boost Potion: Strike","type":"Consume","group":"Drug","weight":2,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_StrikeAtk_PC","numArg1":5,"numArg2":300000}},{"itemId":640197,"className":"Drug_MissileAtk_PC","name":"Attack Boost Potion: Missile","type":"Consume","group":"Drug","weight":2,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_MissileAtk_PC","numArg1":5,"numArg2":300000}},{"itemId":640198,"className":"Drug_FireAtk_PC","name":"Attack Boost Potion: Fire","type":"Consume","group":"Drug","weight":2,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_FireAtk_PC","numArg1":5,"numArg2":300000}},{"itemId":640199,"className":"Drug_IceAtk_PC","name":"Attack Boost Potion: Ice","type":"Consume","group":"Drug","weight":2,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_IceAtk_PC","numArg1":5,"numArg2":300000}},{"itemId":640200,"className":"Drug_PoisonAtk_PC","name":"Attack Boost Potion: Poison","type":"Consume","group":"Drug","weight":2,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_PoisonAtk_PC","numArg1":5,"numArg2":300000}},{"itemId":640201,"className":"Drug_LightningAtk_PC","name":"Attack Boost Potion: Lightning","type":"Consume","group":"Drug","weight":2,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_LightningAtk_PC","numArg1":5,"numArg2":300000}},{"itemId":640202,"className":"Drug_EarthAtk_PC","name":"Attack Boost Potion: Earth","type":"Consume","group":"Drug","weight":2,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_EarthAtk_PC","numArg1":5,"numArg2":300000}},{"itemId":640203,"className":"Drug_HolyAtk_PC","name":"Attack Boost Potion: Holy","type":"Consume","group":"Drug","weight":2,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_HolyAtk_PC","numArg1":5,"numArg2":300000}},{"itemId":640204,"className":"Drug_DarkAtk_PC","name":"Attack Boost Potion: Dark","type":"Consume","group":"Drug","weight":2,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_DarkAtk_PC","numArg1":5,"numArg2":300000}},{"itemId":640205,"className":"Drug_AriesDef_PC","name":"Defense Boost Potion: Pierce","type":"Consume","group":"Drug","weight":2,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_AriesDef_PC","numArg1":5,"numArg2":300000}},{"itemId":640206,"className":"Drug_SlashDef_PC","name":"Defense Boost Potion: Slash","type":"Consume","group":"Drug","weight":2,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_SlashDef_PC","numArg1":5,"numArg2":300000}},{"itemId":640207,"className":"Drug_StrikeDef_PC","name":"Defense Boost Potion: Strike","type":"Consume","group":"Drug","weight":2,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_StrikeDef_PC","numArg1":5,"numArg2":300000}},{"itemId":640208,"className":"Drug_MissileDef_PC","name":"Defense Boost Potion: Missile","type":"Consume","group":"Drug","weight":2,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_MissileDef_PC","numArg1":5,"numArg2":300000}},{"itemId":640209,"className":"Drug_FireDef_PC","name":"Defense Boost Potion: Fire","type":"Consume","group":"Drug","weight":2,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_FireDef_PC","numArg1":5,"numArg2":300000}},{"itemId":640210,"className":"Drug_IceDef_PC","name":"Defense Boost Potion: Ice","type":"Consume","group":"Drug","weight":2,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_IceDef_PC","numArg1":5,"numArg2":300000}},{"itemId":640211,"className":"Drug_PoisonDef_PC","name":"Defense Boost Potion: Poison","type":"Consume","group":"Drug","weight":2,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_PoisonDef_PC","numArg1":5,"numArg2":300000}},{"itemId":640212,"className":"Drug_LightningDef_PC","name":"Defense Boost Potion: Lightning","type":"Consume","group":"Drug","weight":2,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_LightningDef_PC","numArg1":5,"numArg2":300000}},{"itemId":640213,"className":"Drug_EarthDef_PC","name":"Defense Boost Potion: Earth","type":"Consume","group":"Drug","weight":2,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_EarthDef_PC","numArg1":5,"numArg2":300000}},{"itemId":640214,"className":"Drug_HolyDef_PC","name":"Defense Boost Potion: Holy","type":"Consume","group":"Drug","weight":2,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_HolyDef_PC","numArg1":5,"numArg2":300000}},{"itemId":640215,"className":"Drug_DarkDef_PC","name":"Defense Boost Potion: Dark","type":"Consume","group":"Drug","weight":2,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_DarkDef_PC","numArg1":5,"numArg2":300000}},{"itemId":640216,"className":"food_036","name":"Rosemary","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640217,"className":"food_037","name":"Lavender","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640218,"className":"expCard_160225","name":"Reward EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_EXPCARD","numArg1":479397}},{"itemId":640219,"className":"Achieve_storyTeller","name":"Title - Story Teller","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_STORYTELLER","strArg":"Normal"}},{"itemId":640220,"className":"Drug_redox_evt","name":"Basic Red Ox","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":500,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_RedOxBuff"}},{"itemId":640221,"className":"Drug_GIMMICK_PMDEF1","name":"Physical+Magic Defense Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":500,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_WDEF","numArg1":20,"numArg2":60000}},{"itemId":640222,"className":"GIMMICK_Drug_HP1","name":"Keista HP Potion Lv1","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":100,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP","numArg1":267}},{"itemId":640223,"className":"GIMMICK_Drug_HP2","name":"Keista HP Potion Lv2","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":100,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP","numArg1":321}},{"itemId":640224,"className":"GIMMICK_Drug_HP3","name":"Keista HP Potion Lv3","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":100,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP","numArg1":385}},{"itemId":640225,"className":"GIMMICK_Drug_SP1","name":"Keista SP Potion Lv1","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":100,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP","numArg1":223}},{"itemId":640226,"className":"GIMMICK_Drug_SP2","name":"Keista SP Potion Lv2","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":100,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP","numArg1":267}},{"itemId":640227,"className":"GIMMICK_Drug_SP3","name":"Keista SP Potion Lv3","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":100,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP","numArg1":321}},{"itemId":640228,"className":"GIMMICK_Drug_HPSP1","name":"Keista Restoration Potion Lv1","type":"Consume","group":"Drug","weight":20,"maxStack":32767,"price":100,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHPSP_Dot","numArg1":373}},{"itemId":640229,"className":"GIMMICK_Drug_PMDEF1","name":"Keista Protective Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Whole_DEF","numArg1":100,"numArg2":180000}},{"itemId":640231,"className":"food_penguin2","name":"Anchovy","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":5127,"sellPrice":0,"minLevel":1,"script":{"function":"PET_FOOD_USE","strArg":"sardina","numArg1":15,"numArg2":11}},{"itemId":640232,"className":"GIMMICK_Drug_PMATK1","name":"Keistas Bravery Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Whole_ATK","numArg1":55,"numArg2":180000}},{"itemId":640233,"className":"expCard14","name":"Lv13 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":275,"script":{"strArg":"XpCard","numArg1":3630357}},{"itemId":640234,"className":"expCard15","name":"Lv14 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":300,"script":{"strArg":"XpCard","numArg1":13189740}},{"itemId":640235,"className":"expCard16","name":"Lv15 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":320,"script":{"strArg":"XpCard","numArg1":31212630}},{"itemId":640236,"className":"food_tomato","name":"Tomato","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":300,"sellPrice":0,"minLevel":1,"script":{"function":"PET_FOOD_USE","strArg":"sardina","numArg1":60,"numArg2":5}},{"itemId":640237,"className":"Drug_PvP_MSPD3","name":"Movement Speed Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":3,"numArg2":250000}},{"itemId":640238,"className":"GIMMICK_Drug_HPSP2","name":"Keista Restoration Potion Lv2","type":"Consume","group":"Drug","weight":20,"maxStack":32767,"price":100,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHPSP_Dot","numArg1":480}},{"itemId":640239,"className":"GIMMICK_Drug_HPSP3","name":"Keista Restoration Potion Lv3","type":"Consume","group":"Drug","weight":20,"maxStack":32767,"price":100,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHPSP_Dot","numArg1":617}},{"itemId":640240,"className":"Use_item_enchantBomb","name":"Enchant Round","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":100,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_ITEM_EnchantBomb","numArg1":617}},{"itemId":640241,"className":"Drug_Nomention_Potion1","name":"Unknown Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":666,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_Drug_Emtpy1","strArg":"Drug_CooltimeDown"}},{"itemId":640242,"className":"Drug_Nomention_Potion2","name":"A potion with unknown ingredients.","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":666,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_Drug_Emtpy2","strArg":"Drug_CooltimeDown"}},{"itemId":640243,"className":"Achieve_IamGoldHand1","name":"Title - Outstanding Golden Hands","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_IAMGOLDHAND01","strArg":"Normal"}},{"itemId":640245,"className":"Achieve_Geographer","name":"Title - Shady Geologist","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_GEOGRAPHER","strArg":"Normal"}},{"itemId":640246,"className":"GIMMICK_Drug_PMATK2","name":"Keitrys Bravery Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_ATK_Gimmick01","numArg1":76,"numArg2":180000}},{"itemId":640247,"className":"GIMMICK_Drug_Restore01","name":"Keitrys Recovery Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_SPUP_Gimmick01","numArg1":2000,"numArg2":180000}},{"itemId":640248,"className":"GIMMICK_Drug_PMDEF2","name":"Keitrys Protective Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_WholeDEF_gimmick01","numArg1":2000,"numArg2":180000}},{"itemId":640249,"className":"food_cereal02","name":"Handful of Grain","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":5127,"sellPrice":0,"minLevel":1,"script":{"function":"PET_FOOD_USE","strArg":"cereal","numArg1":15,"numArg2":12}},{"itemId":640251,"className":"food_038","name":"Grape","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":328,"sellPrice":125,"minLevel":1,"script":{"strArg":"ham_obj","numArg1":500,"numArg2":500}},{"itemId":640252,"className":"food_039","name":"BBQ","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":165,"sellPrice":31,"minLevel":1,"script":{"strArg":"ham_obj","numArg1":500,"numArg2":500}},{"itemId":640253,"className":"food_040","name":"Spring Onion","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":453,"sellPrice":151,"minLevel":1,"script":{"strArg":"ham_obj","numArg1":500,"numArg2":500}},{"itemId":640254,"className":"food_041","name":"Kebab Meat","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":212,"sellPrice":71,"minLevel":1,"script":{"strArg":"ham_obj","numArg1":500,"numArg2":500}},{"itemId":640255,"className":"Achieve_Swordman","name":"Title - Undefeated Blade","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_TEAMBATTLE_STEAM","strArg":"Normal","numArg1":1}},{"itemId":640256,"className":"Achieve_Wizard","name":"Title - Knowing One","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_TEAMBATTLE_STEAM","strArg":"Normal","numArg1":2}},{"itemId":640257,"className":"Achieve_Archer","name":"Title - Heaven Piercer","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_TEAMBATTLE_STEAM","strArg":"Normal","numArg1":3}},{"itemId":640258,"className":"Achieve_Cleric","name":"Title - Lifemaker","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_TEAMBATTLE_STEAM","strArg":"Normal","numArg1":4}},{"itemId":640259,"className":"GIMMICK_Drug_HPSP4","name":"Keista Restoration Potion Lv4","type":"Consume","group":"Drug","weight":22,"maxStack":32767,"price":100,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHPSP_Dot","numArg1":831}},{"itemId":640260,"className":"Achieve_CreativeSou","name":"Title - Creative Soul","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_CREATIVESOUL","strArg":"Normal"}},{"itemId":640268,"className":"GIMMICK_Drug_HPSP1_TA","name":"Condensed Keista Restoration Potion Lv1","type":"Consume","group":"Drug","weight":20,"maxStack":32767,"price":100,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHPSP_Dot","numArg1":373}},{"itemId":640269,"className":"GIMMICK_Drug_PMDEF1_TA","name":"Condensed Keista Protective Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Whole_DEF","numArg1":100,"numArg2":180000}},{"itemId":640270,"className":"GIMMICK_Drug_PMATK1_TA","name":"Condensed Keistas Bravery Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Whole_ATK","numArg1":55,"numArg2":180000}},{"itemId":640271,"className":"Drug_PvP_MSPD3_TA","name":"Condensed Movement Speed Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":3,"numArg2":250000}},{"itemId":640272,"className":"expCard_C","name":"Basic EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_EXPCARD","numArg1":142150}},{"itemId":640273,"className":"expCard_B","name":"Intermediate EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_EXPCARD","numArg1":237943}},{"itemId":640275,"className":"expCard_A","name":"Advanced EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_EXPCARD","numArg1":541023}},{"itemId":640277,"className":"Drug_MSPD2_1h_TA","name":"Movement Speed Potion: 1 Hour","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":2,"numArg2":3600000}},{"itemId":640278,"className":"Drug_RedApple100_TA","name":"Elixir of HP Recovery","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100HP_Dot","numArg1":50,"numArg2":11000}},{"itemId":640279,"className":"Drug_BlueApple100_TA","name":"Elixir of SP Recovery","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100SP_Dot","numArg1":50,"numArg2":11000}},{"itemId":640280,"className":"jexpCard_UpRank7","name":"No Function","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":640281,"className":"jexpCard_UpRank8","name":"No Function","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":640282,"className":"Achieve_HauntedArtist","name":"Haunted Artist","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_HAUNTEDARTIST","strArg":"Normal"}},{"itemId":640284,"className":"Drug_AriesAtk_PC_02","name":"Attack Boost Potion: Pierce Lv2","type":"Consume","group":"Drug","weight":3,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_AriesAtk_PC","numArg1":7,"numArg2":300000}},{"itemId":640285,"className":"Drug_SlashAtk_PC_02","name":"Attack Boost Potion: Slash Lv2","type":"Consume","group":"Drug","weight":3,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_SlashAtk_PC","numArg1":7,"numArg2":300000}},{"itemId":640286,"className":"Drug_StrikeAtk_PC_02","name":"Attack Boost Potion: Strike Lv2","type":"Consume","group":"Drug","weight":3,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_StrikeAtk_PC","numArg1":7,"numArg2":300000}},{"itemId":640287,"className":"Drug_MissileAtk_PC_02","name":"Attack Boost Potion: Missile Lv2","type":"Consume","group":"Drug","weight":3,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_MissileAtk_PC","numArg1":7,"numArg2":300000}},{"itemId":640288,"className":"Drug_FireAtk_PC_02","name":"Attack Boost Potion: Fire Lv2","type":"Consume","group":"Drug","weight":3,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_FireAtk_PC","numArg1":7,"numArg2":300000}},{"itemId":640289,"className":"Drug_IceAtk_PC_02","name":"Attack Boost Potion: Ice Lv2","type":"Consume","group":"Drug","weight":3,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_IceAtk_PC","numArg1":7,"numArg2":300000}},{"itemId":640290,"className":"Drug_PoisonAtk_PC_02","name":"Attack Boost Potion: Poison Lv2","type":"Consume","group":"Drug","weight":3,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_PoisonAtk_PC","numArg1":7,"numArg2":300000}},{"itemId":640291,"className":"Drug_LightningAtk_PC_02","name":"Attack Boost Potion: Lightning Lv2","type":"Consume","group":"Drug","weight":3,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_LightningAtk_PC","numArg1":7,"numArg2":300000}},{"itemId":640292,"className":"Drug_EarthAtk_PC_02","name":"Attack Boost Potion: Earth Lv2","type":"Consume","group":"Drug","weight":3,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_EarthAtk_PC","numArg1":7,"numArg2":300000}},{"itemId":640293,"className":"Drug_HolyAtk_PC_02","name":"Attack Boost Potion: Holy Lv2","type":"Consume","group":"Drug","weight":3,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_HolyAtk_PC","numArg1":7,"numArg2":300000}},{"itemId":640294,"className":"Drug_DarkAtk_PC_02","name":"Attack Boost Potion: Dark Lv2","type":"Consume","group":"Drug","weight":3,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_DarkAtk_PC","numArg1":7,"numArg2":300000}},{"itemId":640296,"className":"jexpCard_UpRank9","name":"No Function","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":640297,"className":"Achieve_TheGiftedArtist","name":"Title - The Gifted Artist","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_GIFTEDARTIST","strArg":"Normal"}},{"itemId":640298,"className":"Achieve_EV_Luck1","name":"Title - Tough Luck","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_EV_LUCK","strArg":"Normal","numArg1":1}},{"itemId":640299,"className":"Achieve_EV_Luck2","name":"Title - Lucky One","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_EV_LUCK","strArg":"Normal","numArg1":2}},{"itemId":640300,"className":"Achieve_EV_Luck3","name":"Title - Golden Luck","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_EV_LUCK","strArg":"Normal","numArg1":3}},{"itemId":640301,"className":"Achieve_EV_Luck4","name":"Title - Eternal Fortune","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_EV_LUCK","strArg":"Normal","numArg1":4}},{"itemId":640302,"className":"Drug_Fortunecookie","name":"Fortune Cookie","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_Item","strArg":"Premium_Fortunecookie","numArg2":1800000}},{"itemId":640303,"className":"Drug_Valentine_Choco","name":"Valentine Chocolates","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_VALENTINE_2017","strArg":"Premium_Fortunecookie","numArg2":1800000}},{"itemId":640304,"className":"Achieve_Valentine2017_1","name":"Title - Life is Sweet","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_VALENTINE2017","strArg":"Normal","numArg1":1}},{"itemId":640305,"className":"Achieve_Valentine2017_2","name":"Title - Diet Starts Tomorrow","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_VALENTINE2017","strArg":"Normal","numArg1":2}},{"itemId":640306,"className":"Achieve_Valentine2017_3","name":"Title - Chocolate Meister","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_VALENTINE2017","strArg":"Normal","numArg1":3}},{"itemId":640307,"className":"Achieve_Valentine2017_4","name":"Title - High Glucose","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_VALENTINE2017","strArg":"Normal","numArg1":4}},{"itemId":640308,"className":"Achieve_Valentine2017_5","name":"Title - Chocoholic","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_VALENTINE2017","strArg":"Normal","numArg1":5}},{"itemId":640309,"className":"Achieve_EV_Passionate_Artist","name":"Title - Passionate Artist","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_PASSIONATE_ARTIST","strArg":"Normal","numArg1":5}},{"itemId":640310,"className":"Event_GuildBattle_Potion","name":"Potion of the Victor","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_GuildBattle_Potion","numArg2":1800000}},{"itemId":640319,"className":"RedOrb_Custom_Mon","name":"[GM] Red Orb","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY_EVENT","strArg":"Onion"}},{"itemId":640320,"className":"LevelUp_Reward_EV","name":"Level Up Chest","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_LEVELUP_REWARD_EV"}},{"itemId":640321,"className":"jexpCard_RestoreLastRank","name":"Class EXP Recovery Card (Last)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_RESTORE_LAST_JOB_EXP"}},{"itemId":640322,"className":"Drug_DayQuest_Rand","name":"Event Quest Documents","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_DAYQUEST_RAND"}},{"itemId":640323,"className":"Drug_HP4","name":"Large HP Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":460,"sellPrice":140,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP","numArg1":210}},{"itemId":640324,"className":"Drug_HP5","name":"Huge HP Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":720,"sellPrice":280,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP","numArg1":315}},{"itemId":640325,"className":"Drug_SP4","name":"Large SP Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":1680,"sellPrice":432,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP","numArg1":70}},{"itemId":640326,"className":"Drug_SP5","name":"Huge SP Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":2400,"sellPrice":864,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP","numArg1":105}},{"itemId":640327,"className":"expCard_Max2","name":"Lv 280 EXP Boost","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_EXP_LV200","numArg1":1188338000}},{"itemId":640329,"className":"Drug_RedApple100_TA_Recycle","name":"Elixir of HP Recovery (2 Medals)","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100HP_Dot","numArg1":50,"numArg2":11000}},{"itemId":640330,"className":"Drug_BlueApple100_TA_Recycle","name":"Elixir of SP Recovery (2 Medals)","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100SP_Dot","numArg1":50,"numArg2":11000}},{"itemId":640331,"className":"Leticia_expCard2","name":"Lv2 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":5,"script":{"function":"SCR_USE_ITEM_EXPCARD","numArg1":2686}},{"itemId":640332,"className":"Leticia_expCard8","name":"Lv7 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_USE_ITEM_EXPCARD","numArg1":142150}},{"itemId":640333,"className":"Leticia_expCard10","name":"Lv9 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":150,"script":{"function":"SCR_USE_ITEM_EXPCARD","numArg1":237943}},{"itemId":640334,"className":"Leticia_expCard12","name":"Lv11 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":210,"script":{"function":"SCR_USE_ITEM_EXPCARD","numArg1":985061}},{"itemId":640335,"className":"Leticia_expCard13","name":"Lv12 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":250,"script":{"function":"SCR_USE_ITEM_EXPCARD","numArg1":2420238}},{"itemId":640336,"className":"Leticia_expCard15","name":"Lv14 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":300,"script":{"function":"SCR_USE_ITEM_EXPCARD","numArg1":13189740}},{"itemId":640337,"className":"Drug_RedApple20","name":"Small Elixir of HP Recovery","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100HP_Dot","numArg1":20,"numArg2":11000}},{"itemId":640338,"className":"Drug_BlueApple20","name":"Small Elixir of SP Recovery","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100SP_Dot","numArg1":20,"numArg2":11000}},{"itemId":640340,"className":"Leticia_LevelUpCard85","name":"Beginner Level-up Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_LVUPCARD","numArg1":85}},{"itemId":640341,"className":"Leticia_LevelUpCard185","name":"Intermediate Level-up Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_LVUPCARD","numArg1":185}},{"itemId":640342,"className":"Leticia_LevelUpCard280","name":"Advanced Level-up Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_LVUPCARD","numArg1":280}},{"itemId":640343,"className":"Team_Battle_Potion1","name":"Battle Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"BATTLE_BUFF_01_DRUG","numArg1":100,"numArg2":600000}},{"itemId":640344,"className":"Team_Battle_Potion2","name":"Condensed Battle Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"BATTLE_BUFF_01_DRUG","numArg1":100,"numArg2":1800000}},{"itemId":640345,"className":"Team_Battle_CRTATK_Potion1","name":"Physical Critical Damage Potion","type":"Consume","group":"Drug","weight":15,"maxStack":32767,"price":500,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_CRTATK","numArg1":150,"numArg2":60000}},{"itemId":640346,"className":"Team_Battle_CRTHR_Potion1","name":"Critical Rate Potion","type":"Consume","group":"Drug","weight":15,"maxStack":32767,"price":500,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_CRTHR","numArg1":50,"numArg2":30000}},{"itemId":640347,"className":"Team_Battle_SR_Potion1","name":"AoE Attack Ratio Potion","type":"Consume","group":"Drug","weight":15,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_SR","numArg1":1,"numArg2":60000}},{"itemId":640349,"className":"Leticia_LevelUpCard330","name":"High Advanced Level-up Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_LVUPCARD","numArg1":330}},{"itemId":640350,"className":"GIMMICK_Drug_HPSP2_DLC","name":"Keista Restoration Potion Lv2","type":"Consume","group":"Drug","weight":20,"maxStack":32767,"price":100,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHPSP_Dot","numArg1":480}},{"itemId":640351,"className":"GIMMICK_Drug_PMATK2_DLC","name":"Keitrys Bravery Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_ATK_Gimmick01","numArg1":76,"numArg2":180000}},{"itemId":640352,"className":"GIMMICK_Drug_Regeneration","name":"Keitrys Regeneracy Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"GIMMICK_Drug_Regeneration","numArg1":800,"numArg2":180000}},{"itemId":640353,"className":"GIMMICK_Drug_Curse","name":"Keitrys Elemental Curse Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"GIMMICK_Drug_Curse","numArg1":1500,"numArg2":120000}},{"itemId":640354,"className":"GIMMICK_Drug_Elements","name":"Keitrys Elemental Enhance Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"GIMMICK_Drug_Elements","numArg1":200,"numArg2":120000}},{"itemId":640355,"className":"Drug_MSPD2_1h_NR","name":"Movement Speed Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":2,"numArg2":3600000}},{"itemId":640356,"className":"expCard_Max3","name":"Lv 250 EXP Boost","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_EXP_LV200","numArg1":558595800}},{"itemId":640358,"className":"Achieve_2017_Halloween1","name":"Title - Dungeon Creeper","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"HALOWEEN_2017_ACHIEVE1","strArg":"Normal","numArg1":3}},{"itemId":640359,"className":"Achieve_2017_Halloween2","name":"Title - Certified Trick-or-Treater","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"HALOWEEN_2017_ACHIEVE2","strArg":"Normal","numArg1":3}},{"itemId":640360,"className":"test_expCard_Max","name":"[Kupole] EXP Booster","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_EXP_LV200","numArg1":974470000}},{"itemId":640361,"className":"test_jexpCard_UpRank8","name":"[Kupole] Rank 8 Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_JEXP_MAX"}},{"itemId":640362,"className":"jexpCard_UpRank10","name":"No Function","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":640363,"className":"Drug_Event_Looting_Potion","name":"Looting Chance Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_LOOTINGCHANCE_POTION","numArg1":100,"numArg2":1800000}},{"itemId":640364,"className":"Drug_Fortunecookie_14d","name":"Fortune Cookie (14 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_Item","strArg":"Premium_Fortunecookie","numArg2":1800000}},{"itemId":640365,"className":"Drug_Looting_Potion_100","name":"Looting Chance: 100","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_LOOTINGCHANCE_POTION","numArg1":100,"numArg2":3600000}},{"itemId":640366,"className":"Drug_Looting_Potion_300","name":"Looting Chance: 300","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_LOOTINGCHANCE_POTION","numArg1":300,"numArg2":3600000}},{"itemId":640367,"className":"Drug_Looting_Potion_500","name":"Looting Chance: 500","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_LOOTINGCHANCE_POTION","numArg1":500,"numArg2":3600000}},{"itemId":640368,"className":"Potion_Demon_DMG_UP","name":"Goddess' Retribution Potion: Devil","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Demon_DMG_UP_Buff","numArg1":100,"numArg2":10000}},{"itemId":640369,"className":"Potion_MIX_DMG_UP","name":"Goddess' Retribution Potion: Mutant","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_MIX_DMG_UP_Buff","numArg1":100,"numArg2":10000}},{"itemId":640370,"className":"Potion_Bug_DMG_UP","name":"Goddess' Retribution Potion: Insect","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Bug_DMG_UP_Buff","numArg1":100,"numArg2":10000}},{"itemId":640371,"className":"Potion_Plant_DMG_UP","name":"Goddess' Retribution Potion: Plant","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Plant_DMG_UP_Buff","numArg1":100,"numArg2":10000}},{"itemId":640372,"className":"Potion_Wild_DMG_UP","name":"Goddess' Retribution Potion: Beast","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Wild_DMG_UP_Buff","numArg1":100,"numArg2":10000}},{"itemId":640373,"className":"Potion_Demon_DMG_DOWN","name":"Goddess' Aegis Potion: Devil","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Demon_DMG_DOWN_Buff","numArg1":50,"numArg2":30000}},{"itemId":640374,"className":"Potion_MIX_DMG_DOWN","name":"Goddess' Aegis Potion: Mutant","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_MIX_DMG_DOWN_Buff","numArg1":50,"numArg2":30000}},{"itemId":640375,"className":"Potion_Bug_DMG_DOWN","name":"Goddess' Aegis Potion: Insect","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Bug_DMG_DOWN_Buff","numArg1":50,"numArg2":30000}},{"itemId":640376,"className":"Potion_Plant_DMG_DOWN","name":"Goddess' Aegis Potion: Plant","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Plant_DMG_DOWN_Buff","numArg1":50,"numArg2":30000}},{"itemId":640377,"className":"Potion_Wild_DMG_DOWN","name":"Goddess' Aegis Potion: Beast","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Wild_DMG_DOWN_Buff","numArg1":50,"numArg2":30000}},{"itemId":640381,"className":"Potion_Demon_Low_DMG_UP","name":"Hero's Retribution Potion: Devil","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Demon_DMG_UP_Buff","numArg1":50,"numArg2":10000}},{"itemId":640382,"className":"Potion_MIX_Low_DMG_UP","name":"Hero's Retribution Potion: Mutant","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_MIX_DMG_UP_Buff","numArg1":50,"numArg2":10000}},{"itemId":640383,"className":"Potion_Bug_Low_DMG_UP","name":"Hero's Retribution Potion: Insect","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Bug_DMG_UP_Buff","numArg1":50,"numArg2":10000}},{"itemId":640384,"className":"Potion_Plant_Low_DMG_UP","name":"Hero's Retribution Potion: Plant","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Plant_DMG_UP_Buff","numArg1":50,"numArg2":10000}},{"itemId":640385,"className":"Potion_Wild_Low_DMG_UP","name":"Hero's Retribution Potion: Beast","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Wild_DMG_UP_Buff","numArg1":50,"numArg2":10000}},{"itemId":640386,"className":"Potion_Demon_Low_DMG_DOWN","name":"Hero's Aegis Potion: Devil","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Demon_DMG_DOWN_Buff","numArg1":25,"numArg2":30000}},{"itemId":640387,"className":"Potion_MIX_Low_DMG_DOWN","name":"Hero's Aegis Potion: Mutant","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_MIX_DMG_DOWN_Buff","numArg1":25,"numArg2":30000}},{"itemId":640388,"className":"Potion_Bug_Low_DMG_DOWN","name":"Hero's Aegis Potion: Insect","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Bug_DMG_DOWN_Buff","numArg1":25,"numArg2":30000}},{"itemId":640389,"className":"Potion_Plant_Low_DMG_DOWN","name":"Hero's Aegis Potion: Plant","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Plant_DMG_DOWN_Buff","numArg1":25,"numArg2":30000}},{"itemId":640390,"className":"Potion_Wild_Low_DMG_DOWN","name":"Hero's Aegis Potion: Beast","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Wild_DMG_DOWN_Buff","numArg1":25,"numArg2":30000}},{"itemId":640391,"className":"Potion_Demon_Low_DMG_UP_Mine","name":"Hero's Retribution Potion: Devil (Feud)","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Demon_DMG_UP_Buff","numArg1":50,"numArg2":10000}},{"itemId":640392,"className":"Potion_MIX_Low_DMG_UP_Mine","name":"Hero's Retribution Potion: Mutant (Feud)","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_MIX_DMG_UP_Buff","numArg1":50,"numArg2":10000}},{"itemId":640393,"className":"Potion_Bug_Low_DMG_UP_Mine","name":"Hero's Retribution Potion: Insect (Feud)","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Bug_DMG_UP_Buff","numArg1":50,"numArg2":10000}},{"itemId":640394,"className":"Potion_Plant_Low_DMG_UP_Mine","name":"Hero's Retribution Potion: Plant (Feud)","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Plant_DMG_UP_Buff","numArg1":50,"numArg2":10000}},{"itemId":640395,"className":"Potion_Wild_Low_DMG_UP_Mine","name":"Hero's Retribution Potion: Beast (Feud)","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Wild_DMG_UP_Buff","numArg1":50,"numArg2":10000}},{"itemId":640396,"className":"Potion_Demon_Low_DMG_DOWN_Mine","name":"Hero's Aegis Potion: Devil (Feud)","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Demon_DMG_DOWN_Buff","numArg1":25,"numArg2":30000}},{"itemId":640397,"className":"Potion_MIX_Low_DMG_DOWN_Mine","name":"Hero's Aegis Potion: Mutant (Feud)","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_MIX_DMG_DOWN_Buff","numArg1":25,"numArg2":30000}},{"itemId":640398,"className":"Potion_Bug_Low_DMG_DOWN_Mine","name":"Hero's Aegis Potion: Insect (Feud)","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Bug_DMG_DOWN_Buff","numArg1":25,"numArg2":30000}},{"itemId":640399,"className":"Potion_Plant_Low_DMG_DOWN_Mine","name":"Hero's Aegis Potion: Plant (Feud)","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Plant_DMG_DOWN_Buff","numArg1":25,"numArg2":30000}},{"itemId":640400,"className":"Potion_Wild_Low_DMG_DOWN_Mine","name":"Hero's Aegis Potion: Beast (Feud)","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Wild_DMG_DOWN_Buff","numArg1":25,"numArg2":30000}},{"itemId":640401,"className":"First_Grade_Buff_Stone","name":"Dimensional Incense Burner","type":"Consume","group":"Drug","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_FIRST_GRADE_BUFF_STONE"}},{"itemId":640402,"className":"Vernike_Drug_HPSP","name":"Dimensional Potion","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":100,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHPSP_Dot","numArg1":1234,"numArg2":617}},{"itemId":640405,"className":"Drug_RedApple20_PC","name":"ITEM_20230425_028569","type":"Consume","group":"Drug","weight":3,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100HP_Dot","numArg1":20,"numArg2":11000}},{"itemId":640406,"className":"Drug_BlueApple_PC","name":"ITEM_20230425_028570","type":"Consume","group":"Drug","weight":3,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100SP_Dot","numArg1":20,"numArg2":11000}},{"itemId":640410,"className":"Drug_Looting_Potion_100_pc","name":"ITEM_20230425_028575","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_LOOTINGCHANCE_POTION","numArg1":300,"numArg2":3600000}},{"itemId":640411,"className":"jexpCard_UpRank11","name":"No Function","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":640412,"className":"Drug_RedApple100_TA_Event_Team_Trade","name":"[Event] Elixir of HP Recovery","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100HP_Dot","numArg1":50,"numArg2":11000}},{"itemId":640413,"className":"Drug_BlueApple100_TA_Event_Team_Trade","name":"[Event] Elixir of SP Recovery","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100SP_Dot","numArg1":50,"numArg2":11000}},{"itemId":640417,"className":"Drug_RedApple20_Colony_Support_Team_Trade","name":"[GTW Event] Small Elixir of HP Recovery ","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100HP_Dot","numArg1":20,"numArg2":11000}},{"itemId":640418,"className":"Drug_BlueApple20_Colony_Support_Team_Trade","name":"[GTW Event] Small Elixir of SP Recovery ","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100SP_Dot","numArg1":20,"numArg2":11000}},{"itemId":640419,"className":"Drug_Alche_HP15_Colony_Support_Team_Trade","name":"[GTW Event] Lv 15 Condensed HP Potion","type":"Consume","group":"Drug","weight":15,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP_Dot","numArg1":395}},{"itemId":640420,"className":"Drug_Alche_SP15_Colony_Support_Team_Trade","name":"[GTW Event] Lv 15 Condensed SP Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":120,"sellPrice":24,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP_Dot","numArg1":131}},{"itemId":640421,"className":"RepairPotion_Colony_Support_Team_Trade","name":"[GTW Event] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":640422,"className":"Drug_Alche_MSPD15_Colony_Support_Team_Trade","name":"[GTW Event] Lv 15 Condensed Movement Speed Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":3,"numArg2":250000}},{"itemId":640423,"className":"Drug_RedApple20_Colony_Support2_Team_Trade","name":"[GTW Event] Small Elixir of HP Recovery ","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100HP_Dot","numArg1":20,"numArg2":11000}},{"itemId":640424,"className":"Drug_BlueApple20_Colony_Support2_Team_Trade","name":"[GTW Event] Small Elixir of SP Recovery ","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100SP_Dot","numArg1":20,"numArg2":11000}},{"itemId":640425,"className":"Drug_Alche_HP15_Colony_Support2_Team_Trade","name":"[GTW Event] Lv 15 Condensed HP Potion","type":"Consume","group":"Drug","weight":15,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP_Dot","numArg1":395}},{"itemId":640426,"className":"Drug_Alche_SP15_Colony_Support2_Team_Trade","name":"[GTW Event] Lv 15 Condensed SP Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":120,"sellPrice":24,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP_Dot","numArg1":131}},{"itemId":640427,"className":"RepairPotion_Colony_Support2_Team_Trade","name":"[GTW Event] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":640428,"className":"Drug_Alche_MSPD15_Colony_Support2_Team_Trade","name":"[GTW Event] Lv 15 Condensed Movement Speed Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":3,"numArg2":250000}},{"itemId":640430,"className":"test_expCard_Max_380","name":"[Kupole] EXP Booster Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_EXP_LV200","numArg1":2047517000}},{"itemId":640435,"className":"Boruta_Drug_RedApple20","name":"[Event] Small Elixir of HP Recovery ","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100HP_Dot","numArg1":20,"numArg2":11000}},{"itemId":640436,"className":"Boruta_Drug_BlueApple20","name":"[Event] Small Elixir of SP Recovery ","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100SP_Dot","numArg1":20,"numArg2":11000}},{"itemId":640437,"className":"Boruta_Drug_Alche_STA15","name":"[Event] Lv 15 Condensed Stamina Pill","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","strArg":"Drug_HealSP_Dot","numArg1":78}},{"itemId":640438,"className":"Boruta_repairPotion_event","name":"[Event] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":640439,"className":"Boruta_Warp_table_10_1","name":"[Event] Warp Scroll - Kupole Kaze","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_Boruta_Warp_table_10_1"}},{"itemId":640440,"className":"Boruta_Event_ACHIEVE_BOX_day5","name":"[Event] Title - Brushed Against Boruta","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":360,"script":{"function":"SCR_USE_EVENT_BORUTA_ACHIVE_DAY5","strArg":"Normal"}},{"itemId":640441,"className":"Boruta_Event_ACHIEVE_BOX_day10","name":"[Event] Title - Fearless Against Boruta","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":360,"script":{"function":"SCR_USE_EVENT_BORUTA_ACHIVE_DAY10","strArg":"Normal"}},{"itemId":640447,"className":"Event_Drug_RedApple20","name":"[Event] Small Elixir of HP Recovery ","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100HP_Dot","numArg1":20,"numArg2":11000}},{"itemId":640448,"className":"Event_Drug_BlueApple20","name":"[Event] Small Elixir of SP Recovery ","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100SP_Dot","numArg1":20,"numArg2":11000}},{"itemId":640449,"className":"Uphille_Power_Potion1","name":"Combat Potion: Uphill Mission","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"UPHILL_BUFF_DRUG","numArg2":1800000}},{"itemId":640464,"className":"expCard2_x5","name":"Lv2 EXP Card (x5)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":5,"script":{"strArg":"XpCard","numArg1":13430}},{"itemId":640465,"className":"expCard3_x5","name":"Lv3 EXP Card (x5)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":20,"script":{"strArg":"XpCard","numArg1":42210}},{"itemId":640466,"className":"expCard6_x5","name":"Lv5 EXP Card (x5)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":60,"script":{"strArg":"XpCard","numArg1":122855}},{"itemId":640467,"className":"expCard7_x5","name":"Lv6 EXP Card (x5)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":70,"script":{"strArg":"XpCard","numArg1":301560}},{"itemId":640468,"className":"expCard8_x5","name":"Lv7 EXP Card (x5)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":100,"script":{"strArg":"XpCard","numArg1":710750}},{"itemId":640469,"className":"expCard11_x10","name":"Lv10 EXP Card (x10)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":180,"script":{"strArg":"XpCard","numArg1":5410230}},{"itemId":640470,"className":"expCard12_x10","name":"Lv11 EXP Card (x10)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":210,"script":{"strArg":"XpCard","numArg1":9850610}},{"itemId":640471,"className":"expCard15_x5","name":"Lv14 EXP Card (x5)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":300,"script":{"strArg":"XpCard","numArg1":65948700}},{"itemId":640472,"className":"expCard16_x3","name":"Lv15 EXP Card (x3)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":320,"script":{"strArg":"XpCard","numArg1":93637880}},{"itemId":640473,"className":"expCard17","name":"Lv16 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":350,"script":{"strArg":"XpCard","numArg1":78031570}},{"itemId":640475,"className":"Potion_hero_selectbox","name":"Hero Potion Selection Box","type":"Consume","group":"Drug","weight":2,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":25,"numArg2":30000}},{"itemId":640476,"className":"expCard15_Mine","name":"[Gemstone Feud] Lv.14 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":300,"script":{"function":"SCR_USE_ITEM_EXPCARD","numArg1":13189740}},{"itemId":640477,"className":"expCard16_Mine","name":"[Gemstone Feud] Lv.15 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":320,"script":{"function":"SCR_USE_ITEM_EXPCARD","numArg1":31212630}},{"itemId":640478,"className":"expCard17_Mine","name":"[Gemstone Feud] Lv.16 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":350,"script":{"function":"SCR_USE_ITEM_EXPCARD","numArg1":78031570}},{"itemId":640479,"className":"WeeklyBossDEFpotion","name":"[Weekly Boss Raid] Kedoran Special Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_WeeklyBossDEFpotion"}},{"itemId":640481,"className":"CompanionExpcard400","name":"Companion EXP Card Lv.400","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_EXPCARD_COMPANION","strArg":"2536762147"}},{"itemId":640482,"className":"WeeklyBossReductionPotion","name":"[Weekly Boss Raid] Leticia Special Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_WeeklyBossReductionPotion"}},{"itemId":640483,"className":"WeeklyBossReductionPotion_Team","name":"[Weekly Boss Raid] Kedoran Special Potion II","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_WeeklyBossReductionPotion"}},{"itemId":640484,"className":"Drug_AddMaxWeight3","name":"Weight Increase +1000 Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_MaxWeightUP","numArg1":1000}},{"itemId":640485,"className":"Transform_Potion_yakmambo","name":"Transformation Potion : Yak Mambo","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_TRANSFORM_Arg1_MONSTER","numArg1":58853}},{"itemId":640486,"className":"Challenge_RepeatHealPotion","name":"[Challenge Mode] Kedoran Special Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_Challenge_RepeatHealPotion"}},{"itemId":640487,"className":"Achieve_Outran_The_Past_Error","name":"Title-Outran The Past","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"moringponia_first_kill_hard"}},{"itemId":640488,"className":"CompanionExpcard400_OnlyPenguin","name":"[Penguin Only] Companion EXP Card Lv.400","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_EXPCARD_COMPANION","strArg":"2536762147"}},{"itemId":640491,"className":"Achieve_Parallel_Existence_Error","name":"Title-Parallel Existence","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"GET_ACCOUNT_ACHIEVE_ERROR","strArg":"LEGEND_RAID_MORINGPONIA/moringponia_first_kill"}},{"itemId":640496,"className":"expCard18","name":"Lv17 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":440,"script":{"strArg":"XpCard","numArg1":195078900}},{"itemId":640497,"className":"expCard18_x10","name":"Lv17 EXP Card (x10)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":440,"script":{"strArg":"XpCard","numArg1":1950789000}},{"itemId":640498,"className":"expCard17_x10","name":"Lv16 EXP Card (x10)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":350,"script":{"strArg":"XpCard","numArg1":780315600}},{"itemId":640499,"className":"Drug_Looting_Potion_1000","name":"Looting Chance: 1000","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_LOOTINGCHANCE_POTION_1000","numArg1":1000,"numArg2":3600000}},{"itemId":640500,"className":"Potion_Plant_HIGH_DMG_UP","name":"Goddess' Rage Potion: Plant","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Plant_DMG_UP_Buff","numArg1":100,"numArg2":15000}},{"itemId":640501,"className":"Potion_Wild_HIGH_DMG_UP","name":"Goddess' Rage Potion: Beast","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Wild_DMG_UP_Buff","numArg1":100,"numArg2":15000}},{"itemId":640502,"className":"Potion_MIX_HIGH_DMG_UP","name":"Goddess' Rage Potion: Mutant","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_MIX_DMG_UP_Buff","numArg1":100,"numArg2":15000}},{"itemId":640503,"className":"Potion_Bug_HIGH_DMG_UP","name":"Goddess' Rage Potion: Insect","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Bug_DMG_UP_Buff","numArg1":100,"numArg2":15000}},{"itemId":640504,"className":"Potion_Demon_HIGH_DMG_UP","name":"Goddess' Rage Potion: Devil","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Demon_DMG_UP_Buff","numArg1":100,"numArg2":15000}},{"itemId":640505,"className":"Potion_Instance_phill","name":"HP, SP Instant Recovery","type":"Consume","group":"Drug","weight":30,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_Instance_heal_pill"}},{"itemId":640506,"className":"Potion_duration_Elixir","name":"Elixir of Continuous Recovery","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"ITEM_Duration_heal_buff","numArg2":7200000}},{"itemId":640507,"className":"HPUP_Redapple","name":"Fruit of HP Recovery","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100HP_Dot2","numArg1":35,"numArg2":11000}},{"itemId":640508,"className":"SPUP_Blueapple","name":"Fruit of SP Recovery","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100SP_Dot","numArg1":35,"numArg2":11000}},{"itemId":640510,"className":"CollectionBox_Orsha_1","name":"Old Orsha Collection Set","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":500,"sellPrice":50,"minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET_ORSHA_LIST"}},{"itemId":640511,"className":"expCard18_Mine","name":"[Gemstone Feud] Lv.17 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":450,"script":{"strArg":"XpCard","numArg1":195078900}},{"itemId":640512,"className":"Premium_Drug_Looting_Potion_1000","name":"Looting Chance: 1000","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PREMIUM_LOOTINGCHANCE_POTION_1000","numArg1":1000,"numArg2":3600000}},{"itemId":640513,"className":"WeeklyBossReductionPotion_Lv2","name":"[Weekly Boss Raid] Leticia Special Potion Lv.2","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_WeeklyBossReductionPotion_Lv2"}},{"itemId":640514,"className":"expCard19","name":"Lv18 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":440,"script":{"strArg":"XpCard","numArg1":585236700,"numArg2":469}},{"itemId":640515,"className":"expCrystal_Lv1","name":"Lv1 EXP Cystal","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":440,"script":{"strArg":"XpCard","numArg1":50000000,"numArg2":459}},{"itemId":640516,"className":"expCrystal_Lv2","name":"Lv2 EXP Crystal","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":440,"script":{"strArg":"XpCard","numArg1":50000000,"numArg2":459}},{"itemId":640517,"className":"Drug_RedApple20_ReCycle","name":"[Exchange] Small Elixir of HP Recovery ","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100HP_Dot","numArg1":20,"numArg2":11000}},{"itemId":640518,"className":"Drug_BlueApple20_ReCycle","name":"[Exchange] Small Elixir of SP Recovery","type":"Consume","group":"Drug","weight":30,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100SP_Dot","numArg1":20,"numArg2":11000}},{"itemId":640519,"className":"expCard20","name":"Lv19 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":460,"script":{"strArg":"XpCard","numArg1":600000000,"numArg2":469}},{"itemId":640520,"className":"Potion_Demon_DMG_UP_NoTrade","name":"Goddess' Retribution Potion: Devil (Untradable)","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Demon_DMG_UP_Buff","numArg1":100,"numArg2":10000}},{"itemId":640521,"className":"Potion_MIX_DMG_UP_NoTrade","name":"Goddess' Retribution Potion: Mutant (Untradable)","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_MIX_DMG_UP_Buff","numArg1":100,"numArg2":10000}},{"itemId":640522,"className":"Potion_Bug_DMG_UP_NoTrade","name":"Goddess' Retribution Potion: Insect (Untradable)","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Bug_DMG_UP_Buff","numArg1":100,"numArg2":10000}},{"itemId":640523,"className":"Potion_Plant_DMG_UP_NoTrade","name":"Goddess' Retribution Potion: Plant (Untradable)","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Plant_DMG_UP_Buff","numArg1":100,"numArg2":10000}},{"itemId":640524,"className":"Potion_Wild_DMG_UP_NoTrade","name":"Goddess' Retribution Potion: Beast (Untradable)","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Wild_DMG_UP_Buff","numArg1":100,"numArg2":10000}},{"itemId":640525,"className":"Potion_Demon_DMG_DOWN_NoTrade","name":"Goddess' Aegis Potion: Devil (Untradable)","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Demon_DMG_DOWN_Buff","numArg1":50,"numArg2":30000}},{"itemId":640526,"className":"Potion_MIX_DMG_DOWN_NoTrade","name":"Goddess' Aegis Potion: Mutant (Untradable)","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_MIX_DMG_DOWN_Buff","numArg1":50,"numArg2":30000}},{"itemId":640527,"className":"Potion_Bug_DMG_DOWN_NoTrade","name":"Goddess' Aegis Potion: Insect (Untradable)","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Bug_DMG_DOWN_Buff","numArg1":50,"numArg2":30000}},{"itemId":640528,"className":"Potion_Plant_DMG_DOWN_NoTrade","name":"Goddess' Aegis Potion: Plant (Untradable)","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Plant_DMG_DOWN_Buff","numArg1":50,"numArg2":30000}},{"itemId":640529,"className":"Potion_Wild_DMG_DOWN_NoTrade","name":"Goddess' Aegis Potion: Beast (Untradable)","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ABILPOTION","strArg":"Potion_Wild_DMG_DOWN_Buff","numArg1":50,"numArg2":30000}},{"itemId":640535,"className":"expCard21","name":"Lv20 EXP Card","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":470,"script":{"strArg":"XpCard","numArg1":850000000,"numArg2":479}},{"itemId":640536,"className":"expCard22","name":"ITEM_20230130_028340","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":480,"script":{"strArg":"XpCard","numArg1":1000000000,"numArg2":489}},{"itemId":640537,"className":"Transform_Potion_spreader","name":"ITEM_20230424_028399","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_TRANSFORM_Arg1_MONSTER","numArg1":100197}},{"itemId":641001,"className":"Jungtan_1","name":"Lv1 Attack Booster","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":1,"sellPrice":1,"minLevel":220,"script":{"strArg":"Jungtan","numArg1":1,"numArg2":22}},{"itemId":641002,"className":"Jungtan_2","name":"Attack Booster +15","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":1,"sellPrice":1,"minLevel":1,"script":{"strArg":"Jungtan","numArg1":1,"numArg2":15}},{"itemId":641003,"className":"Jungtan_3","name":"Attack Booster +20","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":25,"sellPrice":2,"minLevel":50,"script":{"strArg":"Jungtan","numArg1":1,"numArg2":20}},{"itemId":641101,"className":"Jungtan_Def_1","name":"Defense Booster +4","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":2,"sellPrice":1,"minLevel":1,"script":{"strArg":"Jungtan","numArg1":1,"numArg2":4}},{"itemId":641102,"className":"Jungtan_Def_2","name":"Defense Booster +8","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":13,"sellPrice":1,"minLevel":50,"script":{"strArg":"Jungtan","numArg1":1,"numArg2":8}},{"itemId":641151,"className":"Dispeller_1","name":"Dispeller","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1,"script":{"strArg":"Jungtan","numArg1":1,"numArg2":4}},{"itemId":641152,"className":"Antimagic_1","name":"Anti-Magic","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1,"script":{"strArg":"Jungtan","numArg1":1,"numArg2":8}},{"itemId":641153,"className":"Bujeok_1","name":"Charm of Protection","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1,"script":{"strArg":"Jungtan","numArg1":1,"numArg2":4}},{"itemId":641154,"className":"EnchantBomb_Fire_1","name":"Fire Enchant Round","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"TOGGLE_ENCHANT_BOMB_FIRE","strArg":"ENCHANT_BOMB_FIRE","numArg1":1,"numArg2":4}},{"itemId":641155,"className":"EnchantBomb_Ice_1","name":"Ice Enchant Round","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"TOGGLE_ENCHANT_BOMB_ICE","strArg":"ENCHANT_BOMB_ICE","numArg1":1,"numArg2":4}},{"itemId":641201,"className":"Drug_Alche_HP","name":"Lv1 Condensed HP Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP_Dot","numArg1":165}},{"itemId":641202,"className":"Drug_Alche_SP","name":"Lv1 Condensed SP Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":120,"sellPrice":24,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP_Dot","numArg1":55}},{"itemId":641203,"className":"Drug_Alche_STA","name":"Lv1 Condensed Stamina Pill","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","strArg":"Drug_HealSP_Dot","numArg1":50}},{"itemId":641204,"className":"Drug_Alche_MSPD","name":"Lv1 Condensed Movement Speed Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":3,"numArg2":180000}},{"itemId":641205,"className":"Drug_Alche_Cooltime","name":"Cooldown Time Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":666,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_Drug_CooltimeDown","strArg":"Drug_CooltimeDown"}},{"itemId":641206,"className":"Drug_Alche_HP2","name":"Lv2 Condensed HP Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP_Dot","numArg1":181}},{"itemId":641207,"className":"Drug_Alche_HP3","name":"Lv3 Condensed HP Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP_Dot","numArg1":197}},{"itemId":641208,"className":"Drug_Alche_HP4","name":"Lv4 Condensed HP Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP_Dot","numArg1":214}},{"itemId":641209,"className":"Drug_Alche_HP5","name":"Lv5 Condensed HP Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP_Dot","numArg1":230}},{"itemId":641210,"className":"Drug_Alche_HP6","name":"Lv6 Condensed HP Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP_Dot","numArg1":247}},{"itemId":641211,"className":"Drug_Alche_HP7","name":"Lv7 Condensed HP Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP_Dot","numArg1":269}},{"itemId":641212,"className":"Drug_Alche_HP8","name":"Lv8 Condensed HP Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP_Dot","numArg1":345}},{"itemId":641213,"className":"Drug_Alche_HP9","name":"Lv9 Condensed HP Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP_Dot","numArg1":421}},{"itemId":641214,"className":"Drug_Alche_HP10","name":"Lv10 Condensed HP Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP_Dot","numArg1":479}},{"itemId":641215,"className":"Drug_Alche_HP11","name":"Lv11 Condensed HP Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP_Dot","numArg1":574}},{"itemId":641216,"className":"Drug_Alche_HP12","name":"Lv12 Condensed HP Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP_Dot","numArg1":612}},{"itemId":641217,"className":"Drug_Alche_HP13","name":"Lv13 Condensed HP Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP_Dot","numArg1":707}},{"itemId":641218,"className":"Drug_Alche_HP14","name":"Lv14 Condensed HP Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP_Dot","numArg1":745}},{"itemId":641219,"className":"Drug_Alche_HP15","name":"Lv15 Condensed HP Potion","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP_Dot","numArg1":802}},{"itemId":641220,"className":"Drug_Alche_SP2","name":"Lv2 Condensed SP Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":120,"sellPrice":24,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP_Dot","numArg1":60}},{"itemId":641221,"className":"Drug_Alche_SP3","name":"Lv3 Condensed SP Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":120,"sellPrice":24,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP_Dot","numArg1":65}},{"itemId":641222,"className":"Drug_Alche_SP4","name":"Lv4 Condensed SP Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":120,"sellPrice":24,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP_Dot","numArg1":71}},{"itemId":641223,"className":"Drug_Alche_SP5","name":"Lv5 Condensed SP Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":120,"sellPrice":24,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP_Dot","numArg1":76}},{"itemId":641224,"className":"Drug_Alche_SP6","name":"Lv6 Condensed SP Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":120,"sellPrice":24,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP_Dot","numArg1":82}},{"itemId":641225,"className":"Drug_Alche_SP7","name":"Lv7 Condensed SP Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":120,"sellPrice":24,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP_Dot","numArg1":87}},{"itemId":641226,"className":"Drug_Alche_SP8","name":"Lv8 Condensed SP Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":120,"sellPrice":24,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP_Dot","numArg1":93}},{"itemId":641227,"className":"Drug_Alche_SP9","name":"Lv9 Condensed SP Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":120,"sellPrice":24,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP_Dot","numArg1":99}},{"itemId":641228,"className":"Drug_Alche_SP10","name":"Lv10 Condensed SP Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":120,"sellPrice":24,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP_Dot","numArg1":112}},{"itemId":641229,"className":"Drug_Alche_SP11","name":"Lv11 Condensed SP Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":120,"sellPrice":24,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP_Dot","numArg1":132}},{"itemId":641230,"className":"Drug_Alche_SP12","name":"Lv12 Condensed SP Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":120,"sellPrice":24,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP_Dot","numArg1":141}},{"itemId":641231,"className":"Drug_Alche_SP13","name":"Lv13 Condensed SP Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":120,"sellPrice":24,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP_Dot","numArg1":162}},{"itemId":641232,"className":"Drug_Alche_SP14","name":"Lv14 Condensed SP Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":120,"sellPrice":24,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP_Dot","numArg1":171}},{"itemId":641233,"className":"Drug_Alche_SP15","name":"Lv15 Condensed SP Potion","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":120,"sellPrice":24,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP_Dot","numArg1":184}},{"itemId":641234,"className":"Drug_Alche_STA2","name":"Lv2 Condensed Stamina Pill","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","strArg":"Drug_HealSP_Dot","numArg1":52}},{"itemId":641235,"className":"Drug_Alche_STA3","name":"Lv3 Condensed Stamina Pill","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","strArg":"Drug_HealSP_Dot","numArg1":54}},{"itemId":641236,"className":"Drug_Alche_STA4","name":"Lv4 Condensed Stamina Pill","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","strArg":"Drug_HealSP_Dot","numArg1":56}},{"itemId":641237,"className":"Drug_Alche_STA5","name":"Lv5 Condensed Stamina Pill","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","strArg":"Drug_HealSP_Dot","numArg1":58}},{"itemId":641238,"className":"Drug_Alche_STA6","name":"Lv6 Condensed Stamina Pill","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","strArg":"Drug_HealSP_Dot","numArg1":60}},{"itemId":641239,"className":"Drug_Alche_STA7","name":"Lv7 Condensed Stamina Pill","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","strArg":"Drug_HealSP_Dot","numArg1":62}},{"itemId":641240,"className":"Drug_Alche_STA8","name":"Lv8 Condensed Stamina Pill","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","strArg":"Drug_HealSP_Dot","numArg1":64}},{"itemId":641241,"className":"Drug_Alche_STA9","name":"Lv9 Condensed Stamina Pill","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","strArg":"Drug_HealSP_Dot","numArg1":66}},{"itemId":641242,"className":"Drug_Alche_STA10","name":"Lv10 Condensed Stamina Pill","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","strArg":"Drug_HealSP_Dot","numArg1":68}},{"itemId":641243,"className":"Drug_Alche_STA11","name":"Lv11 Condensed Stamina Pill","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","strArg":"Drug_HealSP_Dot","numArg1":70}},{"itemId":641244,"className":"Drug_Alche_STA12","name":"Lv12 Condensed Stamina Pill","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","strArg":"Drug_HealSP_Dot","numArg1":72}},{"itemId":641245,"className":"Drug_Alche_STA13","name":"Lv13 Condensed Stamina Pill","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","strArg":"Drug_HealSP_Dot","numArg1":74}},{"itemId":641246,"className":"Drug_Alche_STA14","name":"Lv14 Condensed Stamina Pill","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","strArg":"Drug_HealSP_Dot","numArg1":76}},{"itemId":641247,"className":"Drug_Alche_STA15","name":"Lv15 Condensed Stamina Pill","type":"Consume","group":"Drug","weight":7,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","strArg":"Drug_HealSP_Dot","numArg1":78}},{"itemId":641248,"className":"Drug_Alche_MSPD2","name":"Lv2 Condensed Movement Speed Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":3,"numArg2":185000}},{"itemId":641249,"className":"Drug_Alche_MSPD3","name":"Lv3 Condensed Movement Speed Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":3,"numArg2":190000}},{"itemId":641250,"className":"Drug_Alche_MSPD4","name":"Lv4 Condensed Movement Speed Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":3,"numArg2":195000}},{"itemId":641251,"className":"Drug_Alche_MSPD5","name":"Lv5 Condensed Movement Speed Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":3,"numArg2":200000}},{"itemId":641252,"className":"Drug_Alche_MSPD6","name":"Lv6 Condensed Movement Speed Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":3,"numArg2":205000}},{"itemId":641253,"className":"Drug_Alche_MSPD7","name":"Lv7 Condensed Movement Speed Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":3,"numArg2":210000}},{"itemId":641254,"className":"Drug_Alche_MSPD8","name":"Lv8 Condensed Movement Speed Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":3,"numArg2":215000}},{"itemId":641255,"className":"Drug_Alche_MSPD9","name":"Lv9 Condensed Movement Speed Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":3,"numArg2":220000}},{"itemId":641256,"className":"Drug_Alche_MSPD10","name":"Lv10 Condensed Movement Speed Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":3,"numArg2":225000}},{"itemId":641257,"className":"Drug_Alche_MSPD11","name":"Lv11 Condensed Movement Speed Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":3,"numArg2":230000}},{"itemId":641258,"className":"Drug_Alche_MSPD12","name":"Lv12 Condensed Movement Speed Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":3,"numArg2":235000}},{"itemId":641259,"className":"Drug_Alche_MSPD13","name":"Lv13 Condensed Movement Speed Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":3,"numArg2":240000}},{"itemId":641260,"className":"Drug_Alche_MSPD14","name":"Lv14 Condensed Movement Speed Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":3,"numArg2":245000}},{"itemId":641261,"className":"Drug_Alche_MSPD15","name":"Lv15 Condensed Movement Speed Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":3,"numArg2":250000}},{"itemId":641262,"className":"Drug_Alche_BLK","name":"Lv1 Block Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_BLK","numArg1":50,"numArg2":180000}},{"itemId":641263,"className":"Drug_Alche_BLK2","name":"Lv2 Block Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_BLK","numArg1":65,"numArg2":180000}},{"itemId":641264,"className":"Drug_Alche_BLK3","name":"Lv3 Block Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_BLK","numArg1":80,"numArg2":180000}},{"itemId":641265,"className":"Drug_Alche_BLK4","name":"Lv4 Block Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_BLK","numArg1":95,"numArg2":180000}},{"itemId":641266,"className":"Drug_Alche_BLK5","name":"Lv5 Block Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_BLK","numArg1":110,"numArg2":180000}},{"itemId":641267,"className":"Drug_Alche_BLK6","name":"Lv6 Block Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_BLK","numArg1":125,"numArg2":180000}},{"itemId":641268,"className":"Drug_Alche_BLK7","name":"Lv7 Block Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_BLK","numArg1":140,"numArg2":180000}},{"itemId":641269,"className":"Drug_Alche_BLK8","name":"Lv8 Block Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_BLK","numArg1":155,"numArg2":180000}},{"itemId":641270,"className":"Drug_Alche_BLK9","name":"Lv9 Block Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_BLK","numArg1":170,"numArg2":180000}},{"itemId":641271,"className":"Drug_Alche_BLK10","name":"Lv10 Block Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_BLK","numArg1":185,"numArg2":180000}},{"itemId":641272,"className":"Drug_Alche_BLK11","name":"Lv11 Block Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_BLK","numArg1":200,"numArg2":180000}},{"itemId":641273,"className":"Drug_Alche_BLK12","name":"Lv12 Block Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_BLK","numArg1":215,"numArg2":180000}},{"itemId":641274,"className":"Drug_Alche_BLK13","name":"Lv13 Block Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_BLK","numArg1":230,"numArg2":180000}},{"itemId":641275,"className":"Drug_Alche_BLK14","name":"Lv14 Block Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_BLK","numArg1":245,"numArg2":180000}},{"itemId":641276,"className":"Drug_Alche_BLK15","name":"Lv15 Block Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_BLK","numArg1":260,"numArg2":180000}},{"itemId":641277,"className":"Drug_Alche_CRTATK","name":"Lv1 Physical Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_CRTATK","numArg1":32,"numArg2":180000}},{"itemId":641278,"className":"Drug_Alche_CRTATK2","name":"Lv2 Physical Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_CRTATK","numArg1":44,"numArg2":180000}},{"itemId":641279,"className":"Drug_Alche_CRTATK3","name":"Lv3 Physical Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_CRTATK","numArg1":56,"numArg2":180000}},{"itemId":641280,"className":"Drug_Alche_CRTATK4","name":"Lv4 Physical Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_CRTATK","numArg1":68,"numArg2":180000}},{"itemId":641281,"className":"Drug_Alche_CRTATK5","name":"Lv5 Physical Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_CRTATK","numArg1":80,"numArg2":180000}},{"itemId":641282,"className":"Drug_Alche_CRTATK6","name":"Lv6 Physical Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_CRTATK","numArg1":92,"numArg2":180000}},{"itemId":641283,"className":"Drug_Alche_CRTATK7","name":"Lv7 Physical Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_CRTATK","numArg1":104,"numArg2":180000}},{"itemId":641284,"className":"Drug_Alche_CRTATK8","name":"Lv8 Physical Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_CRTATK","numArg1":116,"numArg2":180000}},{"itemId":641285,"className":"Drug_Alche_CRTATK9","name":"Lv9 Physical Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_CRTATK","numArg1":128,"numArg2":180000}},{"itemId":641286,"className":"Drug_Alche_CRTATK10","name":"Lv10 Physical Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_CRTATK","numArg1":140,"numArg2":180000}},{"itemId":641287,"className":"Drug_Alche_CRTATK11","name":"Lv11 Physical Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_CRTATK","numArg1":152,"numArg2":180000}},{"itemId":641288,"className":"Drug_Alche_CRTATK12","name":"Lv12 Physical Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_CRTATK","numArg1":164,"numArg2":180000}},{"itemId":641289,"className":"Drug_Alche_CRTATK13","name":"Lv13 Physical Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_CRTATK","numArg1":176,"numArg2":180000}},{"itemId":641290,"className":"Drug_Alche_CRTATK14","name":"Lv14 Physical Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_CRTATK","numArg1":188,"numArg2":180000}},{"itemId":641291,"className":"Drug_Alche_CRTATK15","name":"Lv15 Physical Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_CRTATK","numArg1":200,"numArg2":180000}},{"itemId":641292,"className":"Drug_Alche_MHR","name":"Lv1 Magic Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_MHR","numArg1":10,"numArg2":180000}},{"itemId":641293,"className":"Drug_Alche_MHR2","name":"Lv2 Magic Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_MHR","numArg1":14,"numArg2":180000}},{"itemId":641294,"className":"Drug_Alche_MHR3","name":"Lv3 Magic Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_MHR","numArg1":18,"numArg2":180000}},{"itemId":641295,"className":"Drug_Alche_MHR4","name":"Lv4 Magic Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_MHR","numArg1":22,"numArg2":180000}},{"itemId":641296,"className":"Drug_Alche_MHR5","name":"Lv5 Magic Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_MHR","numArg1":26,"numArg2":180000}},{"itemId":641297,"className":"Drug_Alche_MHR6","name":"Lv6 Magic Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_MHR","numArg1":30,"numArg2":180000}},{"itemId":641298,"className":"Drug_Alche_MHR7","name":"Lv7 Magic Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_MHR","numArg1":34,"numArg2":180000}},{"itemId":641299,"className":"Drug_Alche_MHR8","name":"Lv8 Magic Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_MHR","numArg1":38,"numArg2":180000}},{"itemId":641300,"className":"Drug_Alche_MHR9","name":"Lv9 Magic Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_MHR","numArg1":42,"numArg2":180000}},{"itemId":641301,"className":"Drug_Alche_MHR10","name":"Lv10 Magic Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_MHR","numArg1":46,"numArg2":180000}},{"itemId":641302,"className":"Drug_Alche_MHR11","name":"Lv11 Magic Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_MHR","numArg1":50,"numArg2":180000}},{"itemId":641303,"className":"Drug_Alche_MHR12","name":"Lv12 Magic Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_MHR","numArg1":54,"numArg2":180000}},{"itemId":641304,"className":"Drug_Alche_MHR13","name":"Lv13 Magic Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_MHR","numArg1":58,"numArg2":180000}},{"itemId":641305,"className":"Drug_Alche_MHR14","name":"Lv14 Magic Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_MHR","numArg1":62,"numArg2":180000}},{"itemId":641306,"className":"Drug_Alche_MHR15","name":"Lv15 Magic Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_MHR","numArg1":66,"numArg2":180000}},{"itemId":641307,"className":"Drug_Alche_SR","name":"Lv1 AoE Attack Ratio Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_SR","numArg1":3,"numArg2":20000}},{"itemId":641308,"className":"Drug_Alche_SR2","name":"Lv2 AoE Attack Ratio Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_SR","numArg1":3,"numArg2":25000}},{"itemId":641309,"className":"Drug_Alche_SR3","name":"Lv3 AoE Attack Ratio Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_SR","numArg1":3,"numArg2":30000}},{"itemId":641310,"className":"Drug_Alche_SR4","name":"Lv4 AoE Attack Ratio Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_SR","numArg1":3,"numArg2":35000}},{"itemId":641311,"className":"Drug_Alche_SR5","name":"Lv5 AoE Attack Ratio Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_SR","numArg1":3,"numArg2":40000}},{"itemId":641312,"className":"Drug_Alche_ATKBooster","name":"Lv1 Attack Booster","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":1,"sellPrice":1,"minLevel":220,"script":{"strArg":"Jungtan","numArg1":1,"numArg2":15}},{"itemId":641313,"className":"Drug_Alche_ATKBooster2","name":"Lv2 Attack Booster","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":1,"sellPrice":1,"minLevel":220,"script":{"strArg":"Jungtan","numArg1":1,"numArg2":18}},{"itemId":641314,"className":"Drug_Alche_ATKBooster3","name":"Lv3 Attack Booster","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":1,"sellPrice":1,"minLevel":220,"script":{"strArg":"Jungtan","numArg1":1,"numArg2":21}},{"itemId":641315,"className":"Drug_Alche_ATKBooster4","name":"Lv4 Attack Booster","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":1,"sellPrice":1,"minLevel":220,"script":{"strArg":"Jungtan","numArg1":1,"numArg2":24}},{"itemId":641316,"className":"Drug_Alche_ATKBooster5","name":"Lv5 Attack Booster","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":1,"sellPrice":1,"minLevel":220,"script":{"strArg":"Jungtan","numArg1":1,"numArg2":27}},{"itemId":641317,"className":"Drug_Alche_SR6","name":"Lv6 AoE Attack Ratio Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_SR","numArg1":3,"numArg2":45000}},{"itemId":641318,"className":"Drug_Alche_SR7","name":"Lv7 AoE Attack Ratio Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_SR","numArg1":3,"numArg2":50000}},{"itemId":641319,"className":"Drug_Alche_SR8","name":"Lv8 AoE Attack Ratio Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_SR","numArg1":3,"numArg2":55000}},{"itemId":641320,"className":"Drug_Alche_SR9","name":"Lv9 AoE Attack Ratio Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_SR","numArg1":3,"numArg2":60000}},{"itemId":641321,"className":"Drug_Alche_SR10","name":"Lv10 AoE Attack Ratio Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_SR","numArg1":3,"numArg2":65000}},{"itemId":641322,"className":"Drug_Alche_SR11","name":"Lv11 AoE Attack Ratio Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_SR","numArg1":3,"numArg2":70000}},{"itemId":641323,"className":"Drug_Alche_SR12","name":"Lv12 AoE Attack Ratio Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_SR","numArg1":3,"numArg2":75000}},{"itemId":641324,"className":"Drug_Alche_SR13","name":"Lv13 AoE Attack Ratio Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_SR","numArg1":3,"numArg2":80000}},{"itemId":641325,"className":"Drug_Alche_SR14","name":"Lv14 AoE Attack Ratio Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_SR","numArg1":3,"numArg2":85000}},{"itemId":641326,"className":"Drug_Alche_SR15","name":"Lv15 AoE Attack Ratio Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":250,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_SR","numArg1":3,"numArg2":90000}},{"itemId":641327,"className":"Drug_Alche_ATKBooster6","name":"Lv6 Attack Booster","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":1,"sellPrice":1,"minLevel":220,"script":{"strArg":"Jungtan","numArg1":1,"numArg2":30}},{"itemId":641328,"className":"Drug_Alche_ATKBooster7","name":"Lv7 Attack Booster","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":1,"sellPrice":1,"minLevel":220,"script":{"strArg":"Jungtan","numArg1":1,"numArg2":33}},{"itemId":641329,"className":"Drug_Alche_ATKBooster8","name":"Lv8 Attack Booster","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":1,"sellPrice":1,"minLevel":220,"script":{"strArg":"Jungtan","numArg1":1,"numArg2":36}},{"itemId":641330,"className":"Drug_Alche_ATKBooster9","name":"Lv9 Attack Booster","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":1,"sellPrice":1,"minLevel":220,"script":{"strArg":"Jungtan","numArg1":1,"numArg2":39}},{"itemId":641331,"className":"Drug_Alche_ATKBooster10","name":"Lv10 Attack Booster","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":1,"sellPrice":1,"minLevel":220,"script":{"strArg":"Jungtan","numArg1":1,"numArg2":42}},{"itemId":641332,"className":"Drug_Alche_ATKBooster11","name":"Lv11 Attack Booster","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":1,"sellPrice":1,"minLevel":220,"script":{"strArg":"Jungtan","numArg1":1,"numArg2":45}},{"itemId":641333,"className":"Drug_Alche_ATKBooster12","name":"Lv12 Attack Booster","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":1,"sellPrice":1,"minLevel":220,"script":{"strArg":"Jungtan","numArg1":1,"numArg2":48}},{"itemId":641334,"className":"Drug_Alche_ATKBooster13","name":"Lv13 Attack Booster","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":1,"sellPrice":1,"minLevel":220,"script":{"strArg":"Jungtan","numArg1":1,"numArg2":51}},{"itemId":641335,"className":"Drug_Alche_ATKBooster14","name":"Lv14 Attack Booster","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":1,"sellPrice":1,"minLevel":220,"script":{"strArg":"Jungtan","numArg1":1,"numArg2":54}},{"itemId":641336,"className":"Drug_Alche_ATKBooster15","name":"Lv15 Attack Booster","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":1,"sellPrice":1,"minLevel":220,"script":{"strArg":"Jungtan","numArg1":1,"numArg2":57}},{"itemId":641337,"className":"Drug_Alche_CRTATK3_NT","name":"Lv3 Physical Critical Attack Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_CRTATK","numArg1":56,"numArg2":180000}},{"itemId":641338,"className":"Drug_Alche_MSPD3_NT","name":"Lv3 Condensed Movement Speed Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":3,"numArg2":190000}},{"itemId":641339,"className":"Drug_Alche_STA3_NT","name":"Lv3 Condensed Stamina Pill","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddSTA1","strArg":"Drug_HealSP_Dot","numArg1":54}},{"itemId":641340,"className":"Drug_Alche_Restore","name":"Condensed SP Boost Potion Lv1","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Alche_Restore","numArg1":250,"numArg2":60000}},{"itemId":641341,"className":"Drug_Alche_Restore2","name":"Condensed SP Boost Potion Lv2","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Alche_Restore","numArg1":374,"numArg2":60000}},{"itemId":641342,"className":"Drug_Alche_Restore3","name":"Condensed SP Boost Potion Lv3","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Alche_Restore","numArg1":498,"numArg2":60000}},{"itemId":641343,"className":"Drug_Alche_Restore4","name":"Condensed SP Boost Potion Lv4","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Alche_Restore","numArg1":622,"numArg2":60000}},{"itemId":641344,"className":"Drug_Alche_Restore5","name":"Condensed SP Boost Potion Lv5","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Alche_Restore","numArg1":746,"numArg2":60000}},{"itemId":641345,"className":"Drug_Alche_Restore6","name":"Condensed SP Boost Potion Lv6","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Alche_Restore","numArg1":870,"numArg2":60000}},{"itemId":641346,"className":"Drug_Alche_Restore7","name":"Condensed SP Boost Potion Lv7","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Alche_Restore","numArg1":994,"numArg2":60000}},{"itemId":641347,"className":"Drug_Alche_Restore8","name":"Condensed SP Boost Potion Lv8","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Alche_Restore","numArg1":1118,"numArg2":60000}},{"itemId":641348,"className":"Drug_Alche_Restore9","name":"Condensed SP Boost Potion Lv9","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Alche_Restore","numArg1":1242,"numArg2":60000}},{"itemId":641349,"className":"Drug_Alche_Restore10","name":"Condensed SP Boost Potion Lv10","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Alche_Restore","numArg1":1366,"numArg2":60000}},{"itemId":641350,"className":"Drug_Alche_Restore11","name":"Condensed SP Boost Potion Lv11","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Alche_Restore","numArg1":1490,"numArg2":60000}},{"itemId":641351,"className":"Drug_Alche_Restore12","name":"Condensed SP Boost Potion Lv12","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Alche_Restore","numArg1":1614,"numArg2":60000}},{"itemId":641352,"className":"Drug_Alche_Restore13","name":"Condensed SP Boost Potion Lv13","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Alche_Restore","numArg1":1738,"numArg2":60000}},{"itemId":641353,"className":"Drug_Alche_Restore14","name":"Condensed SP Boost Potion Lv14","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Alche_Restore","numArg1":1862,"numArg2":60000}},{"itemId":641354,"className":"Drug_Alche_Restore15","name":"Condensed SP Boost Potion Lv15","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Alche_Restore","numArg1":1986,"numArg2":60000}},{"itemId":641355,"className":"Drug_Alche_HPUP","name":"Condensed Protection Potion Lv1","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_WholeDEF_gimmick01","numArg1":625,"numArg2":60000}},{"itemId":641356,"className":"Drug_Alche_HPUP2","name":"Condensed Protection Potion Lv2","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_WholeDEF_gimmick01","numArg1":925,"numArg2":60000}},{"itemId":641357,"className":"Drug_Alche_HPUP3","name":"Condensed Protection Potion Lv3","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_WholeDEF_gimmick01","numArg1":1225,"numArg2":60000}},{"itemId":641358,"className":"Drug_Alche_HPUP4","name":"Condensed Protection Potion Lv4","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_WholeDEF_gimmick01","numArg1":1525,"numArg2":60000}},{"itemId":641359,"className":"Drug_Alche_HPUP5","name":"Condensed Protection Potion Lv5","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_WholeDEF_gimmick01","numArg1":1825,"numArg2":60000}},{"itemId":641360,"className":"Drug_Alche_HPUP6","name":"Condensed Protection Potion Lv6","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_WholeDEF_gimmick01","numArg1":2125,"numArg2":60000}},{"itemId":641361,"className":"Drug_Alche_HPUP7","name":"Condensed Protection Potion Lv7","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_WholeDEF_gimmick01","numArg1":2425,"numArg2":60000}},{"itemId":641362,"className":"Drug_Alche_HPUP8","name":"Condensed Protection Potion Lv8","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_WholeDEF_gimmick01","numArg1":2725,"numArg2":60000}},{"itemId":641363,"className":"Drug_Alche_HPUP9","name":"Condensed Protection Potion Lv9","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_WholeDEF_gimmick01","numArg1":3025,"numArg2":60000}},{"itemId":641364,"className":"Drug_Alche_HPUP10","name":"Condensed Protection Potion Lv10","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_WholeDEF_gimmick01","numArg1":3325,"numArg2":60000}},{"itemId":641365,"className":"Drug_Alche_HPUP11","name":"Condensed Protection Potion Lv11","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_WholeDEF_gimmick01","numArg1":3625,"numArg2":60000}},{"itemId":641366,"className":"Drug_Alche_HPUP12","name":"Condensed Protection Potion Lv12","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_WholeDEF_gimmick01","numArg1":3925,"numArg2":60000}},{"itemId":641367,"className":"Drug_Alche_HPUP13","name":"Condensed Protection Potion Lv13","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_WholeDEF_gimmick01","numArg1":4225,"numArg2":60000}},{"itemId":641368,"className":"Drug_Alche_HPUP14","name":"Condensed Protection Potion Lv14","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_WholeDEF_gimmick01","numArg1":4525,"numArg2":60000}},{"itemId":641369,"className":"Drug_Alche_HPUP15","name":"Condensed Protection Potion Lv15","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_WholeDEF_gimmick01","numArg1":4825,"numArg2":60000}},{"itemId":641801,"className":"Drug_Premium_HP1","name":"Highly Condensed HP Potion","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP","numArg1":395}},{"itemId":641802,"className":"Drug_Premium_SP1","name":"Highly Condensed SP Potion","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP","numArg1":131}},{"itemId":641803,"className":"Drug_Haste1_event","name":"Highly Condensed Movement Speed Potion","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":2,"numArg2":14400000}},{"itemId":641804,"className":"Scroll_Transform_Random","name":"Unidentified Transformation Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GIMMICK_TRANSFORM_RANDOM"}},{"itemId":641810,"className":"Leticia_Steam_Wep_Box315","name":"Material Box: LV 315","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_LETICIA_ETC_WEP315"}},{"itemId":641812,"className":"Leticia_Recipe_Wep315_Steam","name":"Lv 315 Recipe Box - Weapon","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_LETICIA_RECIPE_WEP315_STEAM"}},{"itemId":641813,"className":"Leticia_MonsterGem_1Rank_Steam","name":"Monster Gem Box: Rank 1","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_LETICIA_MONSTERGEM_1RANK"}},{"itemId":641815,"className":"Leticia_MonsterGem_2Rank_Steam","name":"Monster Gem Box: Rank 2","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_LETICIA_MONSTERGEM_2RANK"}},{"itemId":641816,"className":"Leticia_MonsterGem_3Rank_Steam","name":"Monster Gem Box: Rank 3","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_LETICIA_MONSTERGEM_3RANK"}},{"itemId":641817,"className":"Leticia_MonsterGem_4Rank_Steam","name":"Monster Gem Box: Rank 4","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_LETICIA_MONSTERGEM_4RANK"}},{"itemId":641818,"className":"Drug_Haste1_event_DLC","name":"Highly Condensed Movement Speed Potion","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":2,"numArg2":14400000}},{"itemId":641901,"className":"Event_moneyBox1","name":"Basic Silver Chest","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_MONEYBOX","numArg1":5000}},{"itemId":641902,"className":"Event_moneyBox2","name":"Intermediate Silver Chest","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_MONEYBOX","numArg1":50000}},{"itemId":641903,"className":"Event_moneyBox3","name":"Advanced Silver Chest","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_MONEYBOX","numArg1":1000000}},{"itemId":641904,"className":"Event_drug_160218","name":"Settlement Support Potion","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Event160218_Buff","numArg1":1,"numArg2":1800000}},{"itemId":641905,"className":"Event_drug_HP5","name":"Basic HP Potion Lv5","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP","numArg1":230}},{"itemId":641906,"className":"Event_drug_HP10","name":"Basic HP Potion Lv10","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP","numArg1":313}},{"itemId":641907,"className":"Event_drug_SP5","name":"Basic SP Potion Lv5","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP","numArg1":76}},{"itemId":641908,"className":"Event_drug_SP10","name":"Basic SP Potion Lv10","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP","numArg1":104}},{"itemId":641909,"className":"Event_supportBox1","name":"Settlement Support Chest: Lv15","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":15,"script":{"function":"SCR_USE_EVENT_SUPPORTBOX1"}},{"itemId":641910,"className":"Event_supportBox2","name":"Settlement Support Chest: Lv45","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":45,"script":{"function":"SCR_USE_EVENT_SUPPORTBOX2"}},{"itemId":641911,"className":"Event_supportBox3","name":"Settlement Support Chest: Lv60","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":60,"script":{"function":"SCR_USE_EVENT_SUPPORTBOX3"}},{"itemId":641912,"className":"Event_supportBox4","name":"Settlement Support Chest: Lv75","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":75,"script":{"function":"SCR_USE_EVENT_SUPPORTBOX4"}},{"itemId":641913,"className":"Event_supportBox5","name":"Settlement Support Chest: Lv100","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_USE_EVENT_SUPPORTBOX5"}},{"itemId":641914,"className":"Event_drug_100d","name":"100 Days Celebration Potion","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Event160218_Buff","numArg1":1,"numArg2":3600000}},{"itemId":641917,"className":"Event_drug_steam","name":"Settlement Support Potion","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Event160218_Buff","numArg1":1,"numArg2":1800000}},{"itemId":641918,"className":"Event_DailyBox_Steam","name":"Expensive-looking Box","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_DAILYBOX"}},{"itemId":641919,"className":"Event_BuyPointBox_300","name":"300 Battle League Points","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_BUYPOINT","numArg1":300}},{"itemId":641920,"className":"Event_drug_steam_1h","name":"Lv2 Settlement Support Potion","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Event160218_Buff","numArg1":1,"numArg2":3600000}},{"itemId":641921,"className":"Drug_Haste2_DLC","name":"Lv2 Movement Speed Potion","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_HasteBuff","numArg1":3,"numArg2":180000}},{"itemId":641923,"className":"DeathEquipBox_14day","name":"[Event] Deathweaver Equipment Package","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_DEATHEQUIP_14DAY"}},{"itemId":641924,"className":"Event_Seed_ThanksgivingDay","name":"Red Seeds (1 day)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_THANKSGIVINGDAY"}},{"itemId":641926,"className":"161215Event_Seed","name":"Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":641927,"className":"161215Event_NexonCashBox_1","name":"N/A","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":15,"script":{"function":"SCR_USE_161215EVENT_NEXONCASHBOX_1"}},{"itemId":641928,"className":"161215Event_NexonCashBox_2","name":"N/A","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":15,"script":{"function":"SCR_USE_161215EVENT_NEXONCASHBOX_2"}},{"itemId":641929,"className":"161215Event_NexonCashBox_3","name":"N/A","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":15,"script":{"function":"SCR_USE_161215EVENT_NEXONCASHBOX_3"}},{"itemId":641930,"className":"Event_Drug_Alche_HP15","name":"Lv15 Basic Condensed HP Potion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":160,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP","numArg1":802}},{"itemId":641931,"className":"Event_Drug_Alche_SP15","name":"Lv15 Basic Condensed SP Potion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":120,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP","numArg1":184}},{"itemId":641932,"className":"161215Event_WBox_1","name":"Savior's Weapon Chest","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_161215Event_WBox_1","numArg1":5000}},{"itemId":641933,"className":"161215Event_ABox_1","name":"Savior's Armor Chest","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_161215Event_ABox_1","numArg1":5000}},{"itemId":641934,"className":"161215Event_ABox_2","name":"Savior's Begginer Armor Chest","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_161215Event_ABox_2","numArg1":5000}},{"itemId":641935,"className":"161215Event_NewChar","name":"Laima's Gift Chest","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_161215Event_NewChar","numArg1":5000}},{"itemId":641936,"className":"161215Event_OldChar","name":"Laima's Treasure Chest","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_161215Event_OldChar","numArg1":5000}},{"itemId":641937,"className":"CS_IndunReset_GTower_1","name":"Earth Tower One Entry Voucher (5 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_CS_IndunReset_GTower_1"}},{"itemId":641938,"className":"CS_IndunReset_Nunnery_1","name":"Saalus Mission One Entry Voucher (5 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_CS_IndunReset_Nunnery_1"}},{"itemId":641939,"className":"Event_Goddess_Statue","name":"Goddess Sculpture (14 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":641940,"className":"CS_IndunReset_GTower_14d","name":"Earth Tower 1 Extra Entry Voucher (14 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_CS_IndunReset_GTower_1"}},{"itemId":641941,"className":"CS_IndunReset_Nunnery_14d","name":"Saalus Mission One Entry Voucher (14 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_CS_IndunReset_Nunnery_1"}},{"itemId":641943,"className":"Leticia_IndunReset_GTower","name":"Earth Tower 1 Extra Entry Voucher","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_CS_IndunReset_GTower_1"}},{"itemId":641945,"className":"Event_Goddess_Statue_DLC","name":"Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":641946,"className":"Event_drug_steam_1h_DLC","name":"Lv2 Settlement Support Potion","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Event160218_Buff","numArg1":1,"numArg2":3600000}},{"itemId":641952,"className":"Event_1710_NexonCashBox","name":"Lucky Golden Week Chest (1 Hour)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":15,"script":{"function":"SCR_USE_EVENT_1710_NEXONCASHBOX"}},{"itemId":641956,"className":"Reward_Error_compensation_1d","name":"Adventure Journal Ranking Compensation Box (1 Day)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_REWARD_ERROR_COMPENSATION_1d","numArg1":5000}},{"itemId":641957,"className":"Adventurebook_HighRank_Reward_1d","name":"Adventure Journal Rank 1-10 Box (1 Day)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Adventurebook_HighRank_Reward_1d","numArg1":5000}},{"itemId":641958,"className":"Adventurebook_ThirdRank_Reward_1d","name":"Adventure Journal Rank 11-100 Box (1 Day)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Adventurebook_ThirdRank_Reward_1d","numArg1":5000}},{"itemId":641959,"className":"Adventurebook_FourthRank_Reward_1d","name":"Adventure Journal Rank 101-200 Box (1 Day)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Adventurebook_FourthRank_Reward_1d","numArg1":5000}},{"itemId":641960,"className":"Adventurebook_FifthRank_Reward_1d","name":"Adventure Journal Rank 201-300 Box (1 Day)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Adventurebook_FifthRank_Reward_1d","numArg1":5000}},{"itemId":641961,"className":"Adventurebook_FifthRank_Reward_1d_JP","name":"Adventure Journal Rank Box (1 Day)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Adventurebook_FifthRank_Reward_1d","numArg1":5000}},{"itemId":641962,"className":"Event_drug_steam_team","name":"Settlement Support Potion","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Event160218_Buff","numArg1":1,"numArg2":1800000}},{"itemId":641964,"className":"Uphill_Store_Point_10","name":"Uphill Defense Shop Points: 10","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GIVE_UPHILL_STORE_POINT","numArg1":10}},{"itemId":641965,"className":"Adventurebook_HighRank_Reward2_1d","name":"Adventure Journal Rank 1-10 Box (1 Day)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Adventurebook_HighRank_Reward2_1d","numArg1":5000}},{"itemId":641966,"className":"Adventurebook_ThirdRank_Reward2_1d","name":"Adventure Journal Rank 11-100 Box (1 Day)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Adventurebook_ThirdRank_Reward2_1d","numArg1":5000}},{"itemId":641967,"className":"Adventurebook_FourthRank_Reward2_1d","name":"Adventure Journal Rank 101-200 Box (1 Day)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Adventurebook_FourthRank_Reward2_1d","numArg1":5000}},{"itemId":641968,"className":"Adventurebook_FifthRank_Reward2_1d","name":"Adventure Journal Rank 201-300 Box (1 Day)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Adventurebook_FifthRank_Reward2_1d","numArg1":5000}},{"itemId":641969,"className":"Event_190110_ChallengeModeReset_14d","name":"Challenge Mode One Entry Voucher (14 Days)","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":641970,"className":"Event_190131_SWEET_POTATO_ITEM","name":"[Event] Sweet Sweet Potato","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":160,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Event_190131_SWEET_POTATO_BUFF","numArg1":315}},{"itemId":641971,"className":"Event_Drug_Alche_HP15_Premium","name":"Lv15 Basic Condensed HP Potion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":160,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP","numArg1":802}},{"itemId":641972,"className":"Event_Drug_Alche_SP15_Premium","name":"Lv15 Basic Condensed SP Potion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":120,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP","numArg1":184}},{"itemId":641973,"className":"Event_drug_steam_1h_Premium","name":"Lv2 Settlement Support Potion","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Drug_Event160218_Buff","numArg1":1,"numArg2":3600000}},{"itemId":641974,"className":"Event1907_Drug_Alche_HP15","name":"[Summer Festa] Lv. 15 Basic Condensed HP Potion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":160,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP","numArg1":802}},{"itemId":641975,"className":"Event1907_Drug_Alche_SP15","name":"[Summer Festa] Lv. 15 Basic Condensed SP Potion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":120,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP","numArg1":184}},{"itemId":641983,"className":"Coupon_Reagent_Bottle_Expup_100","name":"Pamoka Solution EXP 2x Voucher","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"ITEM_Reagent_Bottle_Expup_100","numArg2":14400000}},{"itemId":641984,"className":"abilitypoint_piece_1000","name":"Ripped 1,000 Attribute Point Ticket","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10}},{"itemId":641985,"className":"Coupon_Reagent_Bottle_Expup_100_Daily","name":"Pamoka Solution EXP 2x Voucher (14 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"ITEM_Reagent_Bottle_Expup_100","numArg2":14400000}},{"itemId":642502,"className":"Gacha_EXP_001","name":"EXP Card Box","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EXPBOX","strArg":"Gacha_EXP_001"}},{"itemId":642503,"className":"Gacha_Recipe_Wep","name":"Lv220 Recipe Box - Weapon","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_RECIPE_WEP","strArg":"Gacha_Recipe_Wep"}},{"itemId":642504,"className":"Gacha_Recipe_Arm","name":"Recipe Box - Armor","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_RECIPE_ARM"}},{"itemId":642505,"className":"Gacha_Recipe_Acc","name":"Lv220 Recipe Box - Accessory","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_RECIPE_ACC","strArg":"Gacha_Recipe_Acc"}},{"itemId":642513,"className":"Gacha_TP_100","name":"Shining Cube Piece","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_TP_001"}},{"itemId":642514,"className":"Recycle_Shop_Medal","name":"Exchange Medal","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":642516,"className":"Gacha_MonsterGem_Box","name":"Monster Gem Box","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_MONSTERGEM_BOX"}},{"itemId":642517,"className":"Gacha_BaseItem_Box","name":"Material Box","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_BASEITEM_BOX"}},{"itemId":642518,"className":"Gacha_MonsterGem_Box01","name":"Monster Gem Box: Rank 2 (Swordsman, Cleric)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_MONSTERGEM_BOX1704_01"}},{"itemId":642519,"className":"Gacha_MonsterGem_Box02","name":"Monster Gem Box: Rank 2 (Wizard, Archer)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_MONSTERGEM_BOX1704_02"}},{"itemId":642520,"className":"Gacha_BaseItem_Box01","name":"Material Box: No. 3","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_BASEITEM_BOX1704_01"}},{"itemId":642548,"className":"Wing_Shop_Coupon","name":"ITEM_20230424_028418","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":642708,"className":"Gacha_E_008","name":"Lucky Red Box","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_160218_1"}},{"itemId":642709,"className":"Gacha_E_009","name":"Lucky Blue Box","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_160218_2"}},{"itemId":642710,"className":"Gacha_E_010","name":"Lucky Orange Box","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_160218_3"}},{"itemId":642711,"className":"Gacha_E_011","name":"Lucky Green Box","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_160218_4"}},{"itemId":642712,"className":"Gacha_E_012","name":"Lucky Golden Box","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_160218_5"}},{"itemId":642713,"className":"HelperSummon_001","name":"Helper Summoning Stone","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_160218_5"}},{"itemId":643025,"className":"Moru_Gold_14d_Team","name":"Golden Anvil (14 Days)","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":643042,"className":"Transcend_Scroll_3_Event_1905","name":"[Event] Transcendence Stage 3 Scroll","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"transcend_Set","numArg1":3,"numArg2":100}},{"itemId":643043,"className":"Transcend_Scroll_5_Event_1905","name":"[Event] Transcendence Stage 5 Scroll","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"transcend_Set","numArg1":5,"numArg2":100}},{"itemId":643044,"className":"Transcend_Scroll_8_Event_1905","name":"[Event] Transcendence Stage 8 Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"transcend_Set","numArg1":8,"numArg2":100}},{"itemId":643045,"className":"Transcend_Scroll_10_PC","name":"ITEM_20230425_028583","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"transcend_Set_400","numArg1":10,"numArg2":100}},{"itemId":643047,"className":"Transcend_Scroll_9_PC","name":"[Lv. 400] Stage 9 Transcendence Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"transcend_Set_400","numArg1":9,"numArg2":100}},{"itemId":643048,"className":"Transcend_Scroll_8_Event_TimeLimit","name":"[Event] Transcendence Stage 8 Scroll (90 Days)","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"transcend_Set","numArg1":8,"numArg2":100}},{"itemId":643051,"className":"Moru_Silver_Team_event1909","name":"[Event] Silver Anvil (14 Days)","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"SILVER","numArg1":3,"numArg2":3}},{"itemId":643052,"className":"event1909_Transcend_Scroll_8","name":"[Event] Transcendence Stage 8 Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"transcend_Set","numArg1":8,"numArg2":100}},{"itemId":643053,"className":"event1909_Transcend_Scroll_5","name":"[Event] Transcendence Stage 5 Scroll","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"transcend_Set","numArg1":5,"numArg2":100}},{"itemId":643054,"className":"event1909_Transcend_Scroll_3","name":"[Event] Transcendence Stage 3 Scroll","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"transcend_Set","numArg1":3,"numArg2":100}},{"itemId":643055,"className":"Transcend_Scroll_10","name":"Lv.400 Stage 10 Transcendence Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"transcend_Set_400","numArg1":10,"numArg2":100}},{"itemId":643058,"className":"Transcend_Scroll_10_PC_430","name":"ITEM_20230425_028584","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"transcend_Set_440","numArg1":10,"numArg2":100}},{"itemId":643059,"className":"Transcend_Scroll_10_430","name":"[Lv.440] Stage 10 Transcendence Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"transcend_Set_440","numArg1":10,"numArg2":100}},{"itemId":645569,"className":"misc_poisonpot","name":"Venom","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":750,"sellPrice":150,"minLevel":1,"script":{"function":"SCR_USE_ADDPOISON","numArg1":200}},{"itemId":645632,"className":"misc_paperBox_party","name":"Paperbox","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_ITEM_PAPERBOX"}},{"itemId":647046,"className":"TOSHERO_HPSP_DRUG","name":"[Heroic Tale] Recovery Drink","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_TOSHERO_HPSP_DRUG"}},{"itemId":647047,"className":"TOSHERO_item_ballista","name":"[Heroic Tale] Ballista","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_TOSHERO_BALLISTA"}},{"itemId":648501,"className":"emoticonItem_1","name":"Emoticon: Kepa (Joy)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"emoticon_0002"}},{"itemId":648502,"className":"emoticonItem_2","name":"Emoticon: Kepa (Sadness)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"emoticon_0003"}},{"itemId":648503,"className":"kupole_emotion01","name":"Emoticon: Kupole (Cheeky)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"kupole_emotion01"}},{"itemId":648504,"className":"kupole_emotion02","name":"Emoticon: Kupole (Nervous)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"kupole_emotion02"}},{"itemId":648505,"className":"kupole_emotion03","name":"Emoticon: Kupole (Shocked)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"kupole_emotion03"}},{"itemId":648506,"className":"kupole_emotion04","name":"Emoticon: Kupole (Evil)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"kupole_emotion04"}},{"itemId":648507,"className":"kupole_emotion05","name":"Emoticon: Kupole (Sigh)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"kupole_emotion05"}},{"itemId":648508,"className":"kupole_emotion06","name":"Emoticon: Kupole (Peace)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"kupole_emotion06"}},{"itemId":648509,"className":"medeina_emotion01","name":"Emoticon: Medeina (Flustered)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"medeina_emotion01"}},{"itemId":648510,"className":"medeina_emotion02","name":"Emoticon: Medeina (Joy)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"medeina_emotion02"}},{"itemId":648511,"className":"medeina_emotion03","name":"Emoticon: Medeina (Handwashing)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"medeina_emotion03"}},{"itemId":648512,"className":"marnox_emotion02","name":"Emoticon: Maru(Chocolate)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"marnox_emotion02"}},{"itemId":648513,"className":"malsuns_emotion88","name":"Emoticon: Little Burk(Peaceful)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"malsuns_emotion88"}},{"itemId":648514,"className":"malsuns_emotion95","name":"Emoticon: Rexipher(Whirly)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"malsuns_emotion95"}},{"itemId":648515,"className":"Rozaliia_emotion01","name":"Emote: Rozalija (Joy)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"Rozaliia_emotion01"}},{"itemId":648516,"className":"Boruble_emotion01","name":"Emote: Boruble (Shy)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"Boruble_emotion01"}},{"itemId":648517,"className":"medeina_emotion04","name":"Emoticon: Medeina (Pursy)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"medeina_emotion04"}},{"itemId":648518,"className":"medeina_emotion05","name":"Emoticon: Medeina (Fabulous)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"medeina_emotion05"}},{"itemId":648519,"className":"medeina_emotion06","name":"Emoticon: Medeina (Teary)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"medeina_emotion06"}},{"itemId":648520,"className":"medeina_emotion03_2","name":"Emoticon: Medeina (Handwashing)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"medeina_emotion03"}},{"itemId":648521,"className":"kupole_emotion06_2","name":"Emoticon: Kupole (Peace)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"kupole_emotion06"}},{"itemId":648522,"className":"ShellyPennington_emotion01","name":"Emoticon: Shelly(Heart)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"ShellyPennington_emotion01"}},{"itemId":648523,"className":"malsuns_emotion80","name":"Emoticon: Maru (Cry)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"malsuns_emotion80"}},{"itemId":648524,"className":"malsuns_emotion83","name":"Emoticon: Maru (Angry)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"malsuns_emotion83"}},{"itemId":648525,"className":"malsuns_emotion84","name":"Emoticon: Maru (Hope)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"malsuns_emotion84"}},{"itemId":648526,"className":"malsuns_emotion86","name":"Emoticon: Maru (Chop)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"malsuns_emotion86"}},{"itemId":648527,"className":"malsuns_emotion87","name":"Emoticon: Maru (Whine)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"malsuns_emotion87"}},{"itemId":648528,"className":"Hitomico_emoticon_01","name":"Emoticon: Hitomiko (Heart)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"Hitomico_emoticon_01"}},{"itemId":648529,"className":"ragana_emotion05","name":"Emoticon: Ragana(Yikes)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"ragana_emotion05"}},{"itemId":648530,"className":"baiga_emotion01","name":"Emoticon: Baiga(Cheers)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"baiga_emotion01"}},{"itemId":648531,"className":"blackman_emotion01","name":"Emoticon: Beholder(Lightbulb)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"blackman_emotion01"}},{"itemId":648532,"className":"Zanas_emotion01","name":"Emoticon: Zanas(Celebrate)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"Zanas_emotion01"}},{"itemId":648533,"className":"SorshaHutton_emotion01","name":"Emoticon: Sorscha (Gear Up)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"SorshaHutton_emotion01"}},{"itemId":648534,"className":"malsuns_emotion82","name":"Emoticon: Maru (Celebration)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"malsuns_emotion82"}},{"itemId":648535,"className":"Baubas_Valentine_01","name":"Emoticon: Baubas (Chocolate)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"Baubas_Valentine_01"}},{"itemId":648536,"className":"Baubas_toothbrushing_01","name":"Emoticon: Baubas (Brush Teeth)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"Baubas_toothbrushing_01"}},{"itemId":648537,"className":"Mulia_emotion138","name":"Emoji: Mulia (Hanabi)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"Mulia_emotion138"}},{"itemId":648538,"className":"Mulia_emotion139","name":"Emoji: Mulia (Goldfish)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"Mulia_emotion139"}},{"itemId":648539,"className":"Mulia_emotion140","name":"Emoji: Mulia (Iceslurry)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"Mulia_emotion140"}},{"itemId":648540,"className":"Mulia_emotion141","name":"Emoji: Mulia (Shoot)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"Mulia_emotion141"}},{"itemId":648541,"className":"Mulia_emotion142","name":"Emoji: Mulia (Takoyaki)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"Mulia_emotion142"}},{"itemId":648542,"className":"Mulia_emotion143","name":"Emoji: Mulia (77)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"Mulia_emotion143"}},{"itemId":648543,"className":"Unity_emotion144","name":"Emoji: Harmony (Promise 1)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"Unity_emotion144"}},{"itemId":648544,"className":"Unity_emotion145","name":"Emoji: Harmony (Promise 2)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"Unity_emotion145"}},{"itemId":648545,"className":"Unity_emotion146","name":"Emoji: Harmony (Handshake)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"Unity_emotion146"}},{"itemId":648546,"className":"Unity_emotion147","name":"Emoji: Harmony (Highfive)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"Unity_emotion147"}},{"itemId":648547,"className":"Spreader_moticon01","name":"Emoji: Reservoir(Worship)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"Spreader_moticon01"}},{"itemId":648548,"className":"Spreader_moticon02","name":"Emoji: Reservoir(Laugh)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"Spreader_moticon02"}},{"itemId":648549,"className":"Falouros_moticon01","name":"Emote: Falouros (Strong)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"Falouros_moticon01"}},{"itemId":648550,"className":"Falouros_moticon02","name":"Emote: Falouros (Rage)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"Falouros_moticon02"}},{"itemId":648551,"className":"miserable_bunnyroze","name":"ITEM_20230320_028376","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"miserable_bunnyroze"}},{"itemId":648552,"className":"snowleopard_beholder","name":"ITEM_20230320_028378","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"snowleopard_beholder"}},{"itemId":648553,"className":"happybunny_roze","name":"ITEM_20230320_028380","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"happybunny_roze"}},{"itemId":648554,"className":"shewmouse_piedpiper","name":"ITEM_20230320_028382","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"shewmouse_piedpiper"}},{"itemId":648555,"className":"Beholder_Aprilfool","name":"ITEM_20230424_028502","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"Beholder_Aprilfool"}},{"itemId":649401,"className":"seed_01","name":"Dilgele Seeds","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":450,"sellPrice":90,"minLevel":1,"script":{"function":"SCR_USE_AGIT_SEED_CALLBACK","strArg":"Seed_001"}},{"itemId":649402,"className":"seed_02","name":"Gyslotis Seeds","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_AGIT_SEED_CALLBACK","strArg":"Seed_002"}},{"itemId":649403,"className":"seed_03","name":"Raudonelis","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1,"script":{"function":"SCR_USE_AGIT_SEED_CALLBACK","strArg":"Seed_003"}},{"itemId":649404,"className":"seed_04","name":"Jonazole Seeds","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_AGIT_SEED_CALLBACK","strArg":"Seed_004"}},{"itemId":649405,"className":"seed_05","name":"Mairunas Seeds","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_AGIT_SEED_CALLBACK","strArg":"Seed_005"}},{"itemId":649406,"className":"seed_06","name":"Rosemary Seeds","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_AGIT_SEED_CALLBACK","strArg":"Seed_006"}},{"itemId":649407,"className":"seed_07","name":"Lavender Seeds","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_AGIT_SEED_CALLBACK","strArg":"Seed_007"}},{"itemId":649601,"className":"egg_001","name":"Guinea Pig Egg","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_AGIT_EGG_CALLBACK","strArg":"Guineapig","numArg1":38}},{"itemId":649602,"className":"egg_002","name":"Lesser Panda Egg","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_AGIT_EGG","strArg":"Panda","numArg1":38}},{"itemId":649603,"className":"egg_003","name":"Baby Pig Egg","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"Piggy","numArg1":38}},{"itemId":649605,"className":"egg_005","name":"Owl Egg","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_AGIT_EGG","strArg":"barn_owl","numArg1":38}},{"itemId":649607,"className":"egg_007","name":"Lesser Panda Box","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"Lesser_panda","numArg1":38}},{"itemId":649608,"className":"egg_008","name":"Alchemist's Stone","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_HOMUNCULUS","strArg":"Alchemist_MagnumOpus","numArg1":10,"numArg2":864000}},{"itemId":649615,"className":"egg_015","name":"Gray Lesser Panda Box","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"Lesser_panda_gray","numArg1":38}},{"itemId":649698,"className":"egg_098","name":"Guinea Pig Egg (Test, 1 minute)","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_AGIT_EGG","strArg":"Guineapigtest","numArg1":38}},{"itemId":649699,"className":"egg_099","name":"Reincarnation Egg","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_AGIT_EGG","strArg":"Guineapig_old","numArg1":38}},{"itemId":649700,"className":"egg_017","name":"Armadillo Egg","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"Armadillo","numArg1":38}},{"itemId":649702,"className":"egg_022","name":"Dodo Bird Egg","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"Pet_mrdodo","numArg1":38}},{"itemId":649704,"className":"egg_024","name":"Spotted Baby Pig Egg","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"Pet_piggy_spotted","numArg1":38}},{"itemId":650013,"className":"Escape_Orb_orsha","name":"Warpstone","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Escape"}},{"itemId":651001,"className":"GuildColony_Item_Woodenwall_Trap","name":"[GTW] Wooden Barricade","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":100000,"sellPrice":100,"minLevel":1,"script":{"function":"SCR_USE_COLONY_ITEM_SUMMON_WOODENWALL_TRAP","strArg":"GuildColony_Interrupt_Object","numArg1":600}},{"itemId":651002,"className":"GuildColony_Item_Ballista","name":"[GTW] Ballista","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":300000,"sellPrice":100,"minLevel":1,"script":{"function":"SCR_USE_COLONY_ITEM_SUMMON_BALLISTA","strArg":"GuildColony_Defense_Object","numArg1":600}},{"itemId":651003,"className":"GuildColony_Item_Siege_Tower","name":"[GTW] Siege Tower","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":500000,"sellPrice":100,"minLevel":1,"script":{"function":"SCR_USE_COLONY_ITEM_SUMMON_SIEGE_TOWER","strArg":"GuildColony_Offense_Object","numArg1":600}},{"itemId":651004,"className":"GuildColony_Item_Divine_Flag","name":"[GTW] Divine Flag","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":300000,"sellPrice":100,"minLevel":1,"script":{"function":"SCR_USE_COLONY_ITEM_SUMMON_DIVINE_FLAG","strArg":"GuildColony_Divine_Flag_Object","numArg1":180}},{"itemId":651005,"className":"GuildColony_Item_mysticCristal","name":"[GTW] Mysterious Crystal","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"RestartCristal/2;Vis/10000"}},{"itemId":651006,"className":"GuildColony_Item_AoE_Revive_Scroll","name":"[GTW] Wide Regeneration Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_COLONY_ITEM_AOE_REVIVE_SCROLL","numArg1":300,"numArg2":50}},{"itemId":651007,"className":"GuildColony_Item_Scroll_Warp_Colony","name":"[GTW] Warp Scroll - GTW","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50000,"sellPrice":100,"minLevel":1,"script":{"function":"SCR_USE_COLONY_ITEM_SCROLL_WARP_COLONY"}},{"itemId":651008,"className":"GuildColony_Item_mysticCristal_Colony_Support2","name":"[GTW Event] Mysterious Crystal","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"RestartCristal/2;Vis/10000"}},{"itemId":651009,"className":"GuildColony_Item_Scroll_Warp_Colony_Support2","name":"[GTW Event] Warp Scroll - GTW","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50000,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_COLONY_ITEM_SCROLL_WARP_COLONY"}},{"itemId":651010,"className":"GuildColony_Item_Observation_Scroll","name":"[GTW] Recon Map","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50000,"sellPrice":100,"minLevel":1,"script":{"function":"SCR_USE_COLONY_ITEM_OBSERVATION_SCROLL"}},{"itemId":651011,"className":"GuildColony_Item_Resistance_status_Drug","name":"[GTW] Status Ailment Resistance Potion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":200000,"sellPrice":100,"minLevel":1,"script":{"function":"SCR_USE_COLONY_ITEM_RESISTANCE_STATUS_DRUG","strArg":"GuildColony_Resistance_status_Drug_Buff","numArg1":5}},{"itemId":652001,"className":"GuildHousing_Item_h_bench_01_brown","name":"[Guild Housing] Bench (Brown)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_bench_01_brown"}},{"itemId":652002,"className":"GuildHousing_Item_h_street_lamp_01","name":"[Guild Housing] Klaipeda Streetlamp","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_street_lamp_01"}},{"itemId":652003,"className":"GuildHousing_Item_h_hydrangea_01_blue","name":"[Guild Housing] Hydrangea A (Blue)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_hydrangea_01_blue"}},{"itemId":652004,"className":"GuildHousing_Item_h_hydrangea_02_blue","name":"[Guild Housing] Hydrangea B (Blue)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_hydrangea_02_blue"}},{"itemId":652005,"className":"GuildHousing_Item_h_street_lamp_02","name":"[Guild Housing] Orsha Streetlamp","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_street_lamp_02"}},{"itemId":652006,"className":"GuildHousing_Item_h_street_lamp_03","name":"[Guild Housing] Magic Streetlamp","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_street_lamp_03"}},{"itemId":652007,"className":"GuildHousing_Item_h_street_lamp_04","name":"[Guild Housing] Tree Streetlamp","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_street_lamp_04"}},{"itemId":652008,"className":"GuildHousing_Item_h_small_fountain_01","name":"[Guild Housing] Basic Fountain (Small)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_small_fountain_01"}},{"itemId":652009,"className":"GuildHousing_Item_h_statue_01","name":"[Guild Housing] Musical Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_statue_01"}},{"itemId":652010,"className":"GuildHousing_Item_h_fountain_01","name":"[Guild Housing] Garden Fountain (Small)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_fountain_01"}},{"itemId":652011,"className":"GuildHousing_Item_h_fountain_02","name":"[Guild Housing] Garden Fountain (Medium)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_fountain_02"}},{"itemId":652012,"className":"GuildHousing_Item_h_fountain_03","name":"[Guild Housing] Garden Fountain (Large)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_fountain_03"}},{"itemId":652013,"className":"GuildHousing_Item_h_fountain_04","name":"[Guild Housing] Monastery Fountain","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_fountain_04"}},{"itemId":652014,"className":"GuildHousing_Item_h_flowerLight_01_pink","name":"[Guild Housing] Floral Garden Lantern L (Pink)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flowerLight_01_pink"}},{"itemId":652015,"className":"GuildHousing_Item_h_flowerLight_02_pink","name":"[Guild Housing] Floral Garden Lantern R (Pink)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flowerLight_02_pink"}},{"itemId":652016,"className":"GuildHousing_Item_h_flower_arch_01_purple","name":"[Guild Housing] Floral Arch (Purple)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flower_arch_01_purple"}},{"itemId":652017,"className":"GuildHousing_Item_h_bonfire_01","name":"[Guild Housing] Iron Lantern","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_bonfire_01"}},{"itemId":652018,"className":"GuildHousing_Item_h_arch_01_brown","name":"[Guild Housing] Garden Fence (Brown)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_arch_01_brown"}},{"itemId":652019,"className":"GuildHousing_Item_h_barrack_05_bigtree","name":"[Guild Housing] Big Tree with Swing","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_barrack_05_bigtree"}},{"itemId":652020,"className":"GuildHousing_Item_h_barrack_gramophone","name":"[Guild Housing] Phonograph","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_barrack_gramophone"}},{"itemId":652021,"className":"GuildHousing_Item_h_barrack_puddle","name":"[Guild Housing] Pond (White)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_barrack_puddle"}},{"itemId":652022,"className":"GuildHousing_Item_h_bigplant_set_01_green","name":"[Guild Housing] Flower Bed A (Green)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_bigplant_set_01_green"}},{"itemId":652023,"className":"GuildHousing_Item_h_bigplant_set_02_green","name":"[Guild Housing] Flower Bed B (Green)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_bigplant_set_02_green"}},{"itemId":652024,"className":"GuildHousing_Item_h_bigplant_set_03_green","name":"[Guild Housing] Flower Bed C (Green)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_bigplant_set_03_green"}},{"itemId":652025,"className":"GuildHousing_Item_h_farm_brownfence_01","name":"[Guild Housing] Farm Fence A (Brown)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_farm_brownfence_01"}},{"itemId":652026,"className":"GuildHousing_Item_h_farm_brownfence_02","name":"[Guild Housing] Farm Fence B (Brown)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_farm_brownfence_02"}},{"itemId":652027,"className":"GuildHousing_Item_h_farm_brownfence_03","name":"[Guild Housing] Farm Fence C (Brown)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_farm_brownfence_03"}},{"itemId":652028,"className":"GuildHousing_Item_h_farm_brownfence_04","name":"[Guild Housing] Farm Fence D (Brown)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_farm_brownfence_04"}},{"itemId":652029,"className":"GuildHousing_Item_h_farm_normaltree_01_green","name":"[Guild Housing] Decorative Tree (Green)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_farm_normaltree_01_green"}},{"itemId":652030,"className":"GuildHousing_Item_h_farm_plantfence_01","name":"[Guild Housing] Wooden Fence _1","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_farm_plantfence_01"}},{"itemId":652031,"className":"GuildHousing_Item_h_farm_pump_01","name":"[Guild Housing] Pump","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_farm_pump_01"}},{"itemId":652032,"className":"GuildHousing_Item_h_farm_sack_01","name":"[Guild Housing] Fertilizer","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_farm_sack_01"}},{"itemId":652033,"className":"GuildHousing_Item_h_farm_whitefence_01","name":"[Guild Housing] Farm Fence A (White)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_farm_whitefence_01"}},{"itemId":652034,"className":"GuildHousing_Item_h_farm_whitefence_02","name":"[Guild Housing] Farm Fence B (White)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_farm_whitefence_02"}},{"itemId":652035,"className":"GuildHousing_Item_h_farm_whitefence_03","name":"[Guild Housing] Farm Fence C (White)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_farm_whitefence_03"}},{"itemId":652036,"className":"GuildHousing_Item_h_farm_whitefence_04","name":"[Guild Housing] Farm Fence D (White)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_farm_whitefence_04"}},{"itemId":652037,"className":"GuildHousing_Item_h_farm_whitefence_05","name":"[Guild Housing] Farm Fence E (White)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_farm_whitefence_05"}},{"itemId":652038,"className":"GuildHousing_Item_h_flowerpot_01_yellow","name":"[Guild Housing] Potted Rose (Yellow)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flowerpot_01_yellow"}},{"itemId":652039,"className":"GuildHousing_Item_h_flowerpot_02_green","name":"[Guild Housing] Decorative Potted Flower (Green)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flowerpot_02_green"}},{"itemId":652040,"className":"GuildHousing_Item_h_gate_01","name":"[Guild Housing] Garden Arch","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_gate_01"}},{"itemId":652041,"className":"GuildHousing_Item_h_hydrangea_set_01_blue","name":"[Guild Housing] Potted Hydrangea (Blue)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_hydrangea_set_01_blue"}},{"itemId":652042,"className":"GuildHousing_Item_h_parasol_01_white","name":"[Guild Housing] Parasol (White)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_parasol_01_white"}},{"itemId":652043,"className":"GuildHousing_Item_h_shop_set","name":"[Guild Housing] Assorted Shops","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_shop_set"}},{"itemId":652044,"className":"GuildHousing_Item_h_smallplant_set_01_green","name":"[Guild Housing] Flower Bed D (Green)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_smallplant_set_01_green"}},{"itemId":652045,"className":"GuildHousing_Item_h_table_set_01_white","name":"[Guild Housing] Table with Flower (White)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_table_set_01_white"}},{"itemId":652046,"className":"GuildHousing_Item_h_topiary_swan","name":"[Guild Housing] Topiary (Swan)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_topiary_swan"}},{"itemId":652047,"className":"GuildHousing_Item_h_windmill_01","name":"[Guild Housing] Windmill","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_windmill_01"}},{"itemId":652048,"className":"GuildHousing_Item_h_topiary_tree","name":"[Guild Housing] Topiary (Tree)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_topiary_tree"}},{"itemId":652049,"className":"GuildHousing_Item_h_topiary_popolion","name":"[Guild Housing] Topiary (Popolion)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_topiary_popolion"}},{"itemId":652050,"className":"GuildHousing_Item_h_topiary_kepa","name":"[Guild Housing] Topiary (Kepa)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_topiary_kepa"}},{"itemId":652051,"className":"GuildHousing_Item_h_topiary_horse","name":"[Guild Housing] Topiary (Horse)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_topiary_horse"}},{"itemId":652052,"className":"GuildHousing_Item_h_topiary_cube","name":"[Guild Housing] Grass Cube","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_topiary_cube"}},{"itemId":652053,"className":"GuildHousing_Item_h_topiary_05","name":"[Guild Housing] Topiary (Decorative Garden)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_topiary_05"}},{"itemId":652054,"className":"GuildHousing_Item_h_statue_04","name":"[Guild Housing] Knight Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_statue_04"}},{"itemId":652055,"className":"GuildHousing_Item_h_whitetree_tree","name":"[Guild Housing] Aged Tree (Pink)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_whitetree_tree"}},{"itemId":652056,"className":"GuildHousing_Item_h_tree_basic_01","name":"[Guild Housing] Decorative Tree_1","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_tree_basic_01"}},{"itemId":652057,"className":"GuildHousing_Item_h_stone_tower_02","name":"[Guild Housing] Stone Tower B","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_stone_tower_02"}},{"itemId":652058,"className":"GuildHousing_Item_h_statue_03","name":"[Guild Housing] Praying Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_statue_03"}},{"itemId":652059,"className":"GuildHousing_Item_h_statue_02","name":"[Guild Housing] Goat Monster Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_statue_02"}},{"itemId":652060,"className":"GuildHousing_Item_h_sea_anemone_01_red","name":"[Guild Housing] Anemone (Red)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_sea_anemone_01_red"}},{"itemId":652061,"className":"GuildHousing_Item_h_oak_cask_set_01","name":"[Guild Housing] Oak Barrel Set","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_oak_cask_set_01"}},{"itemId":652062,"className":"GuildHousing_Item_h_fruit_basket_01_basic","name":"[Guild Housing] Fruit Basket (Brown)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_fruit_basket_01_basic"}},{"itemId":652063,"className":"GuildHousing_Item_h_flower_keep_water_yellow","name":"[Guild Housing] Dewy Flower (Yellow)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flower_keep_water_yellow"}},{"itemId":652064,"className":"GuildHousing_Item_h_flower_alocasia_white","name":"[Guild Housing] Alocasia (White)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flower_alocasia_white"}},{"itemId":652065,"className":"GuildHousing_Item_h_coral_03_blue","name":"[Guild Housing] Alcyoniuml (Blue)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_coral_03_blue"}},{"itemId":652066,"className":"GuildHousing_Item_h_coral_02_red","name":"[Guild Housing] Alcyonium (Red)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_coral_02_red"}},{"itemId":652067,"className":"GuildHousing_Item_h_coral_01_blue","name":"[Guild Housing] Blue Coral","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_coral_01_blue"}},{"itemId":652068,"className":"GuildHousing_Item_h_conch_01_basic","name":"[Guild Housing] Conch Shell (Brown)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_conch_01_basic"}},{"itemId":652069,"className":"GuildHousing_Item_h_cactus_01","name":"[Guild Housing] Cactus","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_cactus_01"}},{"itemId":652070,"className":"GuildHousing_Item_h_field","name":"[Guild Housing] Farm Plot","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_field"}},{"itemId":652071,"className":"GuildHousing_Item_h_rampartfence_01","name":"[Guild Housing] Castle Wall","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_rampartfence_01"}},{"itemId":652072,"className":"GuildHousing_Item_h_armor_laboratory","name":"[Guild Housing] Armor Lab","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_armor_laboratory_set"}},{"itemId":652073,"className":"GuildHousing_Item_h_attribute_laboratory","name":"[Guild Housing] Property Lab","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_attribute_laboratory_set"}},{"itemId":652074,"className":"GuildHousing_Item_h_weapon_laboratory","name":"[Guild Housing] Weapon Lab","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_weapon_laboratory_set"}},{"itemId":652075,"className":"GuildHousing_Item_h_manufacture_workshop","name":"[Guild Housing] Crafting Lab","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_manufacture_workshop_set"}},{"itemId":652076,"className":"GuildHousing_Item_h_scarecrow_01","name":"[Guild Housing] Scarecrow","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_scarecrow_01"}},{"itemId":652077,"className":"GuildHousing_Item_h_stone_tower_01","name":"[Guild Housing] Stone Tower A","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_stone_tower_01"}},{"itemId":652078,"className":"GuildHousing_Item_h_castle_ramp_1","name":"[Guild Housing] Castle Streetlamp","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_castle_ramp_1"}},{"itemId":652079,"className":"GuildHousing_Item_h_statue_bakarine","name":"[Guild Housing] Vakarine Goddess Statue","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_statue_bakarine"}},{"itemId":652080,"className":"GuildHousing_Item_h_flower_arch_01_red","name":"[Guild Housing] Flower Arch (Red)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flower_arch_01_red"}},{"itemId":652081,"className":"GuildHousing_Item_h_flower_arch_01_white","name":"[Guild Housing] Flower Arch (White)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flower_arch_01_white"}},{"itemId":652082,"className":"GuildHousing_Item_h_flower_arch_01_yellow","name":"[Guild Housing] Flower Arch (Yellow)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flower_arch_01_yellow"}},{"itemId":652083,"className":"GuildHousing_Item_h_bench_01_green","name":"[Guild Housing] Bench (Green)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_bench_01_green"}},{"itemId":652084,"className":"GuildHousing_Item_h_bench_01_white","name":"[Guild Housing] Bench (White)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_bench_01_white"}},{"itemId":652085,"className":"GuildHousing_Item_h_bench_01_wine","name":"[Guild Housing] Bench (Wine)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_bench_01_wine"}},{"itemId":652086,"className":"GuildHousing_Item_h_flower_alocasia_orange","name":"[Guild Housing] Alocasia (Orange)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flower_alocasia_orange"}},{"itemId":652087,"className":"GuildHousing_Item_h_flower_alocasia_pink","name":"[Guild Housing] Alocasia (Pink)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flower_alocasia_pink"}},{"itemId":652088,"className":"GuildHousing_Item_h_flower_alocasia_yellow","name":"[Guild Housing] Alocasia (Yellow)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flower_alocasia_yellow"}},{"itemId":652089,"className":"GuildHousing_Item_h_flower_keep_water_purple","name":"[Guild Housing] Dewy Flower (Purple)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flower_keep_water_purple"}},{"itemId":652090,"className":"GuildHousing_Item_h_flower_keep_water_red","name":"[Guild Housing] Dewy Flower (Red)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flower_keep_water_red"}},{"itemId":652091,"className":"GuildHousing_Item_h_flower_keep_water_white","name":"[Guild Housing] Dewy Flower (White)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flower_keep_water_white"}},{"itemId":652092,"className":"GuildHousing_Item_h_conch_01_pink","name":"[Guild Housing] Conch Shell (Pink)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_conch_01_pink"}},{"itemId":652093,"className":"GuildHousing_Item_h_conch_01_purple","name":"[Guild Housing] Conch Shell (Purple)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_conch_01_purple"}},{"itemId":652094,"className":"GuildHousing_Item_h_fruit_basket_01_purple","name":"[Guild Housing] Fruit Basket (Purple)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_fruit_basket_01_purple"}},{"itemId":652095,"className":"GuildHousing_Item_h_fruit_basket_01_red","name":"[Guild Housing] Fruit Basket (Red)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_fruit_basket_01_red"}},{"itemId":652096,"className":"GuildHousing_Item_h_sea_anemone_01_blue","name":"[Guild Housing] Anemone (Blue)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_sea_anemone_01_blue"}},{"itemId":652097,"className":"GuildHousing_Item_h_sea_anemone_01_yellow","name":"[Guild Housing] Anemone (Yellow)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_sea_anemone_01_yellow"}},{"itemId":652098,"className":"GuildHousing_Item_h_arch_01_black","name":"[Guild Housing] Garden Fence (Black)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_arch_01_black"}},{"itemId":652099,"className":"GuildHousing_Item_h_arch_01_white","name":"[Guild Housing] Garden Fence (White)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_arch_01_white"}},{"itemId":652100,"className":"GuildHousing_Item_h_hydrangea_set_01_red","name":"[Guild Housing] Potted Hydrangea (Red)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_hydrangea_set_01_red"}},{"itemId":652101,"className":"GuildHousing_Item_h_hydrangea_set_01_white","name":"[Guild Housing] Potted Hydrangea (White)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_hydrangea_set_01_white"}},{"itemId":652102,"className":"GuildHousing_Item_h_hydrangea_set_01_yellow","name":"[Guild Housing] Potted Hydrangea (Yellow)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_hydrangea_set_01_yellow"}},{"itemId":652103,"className":"GuildHousing_Item_h_smallplant_set_01_cyan","name":"[Guild Housing] Flower Bed D (Turquoise)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_smallplant_set_01_cyan"}},{"itemId":652104,"className":"GuildHousing_Item_h_table_set_01_pink","name":"[Guild Housing] Table with Flower (Pink)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_table_set_01_pink"}},{"itemId":652105,"className":"GuildHousing_Item_h_table_set_01_yellow","name":"[Guild Housing] Table with Flower (Yellow","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_table_set_01_yellow"}},{"itemId":652106,"className":"GuildHousing_Item_h_whitetree_tree_purple","name":"[Guild Housing] Aged Tree (Purple)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_whitetree_tree_purple"}},{"itemId":652107,"className":"GuildHousing_Item_h_whitetree_tree_white","name":"[Guild Housing] Aged Tree (White)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_whitetree_tree_white"}},{"itemId":652108,"className":"GuildHousing_Item_h_whitetree_tree_yellow","name":"[Guild Housing] Aged Tree (Yellow)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_whitetree_tree_yellow"}},{"itemId":652109,"className":"GuildHousing_Item_h_flowerLight_01_red","name":"[Guild Housing] Floral Garden Lantern L (Red)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flowerLight_01_red"}},{"itemId":652110,"className":"GuildHousing_Item_h_flowerLight_01_white","name":"[Guild Housing] Floral Garden Lantern L (White)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flowerLight_01_white"}},{"itemId":652111,"className":"GuildHousing_Item_h_flowerLight_02_red","name":"[Guild Housing] Floral Garden Lantern R (Red)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flowerLight_02_red"}},{"itemId":652112,"className":"GuildHousing_Item_h_flowerLight_02_white","name":"[Guild Housing] Floral Garden Lantern R (White)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flowerLight_02_white"}},{"itemId":652113,"className":"GuildHousing_Item_h_hydrangea_01_red","name":"[Guild Housing] Hydrangea A (Red)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_hydrangea_01_red"}},{"itemId":652114,"className":"GuildHousing_Item_h_hydrangea_01_white","name":"[Guild Housing] Hydrangea A (White)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_hydrangea_01_white"}},{"itemId":652115,"className":"GuildHousing_Item_h_hydrangea_01_yellow","name":"[Guild Housing] Hydrangea A (Yellow)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_hydrangea_01_yellow"}},{"itemId":652116,"className":"GuildHousing_Item_h_hydrangea_02_red","name":"[Guild Housing] Hydrangea B (Red)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_hydrangea_02_red"}},{"itemId":652117,"className":"GuildHousing_Item_h_hydrangea_02_white","name":"[Guild Housing] Hydrangea B (White)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_hydrangea_02_white"}},{"itemId":652118,"className":"GuildHousing_Item_h_hydrangea_02_yellow","name":"[Guild Housing] Hydrangea B (Yellow)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_hydrangea_02_yellow"}},{"itemId":652119,"className":"GuildHousing_Item_h_bigplant_set_01_cyan","name":"[Guild Housing] Flower Bed A (Turquoise)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_bigplant_set_01_cyan"}},{"itemId":652120,"className":"GuildHousing_Item_h_bigplant_set_02_cyan","name":"[Guild Housing] Flower Bed B (Turquoise)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_bigplant_set_02_cyan"}},{"itemId":652121,"className":"GuildHousing_Item_h_bigplant_set_03_cyan","name":"[Guild Housing] Flower Bed C (Turquoise)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_bigplant_set_03_cyan"}},{"itemId":652122,"className":"GuildHousing_Item_h_farm_normaltree_01_pink","name":"[Guild Housing] Decorative Tree (Pink)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_farm_normaltree_01_pink"}},{"itemId":652123,"className":"GuildHousing_Item_h_farm_normaltree_01_purple","name":"[Guild Housing] Decorative Tree (Purple)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_farm_normaltree_01_purple"}},{"itemId":652124,"className":"GuildHousing_Item_h_farm_normaltree_01_yellow","name":"[Guild Housing] Decorative Tree (Yellow)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_farm_normaltree_01_yellow"}},{"itemId":652125,"className":"GuildHousing_Item_h_flowerpot_01_blue","name":"[Guild Housing] Potted Rose (Blue)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flowerpot_01_blue"}},{"itemId":652126,"className":"GuildHousing_Item_h_flowerpot_01_red","name":"[Guild Housing] Potted Rose (Red)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flowerpot_01_red"}},{"itemId":652127,"className":"GuildHousing_Item_h_flowerpot_01_white","name":"[Guild Housing] Potted Rose (White)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flowerpot_01_white"}},{"itemId":652128,"className":"GuildHousing_Item_h_flowerpot_02_blue","name":"[Guild Housing] Decorative Potted Flower (Blue)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flowerpot_02_blue"}},{"itemId":652129,"className":"GuildHousing_Item_h_flowerpot_02_red","name":"[Guild Housing] Decorative Potted Flower (Red)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flowerpot_02_red"}},{"itemId":652130,"className":"GuildHousing_Item_h_flowerpot_02_yellow","name":"[Guild Housing] Decorative Potted Flower (Yellow)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flowerpot_02_yellow"}},{"itemId":652131,"className":"GuildHousing_Item_h_parasol_01_blue","name":"[Guild Housing] Parasol (Blue)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_parasol_01_blue"}},{"itemId":652132,"className":"GuildHousing_Item_h_parasol_01_red","name":"[Guild Housing] Parasol (Red)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_parasol_01_red"}},{"itemId":652133,"className":"GuildHousing_Item_h_barrack_puddle_blue","name":"[Guild Housing] Pond (Blue)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_barrack_puddle_blue"}},{"itemId":652134,"className":"GuildHousing_Item_h_barrack_puddle_red","name":"[Guild Housing] Pond (Red)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_barrack_puddle_red"}},{"itemId":652135,"className":"GuildHousing_Item_h_barrack_puddle_yellow","name":"[Guild Housing] Pond (Yellow)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_barrack_puddle_yellow"}},{"itemId":652136,"className":"GuildHousing_Item_h_GuildHousing_farmer_boy","name":"[Guild Housing] Farm Manager (Male) Contract","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_GuildHousing_farmer_boy"}},{"itemId":652137,"className":"GuildHousing_Item_h_GuildHousing_farmer_girl","name":"[Guild Housing] Farm Manager (Female) Contract","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_GuildHousing_farmer_girl"}},{"itemId":652138,"className":"GuildHousing_Item_h_forest_pond_01","name":"[Guild Housing] Forest Life-Duck Pond","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_forest_pond_01"}},{"itemId":652139,"className":"GuildHousing_Item_h_forest_pile_01","name":"[Guild Housing] Forest Life - Haystacks","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_forest_pile_01"}},{"itemId":652140,"className":"GuildHousing_Item_h_forest_rabbit_cage_01","name":"[Guild Housing] Forest Life - Rabbit House","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_forest_rabbit_cage_01"}},{"itemId":652141,"className":"GuildHousing_Item_h_forest_chicken_cage_01","name":"[Guild Housing] Forest Life - Chicken Coop","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_forest_chicken_cage_01"}},{"itemId":652142,"className":"GuildHousing_Item_h_forest_pushcart_01","name":"[Guild Housing] Forest Life - Vegetable Cart","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_forest_pushcart_01"}},{"itemId":652143,"className":"GuildHousing_Item_h_forest_stump_01","name":"[Guild Housing] Forest Life - Stump","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_forest_stump_01"}},{"itemId":652144,"className":"GuildHousing_Item_h_forest_pile_02","name":"[Guild Housing] Forest Life - Pile of Firewood","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_forest_pile_02"}},{"itemId":652145,"className":"GuildHousing_Item_h_forest_stump_02","name":"[Guild Housing] Forest Life - Axe in Stump","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_forest_stump_02"}},{"itemId":652146,"className":"GuildHousing_Item_h_forest_dwarf_01","name":"[Guild Housing] Forest Life - Dwarf with a Rake","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_forest_dwarf_01"}},{"itemId":652147,"className":"GuildHousing_Item_h_forest_dwarf_02","name":"[Guild Housing] Forest Life - Dwarf with a Shovel","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_forest_dwarf_02"}},{"itemId":652148,"className":"GuildHousing_Item_h_forest_scarecrow_01","name":"[Guild Housing] Forest Life - Scarecrow","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_forest_scarecrow_01"}},{"itemId":652149,"className":"GuildHousing_Item_h_forest_bear_shack_01","name":"[Guild Housing] Forest Life - Bear Shack","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_forest_bear_shack_01"}},{"itemId":652150,"className":"GuildHousing_Item_h_forest_bench_01","name":"[Guild Housing] Forest Life - Wooden Bench","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_forest_bench_01"}},{"itemId":652151,"className":"GuildHousing_Item_h_forest_arch_01","name":"[Guild Housing] Forest Life - Pinwheel Entrance","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_forest_arch_01"}},{"itemId":652152,"className":"GuildHousing_Item_h_forest_fence_01","name":"[Guild Housing] Forest Life - Wooden Fence","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_forest_fence_01"}},{"itemId":652153,"className":"GuildHousing_Item_h_forest_arch_02","name":"[Guild Housing] Forest Life - Stump Entrance","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_forest_arch_02"}},{"itemId":652154,"className":"GuildHousing_Item_h_forest_windmill_01","name":"[Guild Housing] Forest Life - Windmill","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_forest_windmill_01"}},{"itemId":652155,"className":"GuildHousing_Item_h_forest_bench_02","name":"[Guild Housing] Forest Life - Swing Chair","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_forest_bench_02"}},{"itemId":652156,"className":"GuildHousing_Item_h_forest_stall_01","name":"[Guild Housing] Forest Life - Grocery Stall","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_forest_stall_01"}},{"itemId":652157,"className":"GuildHousing_Item_h_forest_hammock_01","name":"[Guild Housing] Forest Life - Hammock","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_forest_hammock_01"}},{"itemId":652158,"className":"GuildHousing_Item_h_forest_table_01","name":"[Guild Housing] Forest Life - Wooden Table","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_forest_table_01"}},{"itemId":652159,"className":"GuildHousing_Item_h_tree_basic_02","name":"[Guild Housing] Decorative Tree_2","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_tree_basic_02"}},{"itemId":652160,"className":"GuildHousing_Item_h_plantfence_02","name":"[Guild Housing] Wooden Fence_2","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_plantfence_02"}},{"itemId":652161,"className":"GuildHousing_Item_h_round_tree_01","name":"[Guild Housing] Round Tree","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_round_tree_01"}},{"itemId":652162,"className":"GuildHousing_Item_h_flower_sunflower_yellow","name":"[Guild Housing] Sunflower (Yellow)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flower_sunflower_yellow"}},{"itemId":652163,"className":"GuildHousing_Item_h_flower_poppyflower_yellow","name":"[Guild Housing] Poppy (Yellow)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flower_poppyflower_yellow"}},{"itemId":652164,"className":"GuildHousing_Item_h_flower_cannalily_red","name":"[Guild Housing] Canna (Red)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flower_cannalily_red"}},{"itemId":652165,"className":"GuildHousing_Item_h_topiary_fence","name":"[Guild Housing] Topiary (Fence)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_topiary_fence"}},{"itemId":652166,"className":"GuildHousing_Item_h_topiary_bush","name":"[Guild Housing] Topiary (Bush)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_topiary_bush"}},{"itemId":652167,"className":"GuildHousing_Item_h_bush_01","name":"[Guild Housing] Bush","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_bush_01"}},{"itemId":652168,"className":"GuildHousing_Item_h_fruity_bush_01","name":"[Guild Housing] Brush with Berries","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_fruity_bush_01"}},{"itemId":652169,"className":"GuildHousing_Item_h_flower_dieffenbachia","name":"[Guild Housing] Deffenbachia","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flower_dieffenbachia"}},{"itemId":652170,"className":"GuildHousing_Item_h_flower_valleylily_white","name":"[Guild Housing] Silver Bell (White)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flower_valleylily_white"}},{"itemId":652171,"className":"GuildHousing_Item_h_flower_tulip_white","name":"[Guild Housing] Tulip (White)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flower_tulip_white"}},{"itemId":652172,"className":"GuildHousing_Item_h_small_hydrangea_01_purple","name":"[ Guild Housing ] Little Hydrangea (Purple)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_small_hydrangea_01_purple"}},{"itemId":652173,"className":"GuildHousing_Item_h_tree_basic_03","name":"[Guild Housing] Decorative Tree_3","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_tree_basic_03"}},{"itemId":652174,"className":"GuildHousing_Item_h_flower_lotus_blue","name":"[Guild Housing] Lotus (Blue)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flower_lotus_blue"}},{"itemId":652175,"className":"GuildHousing_Item_h_flower_allium_purple","name":"[Guild Housing] Allium (Purple)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flower_allium_purple"}},{"itemId":652176,"className":"GuildHousing_Item_h_wild_grass_01","name":"[Guild Housing] Wild Grass_1","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_wild_grass_01"}},{"itemId":652177,"className":"GuildHousing_Item_h_flower_lupine_pink","name":"[Guild Housing] Lupinus (Pink)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_flower_lupine_pink"}},{"itemId":652178,"className":"GuildHousing_Item_h_cube_wood_01_beige","name":"[Guild Housing] Wooden Cube (Beige)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_cube_wood_01_beige"}},{"itemId":652179,"className":"GuildHousing_Item_h_cube_wood_01_brown","name":"[Guild Housing] Wooden Cube (Brown)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_cube_wood_01_brown"}},{"itemId":652180,"className":"GuildHousing_Item_h_cube_limestone_01_gray","name":"[Guild Housing] Limestone Cube (Gray)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_cube_limestone_01_gray"}},{"itemId":652181,"className":"GuildHousing_Item_h_cube_limestone_01_beige","name":"[Guild Housing] Limestone Cube (Beige)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_cube_limestone_01_beige"}},{"itemId":652182,"className":"GuildHousing_Item_h_topiary_cube_set","name":"[Guild Housing] Grass Cube x20 Bundle","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_CUBE_SET","strArg":"h_topiary_cube","numArg1":20}},{"itemId":652183,"className":"GuildHousing_Item_h_cube_wood_01_beige_set","name":"[Guild Housing] Wooden Cube (Beige) x20 Bundle","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_CUBE_SET","strArg":"h_cube_wood_01_beige","numArg1":20}},{"itemId":652184,"className":"GuildHousing_Item_h_cube_wood_01_brown_set","name":"[Guild Housing] Wooden Cube (Brown) x20 Bundle","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_CUBE_SET","strArg":"h_cube_wood_01_brown","numArg1":20}},{"itemId":652185,"className":"GuildHousing_Item_h_cube_limestone_01_gray_set","name":"[Guild Housing] Limestone Cube (Gray) x20 Bundle","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_CUBE_SET","strArg":"h_cube_limestone_01_gray","numArg1":20}},{"itemId":652186,"className":"GuildHousing_Item_h_cube_limestone_01_beige_set","name":"[Guild Housing] Limestone Cube (Beige) x20 Bundle","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_CUBE_SET","strArg":"h_cube_limestone_01_beige","numArg1":20}},{"itemId":652187,"className":"GuildHousing_Item_h_cube_water_01","name":"[Guild Housing] Water Cube","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_cube_water_01"}},{"itemId":652188,"className":"GuildHousing_Item_h_cube_clay_01_red","name":"[Guild Housing] Clay Cube (Red)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_cube_clay_01_red"}},{"itemId":652189,"className":"GuildHousing_Item_h_cube_clay_01_black","name":"[Guild Housing] Clay Cube (Black)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_cube_clay_01_black"}},{"itemId":652190,"className":"GuildHousing_Item_h_cube_concrete_01_gray","name":"[Guild Housing] Concrete Cube (Gray)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_cube_concrete_01_gray"}},{"itemId":652191,"className":"GuildHousing_Item_h_cube_concrete_01_ivory","name":"[Guild Housing] Concrete Cube (Ivory)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_cube_concrete_01_ivory"}},{"itemId":652192,"className":"GuildHousing_Item_h_cube_ice_01","name":"[Guild Housing] Ice Cube","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_cube_ice_01"}},{"itemId":652193,"className":"GuildHousing_Item_h_cube_water_01_set","name":"[Guild Housing] Water Cube x20 Bundle","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_CUBE_SET","strArg":"h_cube_water_01","numArg1":20}},{"itemId":652194,"className":"GuildHousing_Item_h_cube_clay_01_red_set","name":"[Guild Housing] Clay Cube (Red) x20 Bundle","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_CUBE_SET","strArg":"h_cube_clay_01_red","numArg1":20}},{"itemId":652195,"className":"GuildHousing_Item_h_cube_clay_01_black_set","name":"[Guild Housing] Clay Cube (Black) x20 Bundle","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_CUBE_SET","strArg":"h_cube_clay_01_black","numArg1":20}},{"itemId":652196,"className":"GuildHousing_Item_h_cube_concrete_01_gray_set","name":"[Guild Housing] Concrete Cube (Gray) x20 Bundle","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_CUBE_SET","strArg":"h_cube_concrete_01_gray","numArg1":20}},{"itemId":652197,"className":"GuildHousing_Item_h_cube_concrete_01_ivory_set","name":"[Guild Housing] Concrete Cube (Ivory) x20 Bundle","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_CUBE_SET","strArg":"h_cube_concrete_01_ivory","numArg1":20}},{"itemId":652198,"className":"GuildHousing_Item_h_cube_ice_01_set","name":"[Guild Housing] Ice Cube x20 Bundle","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_CUBE_SET","strArg":"h_cube_ice_01","numArg1":20}},{"itemId":652199,"className":"GuildHousing_Item_h_guildcamp_fence_01","name":"[Guild Housing] Guild Camp - Stockades","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_guildcamp_fence_01"}},{"itemId":652200,"className":"GuildHousing_Item_h_guildcamp_stand_01","name":"[Guild Housing] Guild Camp - Weapon Rack","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_guildcamp_stand_01"}},{"itemId":652201,"className":"GuildHousing_Item_h_guildcamp_carpet_01","name":"[Guild Housing] Guild Camp - Large Carpet","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_guildcamp_carpet_01"}},{"itemId":652202,"className":"GuildHousing_Item_h_guildcamp_cannon_01","name":"[Guild Housing] Guild Camp - Cannon","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_guildcamp_cannon_01"}},{"itemId":652203,"className":"GuildHousing_Item_h_guildcamp_table_01","name":"[Guild Housing] Guild Camp - Command Table","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_guildcamp_table_01"}},{"itemId":652204,"className":"GuildHousing_Item_h_guildcamp_board_01","name":"[Guild Housing] Guild Camp - Operation Board","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_guildcamp_board_01"}},{"itemId":652205,"className":"GuildHousing_Item_h_guildcamp_scarecrow_01","name":"[Guild Housing] Guild Camp - Training Scarecrow","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_guildcamp_scarecrow_01"}},{"itemId":652206,"className":"GuildHousing_Item_h_guildcamp_flag_01_blue","name":"[Guild Housing] Guild Camp - Flag (Blue)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_guildcamp_flag_01_blue"}},{"itemId":652207,"className":"GuildHousing_Item_h_guildcamp_flag_01_red","name":"[Guild Housing] Guild Camp - Flag (Red)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_guildcamp_flag_01_red"}},{"itemId":652208,"className":"GuildHousing_Item_h_guildcamp_horse_cage_01","name":"[Guild Housing] Guild Camp - Temporary Stable","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_guildcamp_horse_cage_01"}},{"itemId":652209,"className":"GuildHousing_Item_h_guildcamp_tent_01","name":"[Guild Housing] Guild Camp - Barrack","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_guildcamp_tent_01"}},{"itemId":652210,"className":"GuildHousing_Item_h_guildcamp_watchtower_01","name":"[Guild Housing] Guild Camp - Watchtower","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_guildcamp_watchtower_01"}},{"itemId":652211,"className":"GuildHousing_Item_h_guildcamp_soldier_f_01_red","name":"[Guild Housing] Guild Camp - Red Solider (Female)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_guildcamp_soldier_f_01_red"}},{"itemId":652212,"className":"GuildHousing_Item_h_guildcamp_soldier_m_01_red","name":"[Guild Housing] Guild Camp - Red Solider (Male)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_guildcamp_soldier_m_01_red"}},{"itemId":652213,"className":"GuildHousing_Item_h_guildcamp_soldier_f_01_blue","name":"[Guild Housing] Guild Camp - Blue Solider (Female)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_guildcamp_soldier_f_01_blue"}},{"itemId":652214,"className":"GuildHousing_Item_h_guildcamp_soldier_m_01_blue","name":"[Guild Housing] Guild Camp - Blue Solider (Male)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_guildcamp_soldier_m_01_blue"}},{"itemId":652215,"className":"GuildHousing_Item_h_dungeon_laboratory","name":"[Guild Housing] Dungeon Control Center","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_dungeon_laboratory_set"}},{"itemId":652216,"className":"GuildHousing_Item_h_craftshop_guild","name":"[Guild Housing] Guild Workshop","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GUILD_HOUSING_OBJECT_PLACE","strArg":"h_craftshop_guild_set"}},{"itemId":661206,"className":"QuestReward_repairPotion","name":"Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":661207,"className":"RAID_Velcofer_Potion","name":"Lift Curse Potion","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_VELCOFER_CURSE_DISPEL","numArg1":500}},{"itemId":668138,"className":"CATACOMB_80_HASTECRYSTAL","name":"Magic Stone of Speed","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":30,"sellPrice":30,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_HASTEBUFF_CATACOMB_80","numArg1":3,"numArg2":300000}},{"itemId":668139,"className":"CATACOMB_80_ATKCRYSTAL","name":"Magic Stone of Wrath","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":30,"sellPrice":30,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ATKBUFF_CATACOMB_80","strArg":"Drug_CRTATK","numArg1":140,"numArg2":300000}},{"itemId":668140,"className":"CATACOMB_80_MATKCRYSTAL","name":"Magic Stone of Illusion","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":30,"sellPrice":30,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_MATKBUFF_CATACOMB_80","strArg":"Drug_MHR","numArg1":130,"numArg2":300000}},{"itemId":670001,"className":"Red_Card_Book","name":"Monster Card Album: Red","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_SUMMON_MONSTER_FROM_CARDBOOK","strArg":"Red"}},{"itemId":670002,"className":"Blue_Card_Book","name":"Monster Card Album: Blue","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_SUMMON_MONSTER_FROM_CARDBOOK","strArg":"Blue"}},{"itemId":670003,"className":"Green_Card_Book","name":"Monster Card Album: Green","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_SUMMON_MONSTER_FROM_CARDBOOK","strArg":"Green"}},{"itemId":670004,"className":"Purple_Card_Book","name":"Monster Card Album: Purple","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_SUMMON_MONSTER_FROM_CARDBOOK","strArg":"Purple"}},{"itemId":670005,"className":"Get_Wet_Card_Book","name":"Soaked Monster Card Album","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_SUMMON_MONSTER_FROM_CARDBOOK","strArg":"Red/Blue/Green/Purple"}},{"itemId":670006,"className":"Ominous_Card_Book","name":"Monster Card Album: Black","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":300,"script":{"function":"SCR_SUMMON_MONSTER_FROM_CARDBOOK","strArg":"All","numArg1":1}},{"itemId":670007,"className":"Premium_Ominous_Card_Book","name":"Shining Monster Card Album: Ominous","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":300,"script":{"function":"SCR_SUMMON_MONSTER_FROM_CARDBOOK","strArg":"HighField","numArg1":2}},{"itemId":670009,"className":"Get_Wet_Card_Book_14d","name":"Soaked Monster Card Album (14 Days)","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_SUMMON_MONSTER_FROM_CARDBOOK","strArg":"Red/Blue/Green/Purple"}},{"itemId":670010,"className":"Get_Wet_Card_Book_14d_Team","name":"Soaked Monster Card Album (14 Days)","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_SUMMON_MONSTER_FROM_CARDBOOK","strArg":"Red/Blue/Green/Purple"}},{"itemId":670011,"className":"All_Color_Card_Book","name":"Monster Card Album: All Colors","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_SUMMON_MONSTER_FROM_CARDBOOK","strArg":"Red/Blue/Green/Purple"}},{"itemId":670012,"className":"Premium_Black_Card_Book","name":"Shining Monster Card Album: Black","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":300,"script":{"function":"SCR_SUMMON_MONSTER_FROM_CARDBOOK","strArg":"All","numArg1":1}},{"itemId":670013,"className":"Ominous_Card_Book_Team","name":"Monster Card Album: Black","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":300,"script":{"function":"SCR_SUMMON_MONSTER_FROM_CARDBOOK","strArg":"All","numArg1":1}},{"itemId":670014,"className":"Red_Card_Book_14d","name":"Monster Card Album: Red (14 Days)","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_SUMMON_MONSTER_FROM_CARDBOOK","strArg":"Red"}},{"itemId":670015,"className":"Blue_Card_Book_14d","name":"Monster Card Album: Blue (14 Days)","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_SUMMON_MONSTER_FROM_CARDBOOK","strArg":"Blue"}},{"itemId":670016,"className":"Green_Card_Book_14d","name":"Monster Card Album: Green (14 Days)","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_SUMMON_MONSTER_FROM_CARDBOOK","strArg":"Green"}},{"itemId":670017,"className":"Purple_Card_Book_14d","name":"Monster Card Album: Purple (14 Days)","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_SUMMON_MONSTER_FROM_CARDBOOK","strArg":"Purple"}},{"itemId":670018,"className":"Red_Card_Book_Team","name":"Monster Card Album: Red","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_SUMMON_MONSTER_FROM_CARDBOOK","strArg":"Red"}},{"itemId":670019,"className":"Blue_Card_Book_Team","name":"Monster Card Album: Blue","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_SUMMON_MONSTER_FROM_CARDBOOK","strArg":"Blue"}},{"itemId":670020,"className":"Green_Card_Book_Team","name":"Monster Card Album: Green","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_SUMMON_MONSTER_FROM_CARDBOOK","strArg":"Green"}},{"itemId":670021,"className":"Purple_Card_Book_Team","name":"Monster Card Album: Purple","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_SUMMON_MONSTER_FROM_CARDBOOK","strArg":"Purple"}},{"itemId":670022,"className":"Premium_Ominous_Card_Book_Team","name":"Shining Monster Card Album: Ominous","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":300,"script":{"function":"SCR_SUMMON_MONSTER_FROM_CARDBOOK","strArg":"HighField","numArg1":2}},{"itemId":680001,"className":"BlueOrb_Onion","name":"Blue Orb: Kepa","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Onion"}},{"itemId":680002,"className":"BlueOrb_Leaf_diving","name":"Blue Orb: Leaf Bug","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Leaf_diving"}},{"itemId":680003,"className":"BlueOrb_Hanaming","name":"Blue Orb: Hanaming","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Hanaming"}},{"itemId":680004,"className":"BlueOrb_Bokchoy","name":"Blue Orb: Chinency","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Bokchoy"}},{"itemId":680005,"className":"BlueOrb_InfroRocktor","name":"Blue Orb: Infrorocktor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"InfroRocktor"}},{"itemId":680006,"className":"BlueOrb_Chupacabra_Blue","name":"Blue Orb: Chupacabra","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Chupacabra_Blue"}},{"itemId":680007,"className":"BlueOrb_Popolion_Blue","name":"Blue Orb: Popolion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Popolion_Blue"}},{"itemId":680008,"className":"BlueOrb_Weaver","name":"Blue Orb: Weaver","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Weaver"}},{"itemId":680009,"className":"BlueOrb_Pokubu","name":"Blue Orb: Pokubu","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Pokubu"}},{"itemId":680010,"className":"BlueOrb_Onion_Red","name":"Blue Orb: Red Kepa","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Onion_Red"}},{"itemId":680011,"className":"BlueOrb_Jukopus","name":"Blue Orb: Jukopus","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Jukopus"}},{"itemId":680012,"className":"BlueOrb_Goblin_Spear","name":"Blue Orb: Vubbe Thief","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Goblin_Spear"}},{"itemId":680013,"className":"BlueOrb_Whip_vine_Ra","name":"Blue Orb: Raflower","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Whip_vine_Ra"}},{"itemId":680014,"className":"BlueOrb_Goblin_Miners","name":"Blue Orb: Vubbe Miner","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Goblin_Miners"}},{"itemId":680015,"className":"BlueOrb_Bat","name":"Blue Orb: Bat","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Bat"}},{"itemId":680016,"className":"BlueOrb_StonOrca","name":"Blue Orb: Stone Orca","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"StonOrca"}},{"itemId":680017,"className":"BlueOrb_Shredded","name":"Blue Orb: Shredded","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Shredded"}},{"itemId":680018,"className":"BlueOrb_Yekubite","name":"Blue Orb: Yekubite","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Yekubite"}},{"itemId":680019,"className":"BlueOrb_Goblin_Archer","name":"Blue Orb: Vubbe Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Goblin_Archer"}},{"itemId":680020,"className":"BlueOrb_bubbe_mage_normal","name":"Blue Orb: Vubbe Wizard","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"bubbe_mage_normal"}},{"itemId":680021,"className":"BlueOrb_Quartz_weaver","name":"Blue Orb: Crystal Spider","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Quartz_weaver"}},{"itemId":680022,"className":"BlueOrb_bubbe_mage_priest","name":"Blue Orb: Vubbe Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"bubbe_mage_priest"}},{"itemId":680023,"className":"BlueOrb_GoblinWarrior","name":"Blue Orb: Vubbe Fighter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"GoblinWarrior"}},{"itemId":680024,"className":"BlueOrb_Zignuts","name":"Blue Orb: Zignuts","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Zignuts"}},{"itemId":680025,"className":"BlueOrb_Npanto_hand","name":"Blue Orb: Panto Pathfinder","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Npanto_hand"}},{"itemId":680026,"className":"BlueOrb_Grummer","name":"Blue Orb: Grummer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Grummer"}},{"itemId":680027,"className":"BlueOrb_Mally","name":"Blue Orb: Mali","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Mally"}},{"itemId":680028,"className":"BlueOrb_Leafly","name":"Blue Orb: Leafly","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Leafly"}},{"itemId":680029,"className":"BlueOrb_Npanto_baby","name":"Blue Orb: Panto","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Npanto_baby"}},{"itemId":680030,"className":"BlueOrb_NPanto_staff","name":"Blue Orb: Panto Wizard","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"NPanto_staff"}},{"itemId":680031,"className":"BlueOrb_NPanto_sword","name":"Blue Orb: Panto Warrior","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"NPanto_sword"}},{"itemId":680032,"className":"BlueOrb_Spion_bow","name":"Blue Orb: Spion Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Spion_bow"}},{"itemId":680033,"className":"BlueOrb_puragi_green","name":"Blue Orb: Green Puragi","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"puragi_green"}},{"itemId":680034,"className":"BlueOrb_Firent","name":"Blue Orb: Firent","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Firent"}},{"itemId":680035,"className":"BlueOrb_banshee","name":"Blue Orb: Banshee","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"banshee"}},{"itemId":680036,"className":"BlueOrb_zigri_brown","name":"Blue Orb: Brown Zigri","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"zigri_brown"}},{"itemId":680037,"className":"BlueOrb_Humming_bud","name":"Blue Orb: Hummingbird","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Humming_bud"}},{"itemId":680038,"className":"BlueOrb_Deadbornscab_mage","name":"Blue Orb: Deadborn Scap Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Deadbornscab_mage"}},{"itemId":680039,"className":"BlueOrb_seedmia","name":"Blue Orb: Seedmia","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"seedmia"}},{"itemId":680040,"className":"BlueOrb_Colifly_bow","name":"Blue Orb: Coliflower Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Colifly_bow"}},{"itemId":680041,"className":"BlueOrb_Npanto_archer","name":"Blue Orb: Panto Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Npanto_archer"}},{"itemId":680042,"className":"BlueOrb_Mallardu","name":"Blue Orb: Mallardu","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Mallardu"}},{"itemId":680043,"className":"BlueOrb_panto_javelin_elite","name":"Blue Orb: Large Panto Spearman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"panto_javelin_elite"}},{"itemId":680044,"className":"BlueOrb_zombiegirl2_brown","name":"Blue Orb: Brown Rodelin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"zombiegirl2_brown"}},{"itemId":680045,"className":"BlueOrb_Tanu","name":"Blue Orb: Tanu","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Tanu"}},{"itemId":680046,"className":"BlueOrb_Tipio","name":"Blue Orb: Tipio","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Tipio"}},{"itemId":680047,"className":"BlueOrb_Doyor","name":"Blue Orb: Doyor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Doyor"}},{"itemId":680048,"className":"BlueOrb_Beetow","name":"Blue Orb: Beetow","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Beetow"}},{"itemId":680049,"className":"BlueOrb_Siaulav_bow","name":"Blue Orb: Siaulav Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Siaulav_bow"}},{"itemId":680050,"className":"BlueOrb_Zibu_Maize","name":"Blue Orb: Black Maize","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Zibu_Maize"}},{"itemId":680051,"className":"BlueOrb_Ultanun","name":"Blue Orb: Ultanun","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Ultanun"}},{"itemId":680052,"className":"BlueOrb_Rudas_loxodon","name":"Blue Orb: Red Loxodon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Rudas_loxodon"}},{"itemId":680053,"className":"BlueOrb_Upent","name":"Blue Orb: Upent","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Upent"}},{"itemId":680054,"className":"BlueOrb_Caro","name":"Blue Orb: Caro","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Caro"}},{"itemId":680055,"className":"BlueOrb_Tiny_bow","name":"Blue Orb: Tini Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Tiny_bow"}},{"itemId":680056,"className":"BlueOrb_Carcashu","name":"Blue Orb: Carcashu","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Carcashu"}},{"itemId":680057,"className":"BlueOrb_Mentiwood","name":"Blue Orb: Mentiwood","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Mentiwood"}},{"itemId":680058,"className":"BlueOrb_Beeteros","name":"Blue Orb: Beeteros","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Beeteros"}},{"itemId":680059,"className":"BlueOrb_Tiny_mage","name":"Blue Orb: Tini Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Tiny_mage"}},{"itemId":680060,"className":"BlueOrb_zombiegirl2_chpel","name":"Blue Orb: Rodelin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"zombiegirl2_chpel"}},{"itemId":680061,"className":"BlueOrb_Yognome","name":"Blue Orb: Yognome","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Yognome"}},{"itemId":680062,"className":"BlueOrb_New_desmodus","name":"Blue Orb: Desmodus","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"New_desmodus"}},{"itemId":680063,"className":"BlueOrb_Glizardon","name":"Blue Orb: Glizardon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Glizardon"}},{"itemId":680064,"className":"BlueOrb_Corylus","name":"Blue Orb: Corylus","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Corylus"}},{"itemId":680065,"className":"BlueOrb_Galok","name":"Blue Orb: Galok","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Galok"}},{"itemId":680066,"className":"BlueOrb_Pawndel","name":"Blue Orb: Pawndel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Pawndel"}},{"itemId":680067,"className":"BlueOrb_pawnd","name":"Blue Orb: Pawnd","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"pawnd"}},{"itemId":680068,"className":"BlueOrb_Egnome","name":"Blue Orb: Egnome","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Egnome"}},{"itemId":680069,"className":"BlueOrb_Spector_Gh","name":"Blue Orb: Green Apparition","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Spector_Gh"}},{"itemId":680070,"className":"BlueOrb_colitile","name":"Blue Orb: Colitile","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"colitile"}},{"itemId":680071,"className":"BlueOrb_infroholder_bow","name":"Blue Orb: Infro Holder Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"infroholder_bow"}},{"itemId":680072,"className":"BlueOrb_thornball","name":"Blue Orb: Thornball","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"thornball"}},{"itemId":680073,"className":"BlueOrb_Whip_vine","name":"Blue Orb: Coliflower","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Whip_vine"}},{"itemId":680074,"className":"BlueOrb_Velwriggler","name":"Blue Orb: Velwriggler","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Velwriggler"}},{"itemId":680075,"className":"BlueOrb_truffle","name":"Blue Orb: Truffle","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"truffle"}},{"itemId":680076,"className":"BlueOrb_operor","name":"Blue Orb: Operor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"operor"}},{"itemId":680077,"className":"BlueOrb_Bagworm","name":"Blue Orb: Bagworm","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Bagworm"}},{"itemId":680078,"className":"BlueOrb_groll","name":"Blue Orb: Groll","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"groll"}},{"itemId":680079,"className":"BlueOrb_flower_blue","name":"Blue Orb: Blue Fragaras","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"flower_blue"}},{"itemId":680080,"className":"BlueOrb_merog_wogu","name":"Blue Orb: Merog Stinger","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"merog_wogu"}},{"itemId":680081,"className":"BlueOrb_merog_wizzard","name":"Blue Orb: Merog Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"merog_wizzard"}},{"itemId":680082,"className":"BlueOrb_Chafperor","name":"Blue Orb: Chafperor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Chafperor"}},{"itemId":680083,"className":"BlueOrb_Matsum","name":"Blue Orb: Matsum","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Matsum"}},{"itemId":680084,"className":"BlueOrb_Ammon","name":"Blue Orb: Ammon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Ammon"}},{"itemId":680085,"className":"BlueOrb_Infroholder_mage","name":"Blue Orb: Infro Holder Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Infroholder_mage"}},{"itemId":680086,"className":"BlueOrb_FD_Candlespider","name":"Blue Orb: Catacombs Candle Spider","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_Candlespider"}},{"itemId":680087,"className":"BlueOrb_FD_Mushcarfung","name":"Blue Orb: Catacombs Mushcarfung","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_Mushcarfung"}},{"itemId":680088,"className":"BlueOrb_FD_maggot","name":"Blue Orb: Catacombs Maggot","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_maggot"}},{"itemId":680089,"className":"BlueOrb_FD_Leaf_diving_purple","name":"Blue Orb: Catacombs Leaf Bug","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_Leaf_diving_purple"}},{"itemId":680090,"className":"BlueOrb_Cronewt_bow_brown","name":"Blue Orb: Cronewt Poison Needler","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Cronewt_bow_brown"}},{"itemId":680091,"className":"BlueOrb_Colifly_bow_purple","name":"Blue Orb: Spoiled Coliflower Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Colifly_bow_purple"}},{"itemId":680092,"className":"BlueOrb_Tontus","name":"Blue Orb: Tontus","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Tontus"}},{"itemId":680093,"className":"BlueOrb_Dandel","name":"Blue Orb: Dandel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Dandel"}},{"itemId":680094,"className":"BlueOrb_Pino","name":"Blue Orb: Pino","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Pino"}},{"itemId":680095,"className":"BlueOrb_Geppetto","name":"Blue Orb: Geppetto","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Geppetto"}},{"itemId":680096,"className":"BlueOrb_Lichenclops","name":"Blue Orb: Lichenclops","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Lichenclops"}},{"itemId":680097,"className":"BlueOrb_Zinute","name":"Blue Orb: Zinute","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Zinute"}},{"itemId":680098,"className":"BlueOrb_chupacabra_desert","name":"Blue Orb: Desert Chupacabra","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"chupacabra_desert"}},{"itemId":680099,"className":"BlueOrb_wendigo","name":"Blue Orb: Wendigo","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"wendigo"}},{"itemId":680100,"className":"BlueOrb_Dumaro","name":"Blue Orb: Dumaro","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Dumaro"}},{"itemId":680101,"className":"BlueOrb_wendigo_bow","name":"Blue Orb: Wendigo Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"wendigo_bow"}},{"itemId":680102,"className":"BlueOrb_wendigo_mage","name":"Blue Orb: Wendigo Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"wendigo_mage"}},{"itemId":680103,"className":"BlueOrb_Sauga_s","name":"Blue Orb: Sauga","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Sauga_s"}},{"itemId":680104,"className":"BlueOrb_ticen","name":"Blue Orb: Ticen","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"ticen"}},{"itemId":680105,"className":"BlueOrb_tucen","name":"Blue Orb: Tucen","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"tucen"}},{"itemId":680106,"className":"BlueOrb_loftlem","name":"Blue Orb: Loftlem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"loftlem"}},{"itemId":680107,"className":"BlueOrb_Lauzinute","name":"Blue Orb: Lauzinute","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Lauzinute"}},{"itemId":680108,"className":"BlueOrb_hogma_archer","name":"Blue Orb: Hogma Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"hogma_archer"}},{"itemId":680109,"className":"BlueOrb_Templeslave_mage","name":"Blue Orb: Temple Slave Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Templeslave_mage"}},{"itemId":680110,"className":"BlueOrb_Chupaluka_pink","name":"Blue Orb: Pink Chupaluka","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Chupaluka_pink"}},{"itemId":680111,"className":"BlueOrb_Sakmoli_orange","name":"Blue Orb: Orange Sakmoli","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Sakmoli_orange"}},{"itemId":680112,"className":"BlueOrb_Ridimed_purple","name":"Blue Orb: Black Ridimed","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Ridimed_purple"}},{"itemId":680113,"className":"BlueOrb_Repusbunny_bow","name":"Blue Orb: Lepusbunny Assassin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Repusbunny_bow"}},{"itemId":680114,"className":"BlueOrb_FD_woodgoblin_black","name":"Blue Orb: Earth Wood Goblin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_woodgoblin_black"}},{"itemId":680115,"className":"BlueOrb_FD_Bushspider_purple","name":"Blue Orb: Earth Bushspider","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_Bushspider_purple"}},{"itemId":680116,"className":"BlueOrb_FD_pappus_kepa_purple","name":"Blue Orb: Earth Old Kepa","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_pappus_kepa_purple"}},{"itemId":680117,"className":"BlueOrb_FD_colimen","name":"Blue Orb: Earth Colimen","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_colimen"}},{"itemId":680118,"className":"BlueOrb_FD_spectra","name":"Blue Orb: Earth Spectra","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_spectra"}},{"itemId":680119,"className":"BlueOrb_FD_Spector_gh_purple","name":"Blue Orb: Earth Apparition","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_Spector_gh_purple"}},{"itemId":680120,"className":"BlueOrb_FD_whip_vine_purple","name":"Blue Orb: Earth Raflower","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_whip_vine_purple"}},{"itemId":680121,"className":"BlueOrb_colimen_mage","name":"Blue Orb: Earth Colimen Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"colimen_mage"}},{"itemId":680122,"className":"BlueOrb_FD_Shredded","name":"Blue Orb: Earth Shredded","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_Shredded"}},{"itemId":680123,"className":"BlueOrb_FD_Deadbornscab","name":"Blue Orb: Earth Deadborn Scap","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_Deadbornscab"}},{"itemId":680124,"className":"BlueOrb_FD_Hallowventor","name":"Blue Orb: Earth Hallowventer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_Hallowventor"}},{"itemId":680125,"className":"BlueOrb_Hogma_combat","name":"Blue Orb: Hogma Fighter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Hogma_combat"}},{"itemId":680126,"className":"BlueOrb_hogma_warrior","name":"Blue Orb: Hogma Warrior","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"hogma_warrior"}},{"itemId":680127,"className":"BlueOrb_Woodfung","name":"Blue Orb: Woodfung","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Woodfung"}},{"itemId":680128,"className":"BlueOrb_Hogma_guard","name":"Blue Orb: Hogma Scout","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Hogma_guard"}},{"itemId":680129,"className":"BlueOrb_hogma_sorcerer","name":"Blue Orb: Hogma Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"hogma_sorcerer"}},{"itemId":680130,"className":"BlueOrb_Deadbornscab_bow","name":"Blue Orb: Deadborn Scap Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Deadbornscab_bow"}},{"itemId":680131,"className":"BlueOrb_Tontulia","name":"Blue Orb: Tontulia","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Tontulia"}},{"itemId":680132,"className":"BlueOrb_warleader_hogma","name":"Blue Orb: Hogma Captain","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"warleader_hogma"}},{"itemId":680133,"className":"BlueOrb_Repusbunny_mage","name":"Blue Orb: Lepusbunny Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Repusbunny_mage"}},{"itemId":680134,"className":"BlueOrb_varv","name":"Blue Orb: Varv","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"varv"}},{"itemId":680135,"className":"BlueOrb_Moving_trap","name":"Blue Orb: Boowook","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Moving_trap"}},{"itemId":680136,"className":"BlueOrb_zinutekas","name":"Blue Orb: Zinutekas","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"zinutekas"}},{"itemId":680137,"className":"BlueOrb_Karas","name":"Blue Orb: Karas","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Karas"}},{"itemId":680138,"className":"BlueOrb_zinutekas_Elite","name":"Blue Orb: Zinutekas","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"zinutekas_Elite"}},{"itemId":680139,"className":"BlueOrb_Vesper","name":"Blue Orb: Vesper","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Vesper"}},{"itemId":680140,"className":"BlueOrb_Beetle","name":"Blue Orb: Vekarabe","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Beetle"}},{"itemId":680141,"className":"BlueOrb_Wolf_statue","name":"Blue Orb: Vikaras","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Wolf_statue"}},{"itemId":680142,"className":"BlueOrb_Tombsinker","name":"Blue Orb: Tombsinker","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Tombsinker"}},{"itemId":680143,"className":"BlueOrb_Beetle_Elite","name":"Blue Orb: Vekarabe","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Beetle_Elite"}},{"itemId":680144,"className":"BlueOrb_shtayim","name":"Blue Orb: Shtayim","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"shtayim"}},{"itemId":680145,"className":"BlueOrb_Echad","name":"Blue Orb: Echad","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Echad"}},{"itemId":680146,"className":"BlueOrb_wolf_statue_mage","name":"Blue Orb: Vikaras Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"wolf_statue_mage"}},{"itemId":680147,"className":"BlueOrb_Echad_bow","name":"Blue Orb: Echad Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Echad_bow"}},{"itemId":680148,"className":"BlueOrb_schlesien_guard","name":"Blue Orb: Wheelen","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"schlesien_guard"}},{"itemId":680149,"className":"BlueOrb_dog_of_king","name":"Blue Orb: Venucelos","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"dog_of_king"}},{"itemId":680150,"className":"BlueOrb_wolf_statue_bow","name":"Blue Orb: Vikaras Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"wolf_statue_bow"}},{"itemId":680151,"className":"BlueOrb_Karas_mage","name":"Blue Orb: Karas Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Karas_mage"}},{"itemId":680152,"className":"BlueOrb_schlesien_darkmage","name":"Blue Orb: Medakia","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"schlesien_darkmage"}},{"itemId":680153,"className":"BlueOrb_schlesien_claw","name":"Blue Orb: Rusrat","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"schlesien_claw"}},{"itemId":680154,"className":"BlueOrb_schlesien_heavycavarly","name":"Blue Orb: Mauros","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"schlesien_heavycavarly"}},{"itemId":680155,"className":"BlueOrb_haming_orange","name":"Blue Orb: Orange Hamming","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"haming_orange"}},{"itemId":680156,"className":"BlueOrb_Popolion_Orange","name":"Blue Orb: Orange Popolion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Popolion_Orange"}},{"itemId":680157,"className":"BlueOrb_Spion_mage","name":"Blue Orb: Spion Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Spion_mage"}},{"itemId":680158,"className":"BlueOrb_ellom_violet","name":"Blue Orb: Farm Ellum","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"ellom_violet"}},{"itemId":680159,"className":"BlueOrb_Kepo_seed_violet","name":"Blue Orb: Farm Keposeed","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Kepo_seed_violet"}},{"itemId":680160,"className":"BlueOrb_operor_white","name":"Blue Orb: White Operor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"operor_white"}},{"itemId":680161,"className":"BlueOrb_Cronewt_bow","name":"Blue Orb: Cronewt Poisoned Needler","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Cronewt_bow"}},{"itemId":680162,"className":"BlueOrb_Cronewt_mage","name":"Blue Orb: Cronewt Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Cronewt_mage"}},{"itemId":680163,"className":"BlueOrb_Ashrong","name":"Blue Orb: Ashrong","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Ashrong"}},{"itemId":680164,"className":"BlueOrb_dandel_orange","name":"Blue Orb: Orange Dandel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"dandel_orange"}},{"itemId":680165,"className":"BlueOrb_Kepari_mage","name":"Blue Orb: Kepari Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Kepari_mage"}},{"itemId":680166,"className":"BlueOrb_geppetto_white","name":"Blue Orb: White Geppetto","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"geppetto_white"}},{"itemId":680167,"className":"BlueOrb_pino_white","name":"Blue Orb: White Pino","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"pino_white"}},{"itemId":680168,"className":"BlueOrb_TreeAmbulo","name":"Blue Orb: Tree Ambulo","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"TreeAmbulo"}},{"itemId":680169,"className":"BlueOrb_Tama","name":"Blue Orb: Tama","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Tama"}},{"itemId":680170,"className":"BlueOrb_stub_tree","name":"Blue Orb: Stumpy Tree","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"stub_tree"}},{"itemId":680171,"className":"BlueOrb_Long_Arm","name":"Blue Orb: Long-Branched Tree","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Long_Arm"}},{"itemId":680172,"className":"BlueOrb_Lizardman","name":"Blue Orb: Lizardman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Lizardman"}},{"itemId":680173,"className":"BlueOrb_InfroBurk","name":"Blue Orb: Infroburk","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"InfroBurk"}},{"itemId":680174,"className":"BlueOrb_stub_tree_mage","name":"Blue Orb: Stumpy Tree Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"stub_tree_mage"}},{"itemId":680175,"className":"BlueOrb_Zolem","name":"Blue Orb: Zolem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Zolem"}},{"itemId":680176,"className":"BlueOrb_hook","name":"Blue Orb: Old Hook","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"hook"}},{"itemId":680177,"className":"BlueOrb_Flying_Flog","name":"Blue Orb: Winged Frog","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Flying_Flog"}},{"itemId":680178,"className":"BlueOrb_Gravegolem","name":"Blue Orb: Gravegolem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Gravegolem"}},{"itemId":680179,"className":"BlueOrb_Hallowventor","name":"Blue Orb: Hallowventer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Hallowventor"}},{"itemId":680180,"className":"BlueOrb_Cockatries","name":"Blue Orb: Cockatrice","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Cockatries"}},{"itemId":680181,"className":"BlueOrb_Big_Cockatries","name":"Blue Orb: Cockat","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Big_Cockatries"}},{"itemId":680182,"className":"BlueOrb_FD_bubbe_chaser","name":"Blue Orb: Mine Predator","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_bubbe_chaser"}},{"itemId":680183,"className":"BlueOrb_FD_bubbe_chaser_hidden","name":"Blue Orb: Vubbe Chaser","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_bubbe_chaser_hidden"}},{"itemId":680184,"className":"BlueOrb_FD_minos_mage","name":"Blue Orb: Minos Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_minos_mage"}},{"itemId":680185,"className":"BlueOrb_FD_bubbe_mage_fire","name":"Blue Orb: Mine Fire Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_bubbe_mage_fire"}},{"itemId":680186,"className":"BlueOrb_FD_Goblin_Archer_red","name":"Blue Orb: Mine Vubbe Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_Goblin_Archer_red"}},{"itemId":680187,"className":"BlueOrb_FD_bubbe_fighter","name":"Blue Orb: Vubbe Warrior","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_bubbe_fighter"}},{"itemId":680188,"className":"BlueOrb_FD_bubbe_mage_ice","name":"Blue Orb: Vubbe Ice Wizard","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_bubbe_mage_ice"}},{"itemId":680189,"className":"BlueOrb_FD_Stoulet_mage","name":"Blue Orb: Stoulet Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_Stoulet_mage"}},{"itemId":680190,"className":"BlueOrb_FD_Bat_big","name":"Blue Orb: Giant Bat","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_Bat_big"}},{"itemId":680191,"className":"BlueOrb_ellom","name":"Blue Orb: Ellom","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"ellom"}},{"itemId":680192,"className":"BlueOrb_pappus_kepa","name":"Blue Orb: Old Kepa","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"pappus_kepa"}},{"itemId":680193,"className":"BlueOrb_Bushspider","name":"Blue Orb: Bushspider","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Bushspider"}},{"itemId":680194,"className":"BlueOrb_Fisherman","name":"Blue Orb: Fisherman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Fisherman"}},{"itemId":680195,"className":"BlueOrb_ellomago","name":"Blue Orb: Ellomago","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"ellomago"}},{"itemId":680196,"className":"BlueOrb_Ridimed","name":"Blue Orb: Ridimed","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Ridimed"}},{"itemId":680197,"className":"BlueOrb_Sakmoli","name":"Blue Orb: Sakmoli","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Sakmoli"}},{"itemId":680198,"className":"BlueOrb_jellyfish_red","name":"Blue Orb: Red Meduja","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"jellyfish_red"}},{"itemId":680199,"className":"BlueOrb_HighBube_Spear","name":"Blue Orb: High Vubbe","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"HighBube_Spear"}},{"itemId":680200,"className":"BlueOrb_HighBube_Archer","name":"Blue Orb: High Vubbe Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"HighBube_Archer"}},{"itemId":680201,"className":"BlueOrb_arburn_pokubu_green","name":"Blue Orb: Green Pokubon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"arburn_pokubu_green"}},{"itemId":680202,"className":"BlueOrb_puragi_blue","name":"Blue Orb: Blue Puragi","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"puragi_blue"}},{"itemId":680203,"className":"BlueOrb_honey_bee","name":"Blue Orb: Bite","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"honey_bee"}},{"itemId":680204,"className":"BlueOrb_mushroom_ent_blue","name":"Blue Orb: Big Blue Griba","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"mushroom_ent_blue"}},{"itemId":680205,"className":"BlueOrb_Fisherman_red","name":"Blue Orb: Red Fisherman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Fisherman_red"}},{"itemId":680206,"className":"BlueOrb_Fire_Dragon","name":"Blue Orb: Drake","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Fire_Dragon"}},{"itemId":680207,"className":"BlueOrb_rubblem","name":"Blue Orb: Rubblem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"rubblem"}},{"itemId":680208,"className":"BlueOrb_flight_hope","name":"Blue Orb: Phyracon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"flight_hope"}},{"itemId":680209,"className":"BlueOrb_Armory","name":"Blue Orb: Armori","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Armory"}},{"itemId":680210,"className":"BlueOrb_RudasJack","name":"Blue Orb: Ludasjack","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"RudasJack"}},{"itemId":680211,"className":"BlueOrb_tower_of_firepuppet","name":"Blue Orb: Shaman Doll","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"tower_of_firepuppet"}},{"itemId":680212,"className":"BlueOrb_blindlem","name":"Blue Orb: Blindlem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"blindlem"}},{"itemId":680213,"className":"BlueOrb_belegg","name":"Blue Orb: Belegg","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"belegg"}},{"itemId":680214,"className":"BlueOrb_slime_elite","name":"Blue Orb: Experimental Slime","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"slime_elite"}},{"itemId":680215,"className":"BlueOrb_Chromadog","name":"Blue Orb: Chromadog","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Chromadog"}},{"itemId":680216,"className":"BlueOrb_Chromadog_Elite","name":"Blue Orb: Chromadog","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Chromadog_Elite"}},{"itemId":680217,"className":"BlueOrb_arma","name":"Blue Orb: Arma","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"arma"}},{"itemId":680218,"className":"BlueOrb_InfroRocktor_red","name":"Blue Orb: Red Infrorocktor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"InfroRocktor_red"}},{"itemId":680219,"className":"BlueOrb_flask_mage","name":"Blue Orb: Flask Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"flask_mage"}},{"itemId":680220,"className":"BlueOrb_TerraNymph_mage","name":"Blue Orb: Terra Imp Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"TerraNymph_mage"}},{"itemId":680221,"className":"BlueOrb_pyran","name":"Blue Orb: Pyran","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"pyran"}},{"itemId":680222,"className":"BlueOrb_flask","name":"Blue Orb: Flask","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"flask"}},{"itemId":680223,"className":"BlueOrb_New_desmodus_black","name":"Blue Orb: Black Desmodus","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"New_desmodus_black"}},{"itemId":680224,"className":"BlueOrb_minivern","name":"Blue Orb: Minivern","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"minivern"}},{"itemId":680225,"className":"BlueOrb_minivern_Elite","name":"Blue Orb: Large Minivern","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"minivern_Elite"}},{"itemId":680226,"className":"BlueOrb_wizards_marmotte","name":"Blue Orb: Wizard Shaman Doll","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"wizards_marmotte"}},{"itemId":680227,"className":"BlueOrb_tower_of_firepuppet_black","name":"Blue Orb: Black Shaman Doll","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"tower_of_firepuppet_black"}},{"itemId":680228,"className":"BlueOrb_dimmer","name":"Blue Orb: Dimmer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"dimmer"}},{"itemId":680229,"className":"BlueOrb_Fire_Dragon_purple","name":"Blue Orb: Black Drake","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Fire_Dragon_purple"}},{"itemId":680230,"className":"BlueOrb_Meleech","name":"Blue Orb: Meleech","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Meleech"}},{"itemId":680231,"className":"BlueOrb_RavineLerva","name":"Blue Orb: Ravinelarva","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"RavineLerva"}},{"itemId":680232,"className":"BlueOrb_wood_goblin","name":"Blue Orb: Wood Goblin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"wood_goblin"}},{"itemId":680233,"className":"BlueOrb_TreeGool","name":"Blue Orb: Treegool","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"TreeGool"}},{"itemId":680234,"className":"BlueOrb_Cronewt","name":"Blue Orb: Cronewt","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Cronewt"}},{"itemId":680235,"className":"BlueOrb_InfroHoglan","name":"Blue Orb: Infro Hoglan","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"InfroHoglan"}},{"itemId":680236,"className":"BlueOrb_duckey","name":"Blue Orb: Ducky","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"duckey"}},{"itemId":680237,"className":"BlueOrb_raider","name":"Blue Orb: Kepa Raider","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"raider"}},{"itemId":680238,"className":"BlueOrb_Infroholder","name":"Blue Orb: Infro Holder","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Infroholder"}},{"itemId":680239,"className":"BlueOrb_Kepari","name":"Blue Orb: Kepari","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Kepari"}},{"itemId":680240,"className":"BlueOrb_kepo","name":"Blue Orb: Kepo","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"kepo"}},{"itemId":680241,"className":"BlueOrb_Kepo_seed","name":"Blue Orb: Keposeed","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Kepo_seed"}},{"itemId":680242,"className":"BlueOrb_wood_goblin_red","name":"Blue Orb: Red Wood Goblin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"wood_goblin_red"}},{"itemId":680243,"className":"BlueOrb_rondo_red","name":"Blue Orb: Red Rondo","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"rondo_red"}},{"itemId":680244,"className":"BlueOrb_Rubabos_red","name":"Blue Orb: Red Rubabos","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Rubabos_red"}},{"itemId":680245,"className":"BlueOrb_Triffid","name":"Blue Orb: Tripede","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Triffid"}},{"itemId":680246,"className":"BlueOrb_kodomor","name":"Blue Orb: Kodomor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"kodomor"}},{"itemId":680247,"className":"BlueOrb_Romor","name":"Blue Orb: Lomor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Romor"}},{"itemId":680248,"className":"BlueOrb_lapasape_bow","name":"Blue Orb: Lapasape Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"lapasape_bow"}},{"itemId":680249,"className":"BlueOrb_Siaulav_mage","name":"Blue Orb: Siaulav Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Siaulav_mage"}},{"itemId":680250,"className":"BlueOrb_Prisonfighter","name":"Blue Orb: Prison Fighter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Prisonfighter"}},{"itemId":680251,"className":"BlueOrb_kowak","name":"Blue Orb: Kowak","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"kowak"}},{"itemId":680252,"className":"BlueOrb_Stoulet_bow","name":"Blue Orb: Stoulet Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Stoulet_bow"}},{"itemId":680253,"className":"BlueOrb_hook_old","name":"Blue Orb: Rusty Old Hook","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"hook_old"}},{"itemId":680254,"className":"BlueOrb_TreeAmbulo_red","name":"Blue Orb: Red Tree Ambulo","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"TreeAmbulo_red"}},{"itemId":680255,"className":"BlueOrb_Lichenclops_mage","name":"Blue Orb: Lichenclops Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Lichenclops_mage"}},{"itemId":680256,"className":"BlueOrb_FD_NightMaiden","name":"Blue Orb: Night Maiden","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_NightMaiden"}},{"itemId":680257,"className":"BlueOrb_FD_TerraNymph","name":"Blue Orb: Terra Imp","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_TerraNymph"}},{"itemId":680258,"className":"BlueOrb_FD_raffly_blue","name":"Blue Orb: Blue Raffly","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_raffly_blue"}},{"itemId":680259,"className":"BlueOrb_TerraNymph_bow","name":"Blue Orb: Terra Imp Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"TerraNymph_bow"}},{"itemId":680260,"className":"BlueOrb_Colifly","name":"Blue Orb: Colifly","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Colifly"}},{"itemId":680261,"className":"BlueOrb_loftlem_blue","name":"Blue Orb: Pure Loftlem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"loftlem_blue"}},{"itemId":680262,"className":"BlueOrb_anchor_mage","name":"Blue Orb: Darkness Anchor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"anchor_mage"}},{"itemId":680263,"className":"BlueOrb_Velwriggler_blue","name":"Blue Orb: Blue Velwriggler","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Velwriggler_blue"}},{"itemId":680264,"className":"BlueOrb_Stoulet_blue","name":"Blue Orb: Blue Stoulet","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Stoulet_blue"}},{"itemId":680265,"className":"BlueOrb_NightMaiden_mage","name":"Blue Orb: Night Maiden","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"NightMaiden_mage"}},{"itemId":680266,"className":"BlueOrb_InfroHoglan_red","name":"Blue Orb: Red Infro Hoglan","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"InfroHoglan_red"}},{"itemId":680267,"className":"BlueOrb_Infro_blud_red","name":"Blue Orb: Red Infro Blood","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Infro_blud_red"}},{"itemId":680268,"className":"BlueOrb_Burialer","name":"Blue Orb: Burialer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Burialer"}},{"itemId":680269,"className":"BlueOrb_Pawnd_purple","name":"Blue Orb: Black Pawnd","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Pawnd_purple"}},{"itemId":680270,"className":"BlueOrb_Pawndel_blue","name":"Blue Orb: Blue Pawndel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Pawndel_blue"}},{"itemId":680271,"className":"BlueOrb_NightMaiden_bow","name":"Blue Orb: Darkness Maiden","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"NightMaiden_bow"}},{"itemId":680272,"className":"BlueOrb_Lizardman_orange","name":"Blue Orb: Orange Lizardman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Lizardman_orange"}},{"itemId":680273,"className":"BlueOrb_Tama_orange","name":"Blue Orb: Orange Tama","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Tama_orange"}},{"itemId":680274,"className":"BlueOrb_Rambear_bow","name":"Blue Orb: Rambear Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Rambear_bow"}},{"itemId":680275,"className":"BlueOrb_Stub_tree_orange","name":"Blue Orb: Orange Stumpy Tree","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Stub_tree_orange"}},{"itemId":680276,"className":"BlueOrb_Cyst","name":"Blue Orb: Cyst","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Cyst"}},{"itemId":680277,"className":"BlueOrb_Flying_Flog_green","name":"Blue Orb: Green Winged Frog","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Flying_Flog_green"}},{"itemId":680278,"className":"BlueOrb_tree_root_mole_pink","name":"Blue Orb: Pink Root Mole","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"tree_root_mole_pink"}},{"itemId":680279,"className":"BlueOrb_Carcashu_green","name":"Blue Orb: Green Carcashu","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Carcashu_green"}},{"itemId":680280,"className":"BlueOrb_Melatanun","name":"Blue Orb: Melatinun","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Melatanun"}},{"itemId":680281,"className":"BlueOrb_yognome_yellow","name":"Blue Orb: Yellow Yognome","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"yognome_yellow"}},{"itemId":680282,"className":"BlueOrb_Egnome_yellow","name":"Blue Orb: Yellow Egnome","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Egnome_yellow"}},{"itemId":680283,"className":"BlueOrb_Gazing_Golem_yellow","name":"Blue Orb: Yellow Gazing Golem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Gazing_Golem_yellow"}},{"itemId":680284,"className":"BlueOrb_Moya_yellow","name":"Blue Orb: Yellow Moya","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Moya_yellow"}},{"itemId":680285,"className":"BlueOrb_defender_spider","name":"Blue Orb: Guardian Spider","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"defender_spider"}},{"itemId":680286,"className":"BlueOrb_Nuka","name":"Blue Orb: Nuka","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Nuka"}},{"itemId":680287,"className":"BlueOrb_Elet","name":"Blue Orb: Elet","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Elet"}},{"itemId":680288,"className":"BlueOrb_Harugal","name":"Blue Orb: Harugal","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Harugal"}},{"itemId":680289,"className":"BlueOrb_Socket","name":"Blue Orb: Socket","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Socket"}},{"itemId":680290,"className":"BlueOrb_mushroom_ent_green","name":"Blue Orb: Big Green Griba","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"mushroom_ent_green"}},{"itemId":680291,"className":"BlueOrb_Elma","name":"Blue Orb: Elma","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Elma"}},{"itemId":680292,"className":"BlueOrb_Nnuo","name":"Blue Orb: Nuo","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Nnuo"}},{"itemId":680293,"className":"BlueOrb_Hohen_mane","name":"Blue Orb: Hohen Mane","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Hohen_mane"}},{"itemId":680294,"className":"BlueOrb_Hohen_ritter","name":"Blue Orb: Hohen Ritter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Hohen_ritter"}},{"itemId":680295,"className":"BlueOrb_hohen_barkle","name":"Blue Orb: Hohen Barkle","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"hohen_barkle"}},{"itemId":680296,"className":"BlueOrb_Hohen_orben","name":"Blue Orb: Hohen Orben","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Hohen_orben"}},{"itemId":680297,"className":"BlueOrb_Hohen_gulak","name":"Blue Orb: Hohen Gulak","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Hohen_gulak"}},{"itemId":680298,"className":"BlueOrb_Hohen_mage","name":"Blue Orb: Hohen Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Hohen_mage"}},{"itemId":680299,"className":"BlueOrb_Mushroom_boy_green","name":"Blue Orb: Green Griba","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Mushroom_boy_green"}},{"itemId":680300,"className":"BlueOrb_lantern_mushroom_orange","name":"Blue Orb: Orange Gribaru","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"lantern_mushroom_orange"}},{"itemId":680301,"className":"BlueOrb_Siaulamb","name":"Blue Orb: Siaulamb Lagoon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Siaulamb"}},{"itemId":680302,"className":"BlueOrb_Pendinmire","name":"Blue Orb: Pendinmire","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Pendinmire"}},{"itemId":680303,"className":"BlueOrb_rabbee","name":"Blue Orb: Rabbee","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"rabbee"}},{"itemId":680304,"className":"BlueOrb_Honeybean","name":"Blue Orb: Honeybean","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Honeybean"}},{"itemId":680305,"className":"BlueOrb_Siaulogre","name":"Blue Orb: Siaulogre","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Siaulogre"}},{"itemId":680306,"className":"BlueOrb_Spion","name":"Blue Orb: Spion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Spion"}},{"itemId":680307,"className":"BlueOrb_chupaluka","name":"Blue Orb: Chupaluka","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"chupaluka"}},{"itemId":680308,"className":"BlueOrb_honeymeli","name":"Blue Orb: Honeymeli","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"honeymeli"}},{"itemId":680309,"className":"BlueOrb_Siaulago","name":"Blue Orb: Siaulamb Warrior","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Siaulago"}},{"itemId":680310,"className":"BlueOrb_zigri_red","name":"Blue Orb: Red Zigri","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"zigri_red"}},{"itemId":680311,"className":"BlueOrb_mushroom_ent_black","name":"Blue Orb: Big Black Griba","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"mushroom_ent_black"}},{"itemId":680312,"className":"BlueOrb_Big_Siaulamb","name":"Blue Orb: Big Siaulamb","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Big_Siaulamb"}},{"itemId":680313,"className":"BlueOrb_Siaumire","name":"Blue Orb: Siaulamb Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Siaumire"}},{"itemId":680314,"className":"BlueOrb_infro_Blud","name":"Blue Orb: Infro Blood","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"infro_Blud"}},{"itemId":680315,"className":"BlueOrb_Shardstatue","name":"Blue Orb: Shardstatue","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Shardstatue"}},{"itemId":680316,"className":"BlueOrb_Siaulav","name":"Blue Orb: Siaulav","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Siaulav"}},{"itemId":680317,"className":"BlueOrb_FD_Firent_yellow","name":"Blue Orb: Confined Firent","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_Firent_yellow"}},{"itemId":680318,"className":"BlueOrb_FD_yognome","name":"Blue Orb: Confined Yognome","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_yognome"}},{"itemId":680319,"className":"BlueOrb_FD_Long_Arm","name":"Blue Orb: Confined Long-Branched Tree","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_Long_Arm"}},{"itemId":680320,"className":"BlueOrb_Infrogalas_bow","name":"Blue Orb: Confined Infrogalas Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_Infrogalas_bow"}},{"itemId":680321,"className":"BlueOrb_Templeslave_sword","name":"Blue Orb: Temple Slave Assassin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Templeslave_sword"}},{"itemId":680322,"className":"BlueOrb_Wendigo_archer","name":"Blue Orb: Wendigo Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Wendigo_archer"}},{"itemId":680323,"className":"BlueOrb_Wendigo_magician","name":"Blue Orb: Wendigo Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Wendigo_magician"}},{"itemId":680324,"className":"BlueOrb_Lizardman_mage","name":"Blue Orb: Lizardman Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Lizardman_mage"}},{"itemId":680325,"className":"BlueOrb_Minos","name":"Blue Orb: Minos","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Minos"}},{"itemId":680326,"className":"BlueOrb_Minos_bow","name":"Blue Orb: Minos Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Minos_bow"}},{"itemId":680327,"className":"BlueOrb_Hallowventor_mage","name":"Blue Orb: Hallowventer Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Hallowventor_mage"}},{"itemId":680328,"className":"BlueOrb_Hallowventor_bow","name":"Blue Orb: Hallowventer Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Hallowventor_bow"}},{"itemId":680329,"className":"BlueOrb_Gravegolem_blue","name":"Blue Orb: Blue Gravegolem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Gravegolem_blue"}},{"itemId":680330,"className":"BlueOrb_tombstone_turtle","name":"Blue Orb: Rocktor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"tombstone_turtle"}},{"itemId":680331,"className":"BlueOrb_Big_Cockatries_green","name":"Blue Orb: Green Cockat","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Big_Cockatries_green"}},{"itemId":680332,"className":"BlueOrb_velwriggler_mage_green","name":"Blue Orb: Green Velwriggler Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"velwriggler_mage_green"}},{"itemId":680333,"className":"BlueOrb_wood_lwa","name":"Blue Orb: Woodluwa","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"wood_lwa"}},{"itemId":680334,"className":"BlueOrb_Infrogalas_mage","name":"Blue Orb: Infrogalas Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Infrogalas_mage"}},{"itemId":680335,"className":"BlueOrb_Chafperor_mage","name":"Blue Orb: Chafperor Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Chafperor_mage"}},{"itemId":680336,"className":"BlueOrb_Pandroceum","name":"Blue Orb: Pendrosium","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Pandroceum"}},{"itemId":680337,"className":"BlueOrb_Cire_mage","name":"Blue Orb: Cire Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Cire_mage"}},{"itemId":680338,"className":"BlueOrb_loftlem_green","name":"Blue Orb: Green Loftlem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"loftlem_green"}},{"itemId":680339,"className":"BlueOrb_Hepatica_green","name":"Blue Orb: Liverwort","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Hepatica_green"}},{"itemId":680340,"className":"BlueOrb_Stonacorn","name":"Blue Orb: Stonacon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Stonacorn"}},{"itemId":680341,"className":"BlueOrb_Malstatue","name":"Blue Orb: Malstatue","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Malstatue"}},{"itemId":680342,"className":"BlueOrb_velaphid_red","name":"Blue Orb: Velaphid","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"velaphid_red"}},{"itemId":680343,"className":"BlueOrb_pumpflap","name":"Blue Orb: Pumpleflap","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"pumpflap"}},{"itemId":680344,"className":"BlueOrb_Kowak_orange","name":"Blue Orb: Orange Kowak","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Kowak_orange"}},{"itemId":680345,"className":"BlueOrb_raider_bow","name":"Blue Orb: Kepa Raider Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"raider_bow"}},{"itemId":680346,"className":"BlueOrb_anchor","name":"Blue Orb: Anchor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"anchor"}},{"itemId":680347,"className":"BlueOrb_velffigy","name":"Blue Orb: Velfiggy","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"velffigy"}},{"itemId":680348,"className":"BlueOrb_Glyquare","name":"Blue Orb: Glyquare","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Glyquare"}},{"itemId":680349,"className":"BlueOrb_Colifly_black","name":"Blue Orb: Black Colifly","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Colifly_black"}},{"itemId":680350,"className":"BlueOrb_Jukopus_gray","name":"Blue Orb: Gray Jukopus","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Jukopus_gray"}},{"itemId":680351,"className":"BlueOrb_Rambear","name":"Blue Orb: Rambear","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Rambear"}},{"itemId":680352,"className":"BlueOrb_goblin2_wand1","name":"Blue Orb: Goblin Wizard","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"goblin2_wand1"}},{"itemId":680353,"className":"BlueOrb_Bavon","name":"Blue Orb: Bavon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Bavon"}},{"itemId":680354,"className":"BlueOrb_Moya","name":"Blue Orb: Moya","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Moya"}},{"itemId":680355,"className":"BlueOrb_saltisdaughter_mage","name":"Blue Orb: Saltisdaughter Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"saltisdaughter_mage"}},{"itemId":680356,"className":"BlueOrb_Moyabu","name":"Blue Orb: Moyabu","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Moyabu"}},{"itemId":680357,"className":"BlueOrb_Denden","name":"Blue Orb: Denden","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Denden"}},{"itemId":680358,"className":"BlueOrb_goblin2_sword","name":"Blue Orb: Goblin Warrior","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"goblin2_sword"}},{"itemId":680359,"className":"BlueOrb_Lemur","name":"Blue Orb: Lemur","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Lemur"}},{"itemId":680360,"className":"BlueOrb_goblin2_hammer","name":"Blue Orb: Goblin Charger","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"goblin2_hammer"}},{"itemId":680361,"className":"BlueOrb_goblin2_wand3","name":"Blue Orb: Goblin Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"goblin2_wand3"}},{"itemId":680362,"className":"BlueOrb_Rubabos","name":"Blue Orb: Rubabos","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Rubabos"}},{"itemId":680363,"className":"BlueOrb_Repusbunny","name":"Blue Orb: Lepusbunny","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Repusbunny"}},{"itemId":680364,"className":"BlueOrb_Lemuria","name":"Blue Orb: Lemuria","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Lemuria"}},{"itemId":680365,"className":"BlueOrb_saltisdaughter_bow","name":"Blue Orb: Saltisdaughter Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"saltisdaughter_bow"}},{"itemId":680366,"className":"BlueOrb_ticen_bow","name":"Blue Orb: Ticen Crossbow Soldier","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"ticen_bow"}},{"itemId":680367,"className":"BlueOrb_Rambear_mage","name":"Blue Orb: Rambear Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Rambear_mage"}},{"itemId":680368,"className":"BlueOrb_Hepatica_purple","name":"Blue Orb: Black Liverwort","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Hepatica_purple"}},{"itemId":680369,"className":"BlueOrb_Candlespider_yellow","name":"Blue Orb: Yellow Candle Spider","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Candlespider_yellow"}},{"itemId":680370,"className":"BlueOrb_Moyabu_yellow","name":"Blue Orb: Yellow Moyabu","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Moyabu_yellow"}},{"itemId":680371,"className":"BlueOrb_ticen_mage","name":"Blue Orb: Ticen Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"ticen_mage"}},{"itemId":680372,"className":"BlueOrb_Socket_bow","name":"Blue Orb: Socket Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Socket_bow"}},{"itemId":680373,"className":"BlueOrb_velffigy_green","name":"Blue Orb: Corrupt Velfiggy","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"velffigy_green"}},{"itemId":680374,"className":"BlueOrb_Socket_mage","name":"Blue Orb: Socket Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Socket_mage"}},{"itemId":680375,"className":"BlueOrb_pyran_green","name":"Blue Orb: Corrupt Pyran","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"pyran_green"}},{"itemId":680376,"className":"BlueOrb_Deadbornscab_bow_green","name":"Blue Orb: Corrupt Deadborn Scap Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Deadbornscab_bow_green"}},{"itemId":680377,"className":"BlueOrb_Deadbornscab_green","name":"Blue Orb: Corrupt Deadborn Scap","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Deadbornscab_green"}},{"itemId":680378,"className":"BlueOrb_ticen_blue","name":"Blue Orb: Blue Ticen","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"ticen_blue"}},{"itemId":680379,"className":"BlueOrb_ticen_bow_blue","name":"Blue Orb: Blue Ticen Crossbow Soldier","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"ticen_bow_blue"}},{"itemId":680380,"className":"BlueOrb_Socket_red","name":"Blue Orb: Red Socket Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Socket_red"}},{"itemId":680381,"className":"BlueOrb_Socket_bow_purple","name":"Blue Orb: Socket Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Socket_bow_purple"}},{"itemId":680382,"className":"BlueOrb_ticen_mage_blue","name":"Blue Orb: Blue Ticen Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"ticen_mage_blue"}},{"itemId":680383,"className":"BlueOrb_Chafperor_purple","name":"Blue Orb: Red Chafperor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Chafperor_purple"}},{"itemId":680384,"className":"BlueOrb_Chafperor_mage_purple","name":"Blue Orb: Red Chafperor Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Chafperor_mage_purple"}},{"itemId":680385,"className":"BlueOrb_dandel_white","name":"Blue Orb: White Dandel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"dandel_white"}},{"itemId":680386,"className":"BlueOrb_Rambear_brown","name":"Blue Orb: Brown Rambear","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Rambear_brown"}},{"itemId":680387,"className":"BlueOrb_Rambear_bow_brown","name":"Blue Orb: Brown Rambear Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Rambear_bow_brown"}},{"itemId":680388,"className":"BlueOrb_Rambear_mage_brown","name":"Blue Orb: Brown Rambear Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Rambear_mage_brown"}},{"itemId":680389,"className":"BlueOrb_Deadbornscab_red","name":"Blue Orb: Red Deadborn Scap","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Deadbornscab_red"}},{"itemId":680390,"className":"BlueOrb_Deadbornscab_mage_red","name":"Blue Orb: Red Deadborn Scap Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Deadbornscab_mage_red"}},{"itemId":680391,"className":"BlueOrb_Infroholder_green","name":"Blue Orb: Green Infro Holder","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Infroholder_green"}},{"itemId":680392,"className":"BlueOrb_Kepari_green","name":"Blue Orb: Green Kepari","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Kepari_green"}},{"itemId":680393,"className":"BlueOrb_Kepari_mage_green","name":"Blue Orb: Green Kepari Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Kepari_mage_green"}},{"itemId":680394,"className":"BlueOrb_Templeslave_blue","name":"Blue Orb: Blue Temple Slave","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Templeslave_blue"}},{"itemId":680395,"className":"BlueOrb_flask_blue","name":"Blue Orb: Blue Flask","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"flask_blue"}},{"itemId":680396,"className":"BlueOrb_Minos_orange","name":"Blue Orb: Orange Minos","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Minos_orange"}},{"itemId":680397,"className":"BlueOrb_Infroholder_bow_red","name":"Blue Orb: Red Infro Holder Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Infroholder_bow_red"}},{"itemId":680398,"className":"BlueOrb_minos_mage_green","name":"Blue Orb: Green Minos Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"minos_mage_green"}},{"itemId":680399,"className":"BlueOrb_Infroholder_red","name":"Blue Orb: Red Infro Holder","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Infroholder_red"}},{"itemId":680400,"className":"BlueOrb_Socket_purple","name":"Blue Orb: Blue Socket","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Socket_purple"}},{"itemId":680401,"className":"BlueOrb_Infroholder_mage_green","name":"Blue Orb: Green Infro Holder Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Infroholder_mage_green"}},{"itemId":680402,"className":"BlueOrb_saltisdaughter_red","name":"Blue Orb: Red Saltisdaughter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"saltisdaughter_red"}},{"itemId":680403,"className":"BlueOrb_saltisdaughter_bow_green","name":"Blue Orb: Green Saltisdaughter Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"saltisdaughter_bow_green"}},{"itemId":680404,"className":"BlueOrb_Repusbunny_mage_green","name":"Blue Orb: Green Lepusbunny Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Repusbunny_mage_green"}},{"itemId":680405,"className":"BlueOrb_groll_white","name":"Blue Orb: White Groll","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"groll_white"}},{"itemId":680406,"className":"BlueOrb_saltisdaughter_mage_red","name":"Blue Orb: Red Saltisdaughter Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"saltisdaughter_mage_red"}},{"itemId":680407,"className":"BlueOrb_Repusbunny_green","name":"Blue Orb: Green Lepusbunny Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Repusbunny_green"}},{"itemId":680408,"className":"BlueOrb_Repusbunny_bow_green","name":"Blue Orb: Green Lepusbunny Assassin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Repusbunny_bow_green"}},{"itemId":680409,"className":"BlueOrb_Siaulav_blue","name":"Blue Orb: Blue Siaulav","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Siaulav_blue"}},{"itemId":680410,"className":"BlueOrb_Siaulav_mage_blue","name":"Blue Orb: Blue Siaulav Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Siaulav_mage_blue"}},{"itemId":680411,"className":"BlueOrb_Siaulav_bow_blue","name":"Blue Orb: Blue Siaulav Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Siaulav_bow_blue"}},{"itemId":680412,"className":"BlueOrb_lapasape_blue","name":"Blue Orb: Blue Lapasape","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"lapasape_blue"}},{"itemId":680413,"className":"BlueOrb_FD_Infrogalas_bow","name":"Blue Orb: Confined Infrogalas Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"FD_Infrogalas_bow"}},{"itemId":680414,"className":"BlueOrb_Papayam","name":"Blue Orb: Papayam","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Papayam"}},{"itemId":680415,"className":"BlueOrb_truffle_red","name":"Blue Orb: Red Truffle","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"truffle_red"}},{"itemId":680416,"className":"BlueOrb_Corpse_Flower_green","name":"Blue Orb: Green Corpse Flower","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Corpse_Flower_green"}},{"itemId":680417,"className":"BlueOrb_Spion_mage_blue","name":"Blue Orb: Blue Spion Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Spion_mage_blue"}},{"itemId":680418,"className":"BlueOrb_Spion_blue","name":"Blue Orb: Blue Spion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Spion_blue"}},{"itemId":680419,"className":"BlueOrb_Spion_bow_blue","name":"Blue Orb: Blue Spion Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Spion_bow_blue"}},{"itemId":680420,"className":"BlueOrb_Stoulet_gray","name":"Blue Orb: Gray Stoulet","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Stoulet_gray"}},{"itemId":680421,"className":"BlueOrb_Siaulav_orange","name":"Blue Orb: Orange Siaulav","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Siaulav_orange"}},{"itemId":680422,"className":"BlueOrb_Siaulav_bow_orange","name":"Blue Orb: Orange Siaulav Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Siaulav_bow_orange"}},{"itemId":680423,"className":"BlueOrb_Hohen_ritter_green","name":"Blue Orb: Green Hohen Ritter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Hohen_ritter_green"}},{"itemId":680424,"className":"BlueOrb_hohen_barkle_green","name":"Blue Orb: Green Hohen Barkle","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"hohen_barkle_green"}},{"itemId":680425,"className":"BlueOrb_Hohen_mage_red","name":"Blue Orb: Red Hohen Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Hohen_mage_red"}},{"itemId":680426,"className":"BlueOrb_Hohen_mane_brown","name":"Blue Orb: Brown Hohen Main","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Hohen_mane_brown"}},{"itemId":680427,"className":"BlueOrb_Hohen_orben_green","name":"Blue Orb: Green Hohen Orben","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Hohen_orben_green"}},{"itemId":680428,"className":"BlueOrb_Harugal_brown","name":"Blue Orb: Brown Harugal","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Harugal_brown"}},{"itemId":680429,"className":"BlueOrb_Wendigo_archer_blue","name":"Blue Orb: Blue Wendigo Searcher","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Wendigo_archer_blue"}},{"itemId":680430,"className":"BlueOrb_minos_bow_orange","name":"Blue Orb: Orange Minos Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"minos_bow_orange"}},{"itemId":680431,"className":"BlueOrb_Colifly_yellow","name":"Blue Orb: Yellow Coliflower","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Colifly_yellow"}},{"itemId":680432,"className":"BlueOrb_saltisdaughter_green","name":"Blue Orb: Green Saltisdaughter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"saltisdaughter_green"}},{"itemId":680433,"className":"BlueOrb_Colifly_mage_black","name":"Blue Orb: Black Coliflower Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Colifly_mage_black"}},{"itemId":680434,"className":"BlueOrb_Colifly_bow_black","name":"Blue Orb: Black Coliflower Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Colifly_bow_black"}},{"itemId":680436,"className":"BlueOrb_colimen_brown","name":"Blue Orb: Brown Colimen","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"colimen_brown"}},{"itemId":680437,"className":"BlueOrb_colimen_mage_brown","name":"Blue Orb: Brown Colimen Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"colimen_mage_brown"}},{"itemId":680438,"className":"BlueOrb_TerraNymph_blue","name":"Blue Orb: Blue Terra Imp","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"TerraNymph_blue"}},{"itemId":680440,"className":"BlueOrb_lapasape_mage_blue","name":"Blue Orb: Blue Lapasape Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"lapasape_mage_blue"}},{"itemId":680441,"className":"BlueOrb_colimen_blue","name":"Blue Orb: Blue Colimen","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"colimen_blue"}},{"itemId":680442,"className":"BlueOrb_Repusbunny_red","name":"Blue Orb: Red Lepusbunny","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Repusbunny_ren"}},{"itemId":680443,"className":"BlueOrb_Repusbunny_bow_red","name":"Blue Orb: Red Lepusbunny Assassin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Repusbunny_bow_red"}},{"itemId":680444,"className":"BlueOrb_Hohen_mane_purple","name":"Blue Orb: Blue Hohen Main","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Hohen_mane_purple"}},{"itemId":680445,"className":"BlueOrb_Hohen_mage_blue","name":"Blue Orb: Blue Hohen Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Hohen_mage_blue"}},{"itemId":680446,"className":"BlueOrb_Cronewt_blue","name":"Blue Orb: Blue Cronewt","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Cronewt_blue"}},{"itemId":680447,"className":"BlueOrb_lapasape_bow_blue","name":"Blue Orb: Blue Lapasape Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"lapasape_bow_blue"}},{"itemId":680448,"className":"BlueOrb_Hohen_ritter_purple","name":"Blue Orb: Blue Hohen Ritter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Hohen_ritter_purple"}},{"itemId":680449,"className":"BlueOrb_Cronewt_bow_blue","name":"Blue Orb: Blue Cronewt Poisoned Needler","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Cronewt_bow_blue"}},{"itemId":680450,"className":"BlueOrb_hohen_barkle_blue","name":"Blue Orb: Blue Hohen Barkle","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"hohen_barkle_blue"}},{"itemId":680451,"className":"BlueOrb_Tiny_blue","name":"Blue Orb: Blue Tini","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Tiny_blue"}},{"itemId":680452,"className":"BlueOrb_Spion_white","name":"Blue Orb: White Spion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Spion_white"}},{"itemId":680453,"className":"BlueOrb_Cronewt_mage_blue","name":"Blue Orb: Blue Cronewt Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Cronewt_mage_blue"}},{"itemId":680454,"className":"BlueOrb_lapasape_brown","name":"Blue Orb: Brown Lapasape","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"lapasape_brown"}},{"itemId":680455,"className":"BlueOrb_Hohen_orben_red","name":"Blue Orb: Red Hohen Orben","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Hohen_orben_red"}},{"itemId":680456,"className":"BlueOrb_Wendigo_archer_gray","name":"Blue Orb: White Wendigo Searcher","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Wendigo_archer_gray"}},{"itemId":680457,"className":"BlueOrb_Tiny_bow_blue","name":"Blue Orb: Blue Tini Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Tiny_bow_blue"}},{"itemId":680458,"className":"BlueOrb_Hohen_gulak_blue","name":"Blue Orb: Blue Hohen Gulak","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Hohen_gulak_blue"}},{"itemId":680459,"className":"BlueOrb_Kepari_purple","name":"Blue Orb: Black Kepari","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Kepari_purple"}},{"itemId":680460,"className":"BlueOrb_Tiny_mage_brown","name":"Blue Orb: Brown Tini Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Tiny_mage_brown"}},{"itemId":680461,"className":"BlueOrb_Spion_mage_white","name":"Blue Orb: White Spion Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Spion_mage_white"}},{"itemId":680462,"className":"BlueOrb_Harugal_blue","name":"Blue Orb: Blue Harugal","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Harugal_blue"}},{"itemId":680463,"className":"BlueOrb_Socket_green","name":"Blue Orb: Green Socket","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Socket_green"}},{"itemId":680464,"className":"BlueOrb_Socket_mage_green","name":"Blue Orb: Green Socket Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Socket_mage_green"}},{"itemId":680465,"className":"BlueOrb_Stoulet_bow_blue","name":"Blue Orb: Brown Stoulet Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Stoulet_bow_blue"}},{"itemId":680466,"className":"BlueOrb_Ridimed_blue","name":"Blue Orb: Blue Ridimed","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Ridimed_blue"}},{"itemId":680467,"className":"BlueOrb_puragi_red","name":"Blue Orb: Red Puragi","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"puragi_red"}},{"itemId":680468,"className":"BlueOrb_pappus_kepa_purple","name":"Blue Orb: Black Old Kepa","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"pappus_kepa_purple"}},{"itemId":680469,"className":"BlueOrb_Mushroom_boy_yellow","name":"Blue Orb: Yellow Griba","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Mushroom_boy_yellow"}},{"itemId":680470,"className":"BlueOrb_Sakmoli_purple","name":"Blue Orb: Blue Sakmoli","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Sakmoli_purple"}},{"itemId":680471,"className":"BlueOrb_jellyfish_green","name":"Blue Orb: Green Meduja","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"jellyfish_green"}},{"itemId":680472,"className":"BlueOrb_Fisherman_blue","name":"Blue Orb: Blue Fisherman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Fisherman_blue"}},{"itemId":680473,"className":"BlueOrb_TerraNymph_brown","name":"Blue Orb: Brown Terra Imp","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"TerraNymph_brown"}},{"itemId":680474,"className":"BlueOrb_NightMaiden_mage_red","name":"Blue Orb: Red Dawn Maiden","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"NightMaiden_mage_red"}},{"itemId":680475,"className":"BlueOrb_Elet_blue","name":"Blue Orb: Blue Elet","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Elet_blue"}},{"itemId":680476,"className":"BlueOrb_nuo_purple","name":"Blue Orb: Blue Nuo","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"nuo_purple"}},{"itemId":680477,"className":"BlueOrb_Socket_bow_red","name":"Blue Orb: Red Socket Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Socket_bow_red"}},{"itemId":680478,"className":"BlueOrb_TerraNymph_mage_blue","name":"Blue Orb: Blue Terra Imp Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"TerraNymph_mage_blue"}},{"itemId":680479,"className":"BlueOrb_defender_spider_blue","name":"Blue Orb: Blue Guardian Spider","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"defender_spider_blue"}},{"itemId":680480,"className":"BlueOrb_Socket_mage_red","name":"Blue Orb: Red Socket Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Socket_mage_red"}},{"itemId":680481,"className":"BlueOrb_NightMaiden_bow_red","name":"Blue Orb: Red Darkness Maiden","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"NightMaiden_bow_red"}},{"itemId":680482,"className":"BlueOrb_Nuka_blue","name":"Blue Orb: Blue Nuka","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Nuka_blue"}},{"itemId":680483,"className":"BlueOrb_Elma_blue","name":"Blue Orb: Blue Elma","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Elma_blue"}},{"itemId":680484,"className":"BlueOrb_TerraNymph_bow_brown","name":"Blue Orb: Brown Terra Imp Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"TerraNymph_bow_brown"}},{"itemId":680485,"className":"BlueOrb_Wendigo_bow_white","name":"Blue Orb: White Wendigo Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Wendigo_bow_white"}},{"itemId":680486,"className":"BlueOrb_Templeslave_sword_blue","name":"Blue Orb: Blue Temple Slave Assassin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Templeslave_sword_blue"}},{"itemId":680487,"className":"BlueOrb_Templeslave_mage_blue","name":"Blue Orb: Blue Temple Slave Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Templeslave_mage_blue"}},{"itemId":680488,"className":"BlueOrb_Tiny_brown","name":"Blue Orb: Brown Tini","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Tiny_brown"}},{"itemId":680489,"className":"BlueOrb_Tiny_bow_green","name":"Blue Orb: Green Tini Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Tiny_bow_green"}},{"itemId":680490,"className":"BlueOrb_Wendigo_magician_blue","name":"Blue Orb: Blue Wendigo Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Wendigo_magician_blue"}},{"itemId":680491,"className":"BlueOrb_Spion_red","name":"Blue Orb: Red Spion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Spion_red"}},{"itemId":680492,"className":"BlueOrb_Tiny_mage_green","name":"Blue Orb: Green Tini Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Tiny_mage_green"}},{"itemId":680493,"className":"BlueOrb_Spion_bow_red","name":"Blue Orb: Red Spion Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Spion_bow_red"}},{"itemId":680494,"className":"BlueOrb_defender_spider_red","name":"Blue Orb: Red Guardian Spider","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"defender_spider_red"}},{"itemId":680495,"className":"BlueOrb_Dumaro_blue","name":"Blue Orb: Blue Dumaro","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Dumaro_blue"}},{"itemId":680496,"className":"BlueOrb_Repusbunny_purple","name":"Blue Orb: Blue Lepusbunny","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Repusbunny_purple"}},{"itemId":680497,"className":"BlueOrb_Repusbunny_bow_purple","name":"Blue Orb: Blue Lepusbunny Assassin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Repusbunny_bow_purple"}},{"itemId":680498,"className":"BlueOrb_Minos_green","name":"Blue Orb: Green Minos","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Minos_green"}},{"itemId":680499,"className":"BlueOrb_minos_bow_green","name":"Blue Orb: Green Minos Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"minos_bow_green"}},{"itemId":680500,"className":"BlueOrb_lapasape_mage_brown","name":"Blue Orb: Brown Lapasape Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"lapasape_mage_brown"}},{"itemId":680501,"className":"BlueOrb_Nuka_brown","name":"Blue Orb: Brown Nuka","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Nuka_brown"}},{"itemId":680502,"className":"BlueOrb_lapasape_bow_brown","name":"Blue Orb: Brown Lapasape Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"lapasape_bow_brown"}},{"itemId":680503,"className":"BlueOrb_Elma_red","name":"Blue Orb: Red Elma","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Elma_red"}},{"itemId":680504,"className":"BlueOrb_ticen_bow_red","name":"Blue Orb: Red Ticen Crossbow Soldier","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"ticen_bow_red"}},{"itemId":680505,"className":"BlueOrb_ticen_red","name":"Blue Orb: Red Ticen","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"ticen_red"}},{"itemId":680506,"className":"BlueOrb_ticen_mage_red","name":"Blue Orb: Red Ticen Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"ticen_mage_red"}},{"itemId":680507,"className":"BlueOrb_nuo_red","name":"Blue Orb: Red Nuo","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"nuo_red"}},{"itemId":680508,"className":"BlueOrb_rafflesia_green","name":"Blue Orb: Green Rafflesia","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"rafflesia_green"}},{"itemId":680509,"className":"BlueOrb_Big_Cockatries_red","name":"Blue Orb: Red Cockat","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Big_Cockatries_red"}},{"itemId":680510,"className":"BlueOrb_mushroom_ent_red","name":"Blue Orb: Red Big Griba","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"mushroom_ent_red"}},{"itemId":680511,"className":"BlueOrb_Flying_Flog_white","name":"Blue Orb: Gray Winged Frog","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Flying_Flog_white"}},{"itemId":680512,"className":"BlueOrb_jukotail","name":"Blue Orb: Jukotail","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"jukotail"}},{"itemId":680513,"className":"BlueOrb_Greentoshell","name":"Blue Orb: Greentoshell","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Greentoshell"}},{"itemId":680514,"className":"BlueOrb_Dumaro_yellow","name":"Blue Orb: Yellow Dumaro","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Dumaro_yellow"}},{"itemId":680515,"className":"BlueOrb_Candlespider_blue","name":"Blue Orb: Blue Candle Spider","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Candlespider_blue"}},{"itemId":680516,"className":"BlueOrb_eldigo_green","name":"Blue Orb: Green Eldigo","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"eldigo_green"}},{"itemId":680517,"className":"BlueOrb_Socket_bow_brown","name":"Blue Orb: Brown Socket Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Socket_bow_brown"}},{"itemId":680518,"className":"BlueOrb_Aklasdame","name":"Blue Orb: Akhlass Dame","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Aklasdame"}},{"itemId":680519,"className":"BlueOrb_Aklastyke","name":"Blue Orb: Akhlass Tikke","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Aklastyke"}},{"itemId":680520,"className":"BlueOrb_Aklasbairn","name":"Blue Orb: Akhlass Beorn","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Aklasbairn"}},{"itemId":680521,"className":"BlueOrb_Aklascenser","name":"Blue Orb: Akhlass Bishop","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Aklascenser"}},{"itemId":680522,"className":"BlueOrb_Aklsabishop","name":"Blue Orb: Akhlass Sensor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Aklsabishop"}},{"itemId":680523,"className":"BlueOrb_Aklashump","name":"Blue Orb: Akhlass Hump","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Aklashump"}},{"itemId":680524,"className":"BlueOrb_Siaria","name":"Blue Orb: Cyaria","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Siaria"}},{"itemId":680525,"className":"BlueOrb_Aklaspetal","name":"Blue Orb: Akhlass Petal","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Aklaspetal"}},{"itemId":680526,"className":"BlueOrb_Aklaschurl","name":"Blue Orb: Akhlass Steel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Aklaschurl"}},{"itemId":680527,"className":"BlueOrb_Aklasia","name":"Blue Orb: Akhlacia","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Aklasia"}},{"itemId":680528,"className":"BlueOrb_Aklacountess","name":"Blue Orb: Akhlass Countess","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Aklacountess"}},{"itemId":680529,"className":"BlueOrb_Shardstatue_black","name":"Blue Orb: Black Shardstatue","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Shardstatue_black"}},{"itemId":680530,"className":"BlueOrb_Templeslave_black","name":"Blue Orb: Black Templeslave","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Templeslave_black"}},{"itemId":680531,"className":"BlueOrb_Templeslave_sword_black","name":"Blue Orb: Black Temple Slave Assassin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Templeslave_sword_black"}},{"itemId":680532,"className":"BlueOrb_pumpkin_dog","name":"Blue Orb: Amberdog","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"pumpkin_dog"}},{"itemId":680533,"className":"BlueOrb_scare_crow","name":"Blue Orb: Scarecrow","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"scare_crow"}},{"itemId":680534,"className":"BlueOrb_straw_walker","name":"Blue Orb: Straw Walker","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"straw_walker"}},{"itemId":680535,"className":"BlueOrb_ragged_bird","name":"Blue Orb: Ragbird","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"ragged_bird"}},{"itemId":680536,"className":"BlueOrb_ragged_butcher","name":"Blue Orb: Ragged Butcher","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"ragged_butcher"}},{"itemId":680537,"className":"BlueOrb_ellomago_green","name":"Blue Orb: Green Ellomago","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"ellomago_green"}},{"itemId":680538,"className":"BlueOrb_wood_lwa_green","name":"Blue Orb: Blue Woodluwa","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"wood_lwa_green"}},{"itemId":680539,"className":"BlueOrb_goblin2_sword_green","name":"Blue Orb: Green Goblin Warrior","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"goblin2_sword_green"}},{"itemId":680540,"className":"BlueOrb_goblin2_hammer_green","name":"Blue Orb: Green Goblin Charger","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"goblin2_hammer_green"}},{"itemId":680541,"className":"BlueOrb_goblin2_wand1_green","name":"Blue Orb: Green Goblin Wizard","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"goblin2_wand1_green"}},{"itemId":680542,"className":"BlueOrb_goblin2_wand3_green","name":"Blue Orb: Green Goblin Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"goblin2_wand3_green"}},{"itemId":680543,"className":"BlueOrb_rodenarcorng","name":"Blue Orb: Rhodenabean","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"rodenarcorng"}},{"itemId":680544,"className":"BlueOrb_Rodenag","name":"Blue Orb: Rhodenag","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Rodenag"}},{"itemId":680545,"className":"BlueOrb_Rodetad","name":"Blue Orb: Rhodetad","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Rodetad"}},{"itemId":680546,"className":"BlueOrb_Elder_Rode","name":"Blue Orb: Elder Rhode","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Elder_Rode"}},{"itemId":680547,"className":"BlueOrb_Rodedoe","name":"Blue Orb: Rhodedoe","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Rodedoe"}},{"itemId":680548,"className":"BlueOrb_Roderiot","name":"Blue Orb: Rhodeliot","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Roderiot"}},{"itemId":680549,"className":"BlueOrb_nacorngfly","name":"Blue Orb: Nuttafly","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"nacorngfly"}},{"itemId":680550,"className":"BlueOrb_nacorngbug","name":"Blue Orb: Nuttabug","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"nacorngbug"}},{"itemId":680551,"className":"BlueOrb_Rodeyokel","name":"Blue Orb: Rodejokel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Rodeyokel"}},{"itemId":680552,"className":"BlueOrb_rodevassal","name":"Blue Orb: Rhodevassal","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"rodevassal"}},{"itemId":680553,"className":"BlueOrb_PagDoper_blue","name":"Blue Orb: Blue Pag Doper","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"PagDoper_blue"}},{"itemId":680554,"className":"BlueOrb_Pagclamper_yellow","name":"Blue Orb: Yellow Pag Clamper","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Pagclamper_yellow"}},{"itemId":680555,"className":"BlueOrb_PagNurse_green","name":"Blue Orb: Green Pag Nurse","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"PagNurse_green"}},{"itemId":680556,"className":"BlueOrb_Pagshearer_yellow","name":"Blue Orb: Yellow Pag Shearer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Pagshearer_yellow"}},{"itemId":680557,"className":"BlueOrb_kucarry_Tot","name":"Blue Orb: Kugheri Tot","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"kucarry_Tot"}},{"itemId":680558,"className":"BlueOrb_kucarry_Somy","name":"Blue Orb: Kugheri Sommi","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"kucarry_Somy"}},{"itemId":680559,"className":"BlueOrb_kucarry_lioni","name":"Blue Orb: Kugheri Lyoni","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"kucarry_lioni"}},{"itemId":680560,"className":"BlueOrb_Leafnut_yellow","name":"Blue Orb: Yellow Leafnut","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Leafnut_yellow"}},{"itemId":680561,"className":"BlueOrb_Grummer_orange","name":"Blue Orb: Orange Grummer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Grummer_orange"}},{"itemId":680562,"className":"BlueOrb_colimen_red","name":"Blue Orb: Red Colimen","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"colimen_red"}},{"itemId":680563,"className":"BlueOrb_Caro_yellow","name":"Blue Orb: Yellow Caro","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Caro_yellow"}},{"itemId":680564,"className":"BlueOrb_kucarry_numani","name":"Blue Orb: Kugheri Numani","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"kucarry_numani"}},{"itemId":680565,"className":"BlueOrb_kucarry_zabbi","name":"Blue Orb: Kugheri Zabbi","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"kucarry_zabbi"}},{"itemId":680566,"className":"BlueOrb_kucarry_zeuni","name":"Blue Orb: Kugheri Zeuni","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"kucarry_zeuni"}},{"itemId":680567,"className":"BlueOrb_bloom","name":"Blue Orb: Blom","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"bloom"}},{"itemId":680568,"className":"BlueOrb_budny","name":"Blue Orb: Virdney","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"budny"}},{"itemId":680569,"className":"BlueOrb_castle_gardner","name":"Blue Orb: Castle Gardener","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"castle_gardner"}},{"itemId":680570,"className":"BlueOrb_floron","name":"Blue Orb: Flowlon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"floron"}},{"itemId":680571,"className":"BlueOrb_florabbi","name":"Blue Orb: Flowlevi","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"florabbi"}},{"itemId":680572,"className":"BlueOrb_Slime_red","name":"Blue Orb: Red Slime","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Slime_red"}},{"itemId":680573,"className":"BlueOrb_arma_yellow","name":"Blue Orb: Yellow Arma","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"arma_yellow"}},{"itemId":680574,"className":"BlueOrb_pyran_yellow","name":"Blue Orb: Yellow Pyran","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"pyran_yellow"}},{"itemId":680575,"className":"BlueOrb_wizards_marmotte_red","name":"Blue Orb: Red Wizard Shaman Doll","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"wizards_marmotte_red"}},{"itemId":680576,"className":"BlueOrb_Glyquare_red","name":"Blue Orb: Red Glyquare","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Glyquare_red"}},{"itemId":680577,"className":"BlueOrb_anchor_purple","name":"Blue Orb: Red Anchor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"anchor_purple"}},{"itemId":680578,"className":"BlueOrb_Prisonfighter_green","name":"Blue Orb: Green Prison Fighter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Prisonfighter_green"}},{"itemId":680579,"className":"BlueOrb_Folibu_yellow","name":"Blue Orb: Yellow Polibu","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Folibu_yellow"}},{"itemId":680580,"className":"BlueOrb_Gosaru_blue","name":"Blue Orb: Blue Gosaru","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Gosaru_blue"}},{"itemId":680581,"className":"BlueOrb_Doyor_blue","name":"Blue Orb: Blue Doyor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Doyor_blue"}},{"itemId":680582,"className":"BlueOrb_Tanu_blue","name":"Blue Orb: Blue Tanu","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Tanu_blue"}},{"itemId":680583,"className":"BlueOrb_beetow_blue","name":"Blue Orb: Blue Beetow","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"beetow_blue"}},{"itemId":680584,"className":"BlueOrb_duckey_red","name":"Blue Orb: Red Ducky","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"duckey_red"}},{"itemId":680585,"className":"BlueOrb_Moglan_blue","name":"Blue Orb: Blue Moglan","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Moglan_blue"}},{"itemId":680586,"className":"BlueOrb_rockon","name":"Blue Orb: Lakhorn","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"rockon"}},{"itemId":680587,"className":"BlueOrb_rockoff","name":"Blue Orb: Lakhof","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"rockoff"}},{"itemId":680588,"className":"BlueOrb_Flak_green","name":"Blue Orb: Green Flak","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Flak_green"}},{"itemId":680589,"className":"BlueOrb_tala_sorcerer","name":"Blue Orb: Tala Wizard","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"tala_sorcerer"}},{"itemId":680590,"className":"BlueOrb_flamme_priest_green","name":"Blue Orb: Green Flamme","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"flamme_priest_green"}},{"itemId":680591,"className":"BlueOrb_tala_combat","name":"Blue Orb: Tala Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"tala_combat"}},{"itemId":680592,"className":"BlueOrb_warleader_tala","name":"Blue Orb: Tala Battle Boss","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"warleader_tala"}},{"itemId":680593,"className":"BlueOrb_rocktanon","name":"Blue Orb: Lakhtanon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"rocktanon"}},{"itemId":680594,"className":"BlueOrb_flamme_mage_green","name":"Blue Orb: Green Flamme Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"flamme_mage_green"}},{"itemId":680595,"className":"BlueOrb_Bavon_green","name":"Blue Orb: Green Bavon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Bavon_green"}},{"itemId":680596,"className":"BlueOrb_rubblem_green","name":"Blue Orb: Green Rubblem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"rubblem_green"}},{"itemId":680597,"className":"BlueOrb_Zolem_green","name":"Blue Orb: Green Zolem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Zolem_green"}},{"itemId":680598,"className":"BlueOrb_flamag_green","name":"Blue Orb: Green Flamag","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"flamag_green"}},{"itemId":680599,"className":"BlueOrb_flamme_archer_green","name":"Blue Orb: Green Flamme Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"flamme_archer_green"}},{"itemId":680600,"className":"BlueOrb_wood_goblin_green","name":"Blue Orb: Green Wood Goblin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"wood_goblin_green"}},{"itemId":680601,"className":"BlueOrb_rockoff_orange","name":"Blue Orb: Orange Lakhof","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"rockoff_orange"}},{"itemId":680602,"className":"BlueOrb_Flamil_green","name":"Blue Orb: Green Flamil","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Flamil_green"}},{"itemId":680603,"className":"BlueOrb_Rondo","name":"Blue Orb: Rondo","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Rondo"}},{"itemId":680604,"className":"BlueOrb_Zibu_Maize_red","name":"Blue Orb: Red Maize","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Zibu_Maize_red"}},{"itemId":680605,"className":"BlueOrb_Siaulav_red","name":"Blue Orb: Red Siaulav","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Siaulav_red"}},{"itemId":680606,"className":"BlueOrb_Siaulav_bow_black","name":"Blue Orb: Black Siaulav Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Siaulav_bow_black"}},{"itemId":680607,"className":"BlueOrb_Siaulav_mage_black","name":"Blue Orb: Black Siaulav Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Siaulav_mage_black"}},{"itemId":680608,"className":"BlueOrb_Rakon","name":"Blue Orb: Lyecorn","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Rakon"}},{"itemId":680609,"className":"BlueOrb_Toothrikon","name":"Blue Orb: Tuthrycon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Toothrikon"}},{"itemId":680610,"className":"BlueOrb_horn_golem","name":"Blue Orb: Horned Golem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"horn_golem"}},{"itemId":680611,"className":"BlueOrb_darong","name":"Blue Orb: Bunkeybo","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"darong"}},{"itemId":680612,"className":"BlueOrb_dorong","name":"Blue Orb: Bunkeyto","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"dorong"}},{"itemId":680613,"className":"BlueOrb_nukarong","name":"Blue Orb: Nukhalong","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"nukarong"}},{"itemId":680614,"className":"BlueOrb_vilkas_soldier","name":"Blue Orb: Vilkas","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"vilkas_soldier"}},{"itemId":680615,"className":"BlueOrb_vilkas_archer","name":"Blue Orb: Vilkas Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"vilkas_archer"}},{"itemId":680616,"className":"BlueOrb_rompelnuka","name":"Blue Orb: Romplenuka","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"rompelnuka"}},{"itemId":680617,"className":"BlueOrb_vilkas_warrior","name":"Blue Orb: Vilkas Assassin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"vilkas_warrior"}},{"itemId":680618,"className":"BlueOrb_vilkas_spearman","name":"Blue Orb: Vilkas Spearman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"vilkas_spearman"}},{"itemId":680619,"className":"BlueOrb_vilkas_fighter","name":"Blue Orb: Vilkas Fighter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"vilkas_fighter"}},{"itemId":680620,"className":"BlueOrb_vilkas_mage","name":"Blue Orb: Vilkas Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"vilkas_mage"}},{"itemId":680621,"className":"BlueOrb_charog_green","name":"Blue Orb: Green Charog","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"charog_green"}},{"itemId":680622,"className":"BlueOrb_charcoal_walker_green","name":"Blue Orb: Green Charcoal Walker","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"charcoal_walker_green"}},{"itemId":680623,"className":"BlueOrb_blindlem_green","name":"Blue Orb: Green Blindlem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"blindlem_green"}},{"itemId":680624,"className":"BlueOrb_RavineLerva_cave","name":"Blue Orb: Cave Ravinelarva","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"RavineLerva_cave"}},{"itemId":680625,"className":"BlueOrb_kucarry_symbani","name":"Blue Orb: Kugheri Symbani","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"kucarry_symbani"}},{"itemId":680626,"className":"BlueOrb_kucarry_balzer","name":"Blue Orb: Kugheri Balzer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"kucarry_balzer"}},{"itemId":680627,"className":"BlueOrb_kucarry_Zeffi","name":"Blue Orb: Kugheri Zeffi","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"kucarry_Zeffi"}},{"itemId":680628,"className":"BlueOrb_Moringaga","name":"Blue Orb: Mouringaka","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Moringaga"}},{"itemId":680629,"className":"BlueOrb_Nabu","name":"Blue Orb: Nabu","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Nabu"}},{"itemId":680630,"className":"BlueOrb_Moringbird","name":"Blue Orb: Mourningbird","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_FRIEND","strArg":"Moringbird"}},{"itemId":685001,"className":"RedOrb_Onion","name":"Red Orb: Kepa","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Onion"}},{"itemId":685002,"className":"RedOrb_Leaf_diving","name":"Red Orb: Leaf Bug","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Leaf_diving"}},{"itemId":685003,"className":"RedOrb_Hanaming","name":"Red Orb: Hanaming","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Hanaming"}},{"itemId":685004,"className":"RedOrb_Bokchoy","name":"Red Orb: Chinency","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Bokchoy"}},{"itemId":685005,"className":"RedOrb_InfroRocktor","name":"Red Orb: Infrorocktor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"InfroRocktor"}},{"itemId":685006,"className":"RedOrb_Chupacabra_Blue","name":"Red Orb: Chupacabra","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Chupacabra_Blue"}},{"itemId":685007,"className":"RedOrb_Popolion_Blue","name":"Red Orb: Popolion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Popolion_Blue"}},{"itemId":685008,"className":"RedOrb_Weaver","name":"Red Orb: Weaver","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Weaver"}},{"itemId":685009,"className":"RedOrb_Pokubu","name":"Red Orb: Pokubu","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Pokubu"}},{"itemId":685010,"className":"RedOrb_Onion_Red","name":"Red Orb: Red Kepa","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Onion_Red"}},{"itemId":685011,"className":"RedOrb_Jukopus","name":"Red Orb: Jukopus","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Jukopus"}},{"itemId":685012,"className":"RedOrb_Goblin_Spear","name":"Red Orb: Vubbe Thief","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Goblin_Spear"}},{"itemId":685013,"className":"RedOrb_Whip_vine_Ra","name":"Red Orb: Raflower","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Whip_vine_Ra"}},{"itemId":685014,"className":"RedOrb_Goblin_Miners","name":"Red Orb: Vubbe Miner","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Goblin_Miners"}},{"itemId":685015,"className":"RedOrb_Bat","name":"Red Orb: Bat","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Bat"}},{"itemId":685016,"className":"RedOrb_StonOrca","name":"Red Orb: Stone Orca","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"StonOrca"}},{"itemId":685017,"className":"RedOrb_Shredded","name":"Red Orb: Shredded","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Shredded"}},{"itemId":685018,"className":"RedOrb_Yekubite","name":"Red Orb: Yekubite","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Yekubite"}},{"itemId":685019,"className":"RedOrb_Goblin_Archer","name":"Red Orb: Vubbe Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Goblin_Archer"}},{"itemId":685020,"className":"RedOrb_bubbe_mage_normal","name":"Red Orb: Vubbe Wizard","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"bubbe_mage_normal"}},{"itemId":685021,"className":"RedOrb_Quartz_weaver","name":"Red Orb: Crystal Spider","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Quartz_weaver"}},{"itemId":685022,"className":"RedOrb_bubbe_mage_priest","name":"Red Orb: Vubbe Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"bubbe_mage_priest"}},{"itemId":685023,"className":"RedOrb_GoblinWarrior","name":"Red Orb: Vubbe Fighter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"GoblinWarrior"}},{"itemId":685024,"className":"RedOrb_Zignuts","name":"Red Orb: Zignuts","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Zignuts"}},{"itemId":685025,"className":"RedOrb_Npanto_hand","name":"Red Orb: Panto Pathfinder","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Npanto_hand"}},{"itemId":685026,"className":"RedOrb_Grummer","name":"Red Orb: Grummer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Grummer"}},{"itemId":685027,"className":"RedOrb_Mally","name":"Red Orb: Mali","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Mally"}},{"itemId":685028,"className":"RedOrb_Leafly","name":"Red Orb: Leafly","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Leafly"}},{"itemId":685029,"className":"RedOrb_Npanto_baby","name":"Red Orb: Panto","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Npanto_baby"}},{"itemId":685030,"className":"RedOrb_NPanto_staff","name":"Red Orb: Panto Wizard","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"NPanto_staff"}},{"itemId":685031,"className":"RedOrb_NPanto_sword","name":"Red Orb: Panto Warrior","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"NPanto_sword"}},{"itemId":685032,"className":"RedOrb_Spion_bow","name":"Red Orb: Spion Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Spion_bow"}},{"itemId":685033,"className":"RedOrb_puragi_green","name":"Red Orb: Green Puragi","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"puragi_green"}},{"itemId":685034,"className":"RedOrb_Firent","name":"Red Orb: Firent","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Firent"}},{"itemId":685035,"className":"RedOrb_banshee","name":"Red Orb: Banshee","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"banshee"}},{"itemId":685036,"className":"RedOrb_zigri_brown","name":"Red Orb: Brown Zigri","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"zigri_brown"}},{"itemId":685037,"className":"RedOrb_Humming_bud","name":"Red Orb: Hummingbird","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Humming_bud"}},{"itemId":685038,"className":"RedOrb_Deadbornscab_mage","name":"Red Orb: Deadborn Scap Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Deadbornscab_mage"}},{"itemId":685039,"className":"RedOrb_seedmia","name":"Red Orb: Seedmia","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"seedmia"}},{"itemId":685040,"className":"RedOrb_Colifly_bow","name":"Red Orb: Coliflower Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Colifly_bow"}},{"itemId":685041,"className":"RedOrb_Npanto_archer","name":"Red Orb: Panto Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Npanto_archer"}},{"itemId":685042,"className":"RedOrb_Mallardu","name":"Red Orb: Mallardu","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Mallardu"}},{"itemId":685043,"className":"RedOrb_panto_javelin_elite","name":"Red Orb: Large Panto Spearman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"panto_javelin_elite"}},{"itemId":685044,"className":"RedOrb_zombiegirl2_brown","name":"Red Orb: Brown Rodelin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"zombiegirl2_brown"}},{"itemId":685045,"className":"RedOrb_Tanu","name":"Red Orb: Tanu","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Tanu"}},{"itemId":685046,"className":"RedOrb_Tipio","name":"Red Orb: Tipio","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Tipio"}},{"itemId":685047,"className":"RedOrb_Doyor","name":"Red Orb: Doyor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Doyor"}},{"itemId":685048,"className":"RedOrb_Beetow","name":"Red Orb: Beetow","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Beetow"}},{"itemId":685049,"className":"RedOrb_Siaulav_bow","name":"Red Orb: Siaulav Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Siaulav_bow"}},{"itemId":685050,"className":"RedOrb_Zibu_Maize","name":"Red Orb: Black Maize","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Zibu_Maize"}},{"itemId":685051,"className":"RedOrb_Ultanun","name":"Red Orb: Ultanun","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Ultanun"}},{"itemId":685052,"className":"RedOrb_Rudas_loxodon","name":"Red Orb: Red Loxodon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Rudas_loxodon"}},{"itemId":685053,"className":"RedOrb_Upent","name":"Red Orb: Upent","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Upent"}},{"itemId":685054,"className":"RedOrb_Caro","name":"Red Orb: Caro","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Caro"}},{"itemId":685055,"className":"RedOrb_Tiny_bow","name":"Red Orb: Tini Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Tiny_bow"}},{"itemId":685056,"className":"RedOrb_Carcashu","name":"Red Orb: Carcashu","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Carcashu"}},{"itemId":685057,"className":"RedOrb_Mentiwood","name":"Red Orb: Mentiwood","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Mentiwood"}},{"itemId":685058,"className":"RedOrb_Beeteros","name":"Red Orb: Beeteros","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Beeteros"}},{"itemId":685059,"className":"RedOrb_Tiny_mage","name":"Red Orb: Tini Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Tiny_mage"}},{"itemId":685060,"className":"RedOrb_zombiegirl2_chpel","name":"Red Orb: Rodelin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"zombiegirl2_chpel"}},{"itemId":685061,"className":"RedOrb_Yognome","name":"Red Orb: Yognome","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Yognome"}},{"itemId":685062,"className":"RedOrb_New_desmodus","name":"Red Orb: Desmodus","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"New_desmodus"}},{"itemId":685063,"className":"RedOrb_Glizardon","name":"Red Orb: Glizardon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Glizardon"}},{"itemId":685064,"className":"RedOrb_Corylus","name":"Red Orb: Corylus","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Corylus"}},{"itemId":685065,"className":"RedOrb_Galok","name":"Red Orb: Galok","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Galok"}},{"itemId":685066,"className":"RedOrb_Pawndel","name":"Red Orb: Pawndel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Pawndel"}},{"itemId":685067,"className":"RedOrb_pawnd","name":"Red Orb: Pawnd","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"pawnd"}},{"itemId":685068,"className":"RedOrb_Egnome","name":"Red Orb: Egnome","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Egnome"}},{"itemId":685069,"className":"RedOrb_Spector_Gh","name":"Red Orb: Green Apparition","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Spector_Gh"}},{"itemId":685070,"className":"RedOrb_colitile","name":"Red Orb: Colitile","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"colitile"}},{"itemId":685071,"className":"RedOrb_infroholder_bow","name":"Red Orb: Infro Holder Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"infroholder_bow"}},{"itemId":685072,"className":"RedOrb_thornball","name":"Red Orb: Thornball","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"thornball"}},{"itemId":685073,"className":"RedOrb_Whip_vine","name":"Red Orb: Coliflower","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Whip_vine"}},{"itemId":685074,"className":"RedOrb_Velwriggler","name":"Red Orb: Velwriggler","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Velwriggler"}},{"itemId":685075,"className":"RedOrb_truffle","name":"Red Orb: Truffle","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"truffle"}},{"itemId":685076,"className":"RedOrb_operor","name":"Red Orb: Operor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"operor"}},{"itemId":685077,"className":"RedOrb_Bagworm","name":"Red Orb: Bagworm","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Bagworm"}},{"itemId":685078,"className":"RedOrb_groll","name":"Red Orb: Groll","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"groll"}},{"itemId":685079,"className":"RedOrb_flower_blue","name":"Red Orb: Blue Fragaras","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"flower_blue"}},{"itemId":685080,"className":"RedOrb_merog_wogu","name":"Red Orb: Merog Stinger","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"merog_wogu"}},{"itemId":685081,"className":"RedOrb_merog_wizzard","name":"Red Orb: Merog Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"merog_wizzard"}},{"itemId":685082,"className":"RedOrb_Chafperor","name":"Red Orb: Chafperor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Chafperor"}},{"itemId":685083,"className":"RedOrb_Matsum","name":"Red Orb: Matsum","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Matsum"}},{"itemId":685084,"className":"RedOrb_Ammon","name":"Red Orb: Ammon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Ammon"}},{"itemId":685085,"className":"RedOrb_Infroholder_mage","name":"Red Orb: Infro Holder Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Infroholder_mage"}},{"itemId":685086,"className":"RedOrb_FD_Candlespider","name":"Red Orb: Catacombs Candle Spider","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_Candlespider"}},{"itemId":685087,"className":"RedOrb_FD_Mushcarfung","name":"Red Orb: Catacombs Mushcarfung","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_Mushcarfung"}},{"itemId":685088,"className":"RedOrb_FD_maggot","name":"Red Orb: Catacombs Maggot","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_maggot"}},{"itemId":685089,"className":"RedOrb_FD_Leaf_diving_purple","name":"Red Orb: Catacombs Leaf Bug","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_Leaf_diving_purple"}},{"itemId":685090,"className":"RedOrb_Cronewt_bow_brown","name":"Red Orb: Cronewt Poison Needler","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Cronewt_bow_brown"}},{"itemId":685091,"className":"RedOrb_Colifly_bow_purple","name":"Red Orb: Spoiled Coliflower Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Colifly_bow_purple"}},{"itemId":685092,"className":"RedOrb_Tontus","name":"Red Orb: Tontus","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Tontus"}},{"itemId":685093,"className":"RedOrb_Dandel","name":"Red Orb: Dandel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Dandel"}},{"itemId":685094,"className":"RedOrb_Pino","name":"Red Orb: Pino","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Pino"}},{"itemId":685095,"className":"RedOrb_Geppetto","name":"Red Orb: Geppetto","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Geppetto"}},{"itemId":685096,"className":"RedOrb_Lichenclops","name":"Red Orb: Lichenclops","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Lichenclops"}},{"itemId":685097,"className":"RedOrb_Zinute","name":"Red Orb: Zinute","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Zinute"}},{"itemId":685098,"className":"RedOrb_chupacabra_desert","name":"Red Orb: Desert Chupacabra","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"chupacabra_desert"}},{"itemId":685099,"className":"RedOrb_wendigo","name":"Red Orb: Wendigo","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"wendigo"}},{"itemId":685100,"className":"RedOrb_Dumaro","name":"Red Orb: Dumaro","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Dumaro"}},{"itemId":685101,"className":"RedOrb_wendigo_bow","name":"Red Orb: Wendigo Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"wendigo_bow"}},{"itemId":685102,"className":"RedOrb_wendigo_mage","name":"Red Orb: Wendigo Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"wendigo_mage"}},{"itemId":685103,"className":"RedOrb_Sauga_s","name":"Red Orb: Sauga","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Sauga_s"}},{"itemId":685104,"className":"RedOrb_ticen","name":"Red Orb: Ticen","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"ticen"}},{"itemId":685105,"className":"RedOrb_tucen","name":"Red Orb: Tucen","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"tucen"}},{"itemId":685106,"className":"RedOrb_loftlem","name":"Red Orb: Loftlem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"loftlem"}},{"itemId":685107,"className":"RedOrb_Lauzinute","name":"Red Orb: Lauzinute","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Lauzinute"}},{"itemId":685108,"className":"RedOrb_hogma_archer","name":"Red Orb: Hogma Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"hogma_archer"}},{"itemId":685109,"className":"RedOrb_Templeslave_mage","name":"Red Orb: Temple Slave Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Templeslave_mage"}},{"itemId":685110,"className":"RedOrb_Chupaluka_pink","name":"Red Orb: Pink Chupaluka","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Chupaluka_pink"}},{"itemId":685111,"className":"RedOrb_Sakmoli_orange","name":"Red Orb: Orange Sakmoli","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Sakmoli_orange"}},{"itemId":685112,"className":"RedOrb_Ridimed_purple","name":"Red Orb: Black Ridimed","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Ridimed_purple"}},{"itemId":685113,"className":"RedOrb_Repusbunny_bow","name":"Red Orb: Lepusbunny Assassin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Repusbunny_bow"}},{"itemId":685114,"className":"RedOrb_FD_woodgoblin_black","name":"Red Orb: Earth Wood Goblin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_woodgoblin_black"}},{"itemId":685115,"className":"RedOrb_FD_Bushspider_purple","name":"Red Orb: Earth Bushspider","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_Bushspider_purple"}},{"itemId":685116,"className":"RedOrb_FD_pappus_kepa_purple","name":"Red Orb: Earth Old Kepa","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_pappus_kepa_purple"}},{"itemId":685117,"className":"RedOrb_FD_colimen","name":"Red Orb: Earth Colimen","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_colimen"}},{"itemId":685118,"className":"RedOrb_FD_spectra","name":"Red Orb: Earth Spectra","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_spectra"}},{"itemId":685119,"className":"RedOrb_FD_Spector_gh_purple","name":"Red Orb: Earth Apparition","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_Spector_gh_purple"}},{"itemId":685120,"className":"RedOrb_FD_whip_vine_purple","name":"Red Orb: Earth Raflower","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_whip_vine_purple"}},{"itemId":685121,"className":"RedOrb_colimen_mage","name":"Red Orb: Earth Colimen Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"colimen_mage"}},{"itemId":685122,"className":"RedOrb_FD_Shredded","name":"Red Orb: Earth Shredded","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_Shredded"}},{"itemId":685123,"className":"RedOrb_FD_Deadbornscab","name":"Red Orb: Earth Deadborn Scap","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_Deadbornscab"}},{"itemId":685124,"className":"RedOrb_FD_Hallowventor","name":"Red Orb: Earth Hallowventer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_Hallowventor"}},{"itemId":685125,"className":"RedOrb_Hogma_combat","name":"Red Orb: Hogma Fighter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Hogma_combat"}},{"itemId":685126,"className":"RedOrb_hogma_warrior","name":"Red Orb: Hogma Warrior","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"hogma_warrior"}},{"itemId":685127,"className":"RedOrb_Woodfung","name":"Red Orb: Woodfung","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Woodfung"}},{"itemId":685128,"className":"RedOrb_Hogma_guard","name":"Red Orb: Hogma Scout","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Hogma_guard"}},{"itemId":685129,"className":"RedOrb_hogma_sorcerer","name":"Red Orb: Hogma Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"hogma_sorcerer"}},{"itemId":685130,"className":"RedOrb_Deadbornscab_bow","name":"Red Orb: Deadborn Scap Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Deadbornscab_bow"}},{"itemId":685131,"className":"RedOrb_Tontulia","name":"Red Orb: Tontulia","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Tontulia"}},{"itemId":685132,"className":"RedOrb_warleader_hogma","name":"Red Orb: Hogma Captain","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"warleader_hogma"}},{"itemId":685133,"className":"RedOrb_Repusbunny_mage","name":"Red Orb: Lepusbunny Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Repusbunny_mage"}},{"itemId":685134,"className":"RedOrb_varv","name":"Red Orb: Varv","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"varv"}},{"itemId":685135,"className":"RedOrb_Moving_trap","name":"Red Orb: Boowook","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Moving_trap"}},{"itemId":685136,"className":"RedOrb_zinutekas","name":"Red Orb: Zinutekas","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"zinutekas"}},{"itemId":685137,"className":"RedOrb_Karas","name":"Red Orb: Karas","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Karas"}},{"itemId":685138,"className":"RedOrb_zinutekas_Elite","name":"Red Orb: Zinutekas","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"zinutekas_Elite"}},{"itemId":685139,"className":"RedOrb_Vesper","name":"Red Orb: Vesper","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Vesper"}},{"itemId":685140,"className":"RedOrb_Beetle","name":"Red Orb: Vekarabe","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Beetle"}},{"itemId":685141,"className":"RedOrb_Wolf_statue","name":"Red Orb: Vikaras","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Wolf_statue"}},{"itemId":685142,"className":"RedOrb_Tombsinker","name":"Red Orb: Tombsinker","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Tombsinker"}},{"itemId":685143,"className":"RedOrb_Beetle_Elite","name":"Red Orb: Vekaranus","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Beetle_Elite"}},{"itemId":685144,"className":"RedOrb_shtayim","name":"Red Orb: Shtayim","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"shtayim"}},{"itemId":685145,"className":"RedOrb_Echad","name":"Red Orb: Echad","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Echad"}},{"itemId":685146,"className":"RedOrb_wolf_statue_mage","name":"Red Orb: Vikaras Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"wolf_statue_mage"}},{"itemId":685147,"className":"RedOrb_Echad_bow","name":"Red Orb: Echad Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Echad_bow"}},{"itemId":685148,"className":"RedOrb_schlesien_guard","name":"Red Orb: Wheelen","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"schlesien_guard"}},{"itemId":685149,"className":"RedOrb_dog_of_king","name":"Red Orb: Venucelos","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"dog_of_king"}},{"itemId":685150,"className":"RedOrb_wolf_statue_bow","name":"Red Orb: Vikaras Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"wolf_statue_bow"}},{"itemId":685151,"className":"RedOrb_Karas_mage","name":"Red Orb: Karas Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Karas_mage"}},{"itemId":685152,"className":"RedOrb_schlesien_darkmage","name":"Red Orb: Medakia","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"schlesien_darkmage"}},{"itemId":685153,"className":"RedOrb_schlesien_claw","name":"Red Orb: Rusrat","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"schlesien_claw"}},{"itemId":685154,"className":"RedOrb_schlesien_heavycavarly","name":"Red Orb: Mauros","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"schlesien_heavycavarly"}},{"itemId":685155,"className":"RedOrb_haming_orange","name":"Red Orb: Orange Hamming","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"haming_orange"}},{"itemId":685156,"className":"RedOrb_Popolion_Orange","name":"Red Orb: Orange Popolion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Popolion_Orange"}},{"itemId":685157,"className":"RedOrb_Spion_mage","name":"Red Orb: Spion Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Spion_mage"}},{"itemId":685158,"className":"RedOrb_ellom_violet","name":"Red Orb: Farm Ellum","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"ellom_violet"}},{"itemId":685159,"className":"RedOrb_Kepo_seed_violet","name":"Red Orb: Farm Keposeed","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Kepo_seed_violet"}},{"itemId":685160,"className":"RedOrb_operor_white","name":"Red Orb: White Operor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"operor_white"}},{"itemId":685161,"className":"RedOrb_Cronewt_bow","name":"Red Orb: Cronewt Poisoned Needler","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Cronewt_bow"}},{"itemId":685162,"className":"RedOrb_Cronewt_mage","name":"Red Orb: Cronewt Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Cronewt_mage"}},{"itemId":685163,"className":"RedOrb_Ashrong","name":"Red Orb: Ashrong","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Ashrong"}},{"itemId":685164,"className":"RedOrb_dandel_orange","name":"Red Orb: Orange Dandel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"dandel_orange"}},{"itemId":685165,"className":"RedOrb_Kepari_mage","name":"Red Orb: Kepari Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Kepari_mage"}},{"itemId":685166,"className":"RedOrb_geppetto_white","name":"Red Orb: White Geppetto","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"geppetto_white"}},{"itemId":685167,"className":"RedOrb_pino_white","name":"Red Orb: White Pino","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"pino_white"}},{"itemId":685168,"className":"RedOrb_TreeAmbulo","name":"Red Orb: Tree Ambulo","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"TreeAmbulo"}},{"itemId":685169,"className":"RedOrb_Tama","name":"Red Orb: Tama","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Tama"}},{"itemId":685170,"className":"RedOrb_stub_tree","name":"Red Orb: Stumpy Tree","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"stub_tree"}},{"itemId":685171,"className":"RedOrb_Long_Arm","name":"Red Orb: Long-Branched Tree","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Long_Arm"}},{"itemId":685172,"className":"RedOrb_Lizardman","name":"Red Orb: Lizardman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Lizardman"}},{"itemId":685173,"className":"RedOrb_InfroBurk","name":"Red Orb: Infroburk","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"InfroBurk"}},{"itemId":685174,"className":"RedOrb_stub_tree_mage","name":"Red Orb: Stumpy Tree Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"stub_tree_mage"}},{"itemId":685175,"className":"RedOrb_Zolem","name":"Red Orb: Zolem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Zolem"}},{"itemId":685176,"className":"RedOrb_hook","name":"Red Orb: Old Hook","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"hook"}},{"itemId":685177,"className":"RedOrb_Flying_Flog","name":"Red Orb: Winged Frog","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Flying_Flog"}},{"itemId":685178,"className":"RedOrb_Gravegolem","name":"Red Orb: Gravegolem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Gravegolem"}},{"itemId":685179,"className":"RedOrb_Hallowventor","name":"Red Orb: Hallowventer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Hallowventor"}},{"itemId":685180,"className":"RedOrb_Cockatries","name":"Red Orb: Cockatrice","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Cockatries"}},{"itemId":685181,"className":"RedOrb_Big_Cockatries","name":"Red Orb: Cockat","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Big_Cockatries"}},{"itemId":685182,"className":"RedOrb_FD_bubbe_chaser","name":"Red Orb: Mine Predator","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_bubbe_chaser"}},{"itemId":685183,"className":"RedOrb_FD_bubbe_chaser_hidden","name":"Red Orb: Vubbe Chaser","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_bubbe_chaser_hidden"}},{"itemId":685184,"className":"RedOrb_FD_minos_mage","name":"Red Orb: Minos Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_minos_mage"}},{"itemId":685185,"className":"RedOrb_FD_bubbe_mage_fire","name":"Red Orb: Mine Fire Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_bubbe_mage_fire"}},{"itemId":685186,"className":"RedOrb_FD_Goblin_Archer_red","name":"Red Orb: Mine Vubbe Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_Goblin_Archer_red"}},{"itemId":685187,"className":"RedOrb_FD_bubbe_fighter","name":"Red Orb: Vubbe Warrior","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_bubbe_fighter"}},{"itemId":685188,"className":"RedOrb_FD_bubbe_mage_ice","name":"Red Orb: Vubbe Ice Wizard","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_bubbe_mage_ice"}},{"itemId":685189,"className":"RedOrb_FD_Stoulet_mage","name":"Red Orb: Stoulet Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_Stoulet_mage"}},{"itemId":685190,"className":"RedOrb_FD_Bat_big","name":"Red Orb: Giant Bat","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_Bat_big"}},{"itemId":685191,"className":"RedOrb_ellom","name":"Red Orb: Ellom","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"ellom"}},{"itemId":685192,"className":"RedOrb_pappus_kepa","name":"Red Orb: Old Kepa","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"pappus_kepa"}},{"itemId":685193,"className":"RedOrb_Bushspider","name":"Red Orb: Bushspider","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Bushspider"}},{"itemId":685194,"className":"RedOrb_Fisherman","name":"Red Orb: Fisherman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Fisherman"}},{"itemId":685195,"className":"RedOrb_ellomago","name":"Red Orb: Ellomago","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"ellomago"}},{"itemId":685196,"className":"RedOrb_Ridimed","name":"Red Orb: Ridimed","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Ridimed"}},{"itemId":685197,"className":"RedOrb_Sakmoli","name":"Red Orb: Sakmoli","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Sakmoli"}},{"itemId":685198,"className":"RedOrb_jellyfish_red","name":"Red Orb: Red Meduja","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"jellyfish_red"}},{"itemId":685199,"className":"RedOrb_HighBube_Spear","name":"Red Orb: High Vubbe","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"HighBube_Spear"}},{"itemId":685200,"className":"RedOrb_HighBube_Archer","name":"Red Orb: High Vubbe Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"HighBube_Archer"}},{"itemId":685201,"className":"RedOrb_arburn_pokubu_green","name":"Red Orb: Green Pokubon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"arburn_pokubu_green"}},{"itemId":685202,"className":"RedOrb_puragi_blue","name":"Red Orb: Blue Puragi","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"puragi_blue"}},{"itemId":685203,"className":"RedOrb_honey_bee","name":"Red Orb: Bite","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"honey_bee"}},{"itemId":685204,"className":"RedOrb_mushroom_ent_blue","name":"Red Orb: Big Blue Griba","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"mushroom_ent_blue"}},{"itemId":685205,"className":"RedOrb_Fisherman_red","name":"Red Orb: Red Fisherman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Fisherman_red"}},{"itemId":685206,"className":"RedOrb_Fire_Dragon","name":"Red Orb: Drake","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Fire_Dragon"}},{"itemId":685207,"className":"RedOrb_rubblem","name":"Red Orb: Rubblem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"rubblem"}},{"itemId":685208,"className":"RedOrb_flight_hope","name":"Red Orb: Phyracon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"flight_hope"}},{"itemId":685209,"className":"RedOrb_Armory","name":"Red Orb: Armori","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Armory"}},{"itemId":685210,"className":"RedOrb_RudasJack","name":"Red Orb: Ludasjack","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"RudasJack"}},{"itemId":685211,"className":"RedOrb_tower_of_firepuppet","name":"Red Orb: Shaman Doll","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"tower_of_firepuppet"}},{"itemId":685212,"className":"RedOrb_blindlem","name":"Red Orb: Blindlem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"blindlem"}},{"itemId":685213,"className":"RedOrb_belegg","name":"Red Orb: Belegg","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"belegg"}},{"itemId":685214,"className":"RedOrb_slime_elite","name":"Red Orb: Experimental Slime","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"slime_elite"}},{"itemId":685215,"className":"RedOrb_Chromadog","name":"Red Orb: Chromadog","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Chromadog"}},{"itemId":685216,"className":"RedOrb_Chromadog_Elite","name":"Red Orb: Chromadox","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Chromadog_Elite"}},{"itemId":685217,"className":"RedOrb_arma","name":"Red Orb: Arma","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"arma"}},{"itemId":685218,"className":"RedOrb_InfroRocktor_red","name":"Red Orb: Red Infrorocktor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"InfroRocktor_red"}},{"itemId":685219,"className":"RedOrb_flask_mage","name":"Red Orb: Flask Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"flask_mage"}},{"itemId":685220,"className":"RedOrb_TerraNymph_mage","name":"Red Orb: Terra Imp Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"TerraNymph_mage"}},{"itemId":685221,"className":"RedOrb_pyran","name":"Red Orb: Pyran","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"pyran"}},{"itemId":685222,"className":"RedOrb_flask","name":"Red Orb: Flask","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"flask"}},{"itemId":685223,"className":"RedOrb_New_desmodus_black","name":"Red Orb: Black Desmodus","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"New_desmodus_black"}},{"itemId":685224,"className":"RedOrb_minivern","name":"Red Orb: Minivern","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"minivern"}},{"itemId":685225,"className":"RedOrb_minivern_Elite","name":"Red Orb: Large Minivern","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"minivern_Elite"}},{"itemId":685226,"className":"RedOrb_wizards_marmotte","name":"Red Orb: Wizard Shaman Doll","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"wizards_marmotte"}},{"itemId":685227,"className":"RedOrb_tower_of_firepuppet_black","name":"Red Orb: Black Shaman Doll","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"tower_of_firepuppet_black"}},{"itemId":685228,"className":"RedOrb_dimmer","name":"Red Orb: Dimmer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"dimmer"}},{"itemId":685229,"className":"RedOrb_Fire_Dragon_purple","name":"Red Orb: Black Drake","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Fire_Dragon_purple"}},{"itemId":685230,"className":"RedOrb_Meleech","name":"Red Orb: Meleech","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Meleech"}},{"itemId":685231,"className":"RedOrb_RavineLerva","name":"Red Orb: Ravinelarva","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"RavineLerva"}},{"itemId":685232,"className":"RedOrb_wood_goblin","name":"Red Orb: Wood Goblin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"wood_goblin"}},{"itemId":685233,"className":"RedOrb_TreeGool","name":"Red Orb: Treegool","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"TreeGool"}},{"itemId":685234,"className":"RedOrb_Cronewt","name":"Red Orb: Cronewt","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Cronewt"}},{"itemId":685235,"className":"RedOrb_InfroHoglan","name":"Red Orb: Infro Hoglan","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"InfroHoglan"}},{"itemId":685236,"className":"RedOrb_duckey","name":"Red Orb: Ducky","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"duckey"}},{"itemId":685237,"className":"RedOrb_raider","name":"Red Orb: Kepa Raider","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"raider"}},{"itemId":685238,"className":"RedOrb_Infroholder","name":"Red Orb: Infro Holder","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Infroholder"}},{"itemId":685239,"className":"RedOrb_Kepari","name":"Red Orb: Kepari","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Kepari"}},{"itemId":685240,"className":"RedOrb_kepo","name":"Red Orb: Kepo","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"kepo"}},{"itemId":685241,"className":"RedOrb_Kepo_seed","name":"Red Orb: Keposeed","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Kepo_seed"}},{"itemId":685242,"className":"RedOrb_wood_goblin_red","name":"Red Orb: Red Wood Goblin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"wood_goblin_red"}},{"itemId":685243,"className":"RedOrb_rondo_red","name":"Red Orb: Red Rondo","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"rondo_red"}},{"itemId":685244,"className":"RedOrb_Rubabos_red","name":"Red Orb: Red Rubabos","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Rubabos_red"}},{"itemId":685245,"className":"RedOrb_Triffid","name":"Red Orb: Tripede","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Triffid"}},{"itemId":685246,"className":"RedOrb_kodomor","name":"Red Orb: Kodomor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"kodomor"}},{"itemId":685247,"className":"RedOrb_Romor","name":"Red Orb: Lomor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Romor"}},{"itemId":685248,"className":"RedOrb_lapasape_bow","name":"Red Orb: Lapasape Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"lapasape_bow"}},{"itemId":685249,"className":"RedOrb_Siaulav_mage","name":"Red Orb: Siaulav Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Siaulav_mage"}},{"itemId":685250,"className":"RedOrb_Prisonfighter","name":"Red Orb: Prison Fighter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Prisonfighter"}},{"itemId":685251,"className":"RedOrb_kowak","name":"Red Orb: Kowak","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"kowak"}},{"itemId":685252,"className":"RedOrb_Stoulet_bow","name":"Red Orb: Stoulet Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Stoulet_bow"}},{"itemId":685253,"className":"RedOrb_hook_old","name":"Red Orb: Rusty Old Hook","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"hook_old"}},{"itemId":685254,"className":"RedOrb_TreeAmbulo_red","name":"Red Orb: Red Tree Ambulo","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"TreeAmbulo_red"}},{"itemId":685255,"className":"RedOrb_Lichenclops_mage","name":"Red Orb: Lichenclops Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Lichenclops_mage"}},{"itemId":685256,"className":"RedOrb_FD_NightMaiden","name":"Red Orb: Night Maiden","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_NightMaiden"}},{"itemId":685257,"className":"RedOrb_FD_TerraNymph","name":"Red Orb: Terra Imp","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_TerraNymph"}},{"itemId":685258,"className":"RedOrb_FD_raffly_blue","name":"Red Orb: Blue Raffly","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_raffly_blue"}},{"itemId":685259,"className":"RedOrb_TerraNymph_bow","name":"Red Orb: Terra Imp Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"TerraNymph_bow"}},{"itemId":685260,"className":"RedOrb_Colifly","name":"Red Orb: Colifly","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Colifly"}},{"itemId":685261,"className":"RedOrb_loftlem_blue","name":"Red Orb: Pure Loftlem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"loftlem_blue"}},{"itemId":685262,"className":"RedOrb_anchor_mage","name":"Red Orb: Darkness Anchor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"anchor_mage"}},{"itemId":685263,"className":"RedOrb_Velwriggler_blue","name":"Red Orb: Blue Velwriggler","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Velwriggler_blue"}},{"itemId":685264,"className":"RedOrb_Stoulet_blue","name":"Red Orb: Blue Stoulet","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Stoulet_blue"}},{"itemId":685265,"className":"RedOrb_NightMaiden_mage","name":"Red Orb: Night Maiden","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"NightMaiden_mage"}},{"itemId":685266,"className":"RedOrb_InfroHoglan_red","name":"Red Orb: Red Infro Hoglan","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"InfroHoglan_red"}},{"itemId":685267,"className":"RedOrb_Infro_blud_red","name":"Red Orb: Red Infro Blood","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Infro_blud_red"}},{"itemId":685268,"className":"RedOrb_Burialer","name":"Red Orb: Burialer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Burialer"}},{"itemId":685269,"className":"RedOrb_Pawnd_purple","name":"Red Orb: Black Pawnd","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Pawnd_purple"}},{"itemId":685270,"className":"RedOrb_Pawndel_blue","name":"Red Orb: Blue Pawndel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Pawndel_blue"}},{"itemId":685271,"className":"RedOrb_NightMaiden_bow","name":"Red Orb: Darkness Maiden","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"NightMaiden_bow"}},{"itemId":685272,"className":"RedOrb_Lizardman_orange","name":"Red Orb: Orange Lizardman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Lizardman_orange"}},{"itemId":685273,"className":"RedOrb_Tama_orange","name":"Red Orb: Orange Tama","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Tama_orange"}},{"itemId":685274,"className":"RedOrb_Rambear_bow","name":"Red Orb: Rambear Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Rambear_bow"}},{"itemId":685275,"className":"RedOrb_Stub_tree_orange","name":"Red Orb: Orange Stumpy Tree","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Stub_tree_orange"}},{"itemId":685276,"className":"RedOrb_Cyst","name":"Red Orb: Cyst","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Cyst"}},{"itemId":685277,"className":"RedOrb_Flying_Flog_green","name":"Red Orb: Green Winged Frog","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Flying_Flog_green"}},{"itemId":685278,"className":"RedOrb_tree_root_mole_pink","name":"Red Orb: Pink Root Mole","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"tree_root_mole_pink"}},{"itemId":685279,"className":"RedOrb_Carcashu_green","name":"Red Orb: Green Carcashu","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Carcashu_green"}},{"itemId":685280,"className":"RedOrb_Melatanun","name":"Red Orb: Melatinun","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Melatanun"}},{"itemId":685281,"className":"RedOrb_yognome_yellow","name":"Red Orb: Yellow Yognome","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"yognome_yellow"}},{"itemId":685282,"className":"RedOrb_Egnome_yellow","name":"Red Orb: Yellow Egnome","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Egnome_yellow"}},{"itemId":685283,"className":"RedOrb_Gazing_Golem_yellow","name":"Red Orb: Yellow Gazing Golem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Gazing_Golem_yellow"}},{"itemId":685284,"className":"RedOrb_Moya_yellow","name":"Red Orb: Yellow Moya","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Moya_yellow"}},{"itemId":685285,"className":"RedOrb_defender_spider","name":"Red Orb: Guardian Spider","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"defender_spider"}},{"itemId":685286,"className":"RedOrb_Nuka","name":"Red Orb: Nuka","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Nuka"}},{"itemId":685287,"className":"RedOrb_Elet","name":"Red Orb: Elet","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Elet"}},{"itemId":685288,"className":"RedOrb_Harugal","name":"Red Orb: Harugal","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Harugal"}},{"itemId":685289,"className":"RedOrb_Socket","name":"Red Orb: Socket","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Socket"}},{"itemId":685290,"className":"RedOrb_mushroom_ent_green","name":"Red Orb: Big Green Griba","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"mushroom_ent_green"}},{"itemId":685291,"className":"RedOrb_Elma","name":"Red Orb: Elma","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Elma"}},{"itemId":685292,"className":"RedOrb_Nnuo","name":"Red Orb: Nuo","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Nnuo"}},{"itemId":685293,"className":"RedOrb_Hohen_mane","name":"Red Orb: Hohen Mane","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Hohen_mane"}},{"itemId":685294,"className":"RedOrb_Hohen_ritter","name":"Red Orb: Hohen Ritter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Hohen_ritter"}},{"itemId":685295,"className":"RedOrb_hohen_barkle","name":"Red Orb: Hohen Barkle","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"hohen_barkle"}},{"itemId":685296,"className":"RedOrb_Hohen_orben","name":"Red Orb: Hohen Orben","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Hohen_orben"}},{"itemId":685297,"className":"RedOrb_Hohen_gulak","name":"Red Orb: Hohen Gulak","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Hohen_gulak"}},{"itemId":685298,"className":"RedOrb_Hohen_mage","name":"Red Orb: Hohen Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Hohen_mage"}},{"itemId":685299,"className":"RedOrb_Mushroom_boy_green","name":"Red Orb: Green Griba","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Mushroom_boy_green"}},{"itemId":685300,"className":"RedOrb_lantern_mushroom_orange","name":"Red Orb: Orange Gribaru","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"lantern_mushroom_orange"}},{"itemId":685301,"className":"RedOrb_Siaulamb","name":"Red Orb: Siaulamb Lagoon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Siaulamb"}},{"itemId":685302,"className":"RedOrb_Pendinmire","name":"Red Orb: Pendinmire","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Pendinmire"}},{"itemId":685303,"className":"RedOrb_rabbee","name":"Red Orb: Rabbee","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"rabbee"}},{"itemId":685304,"className":"RedOrb_Honeybean","name":"Red Orb: Honeybean","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Honeybean"}},{"itemId":685305,"className":"RedOrb_Siaulogre","name":"Red Orb: Siaulogre","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Siaulogre"}},{"itemId":685306,"className":"RedOrb_Spion","name":"Red Orb: Spion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Spion"}},{"itemId":685307,"className":"RedOrb_chupaluka","name":"Red Orb: Chupaluka","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"chupaluka"}},{"itemId":685308,"className":"RedOrb_honeymeli","name":"Red Orb: Honeymeli","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"honeymeli"}},{"itemId":685309,"className":"RedOrb_Siaulago","name":"Red Orb: Siaulamb Warrior","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Siaulago"}},{"itemId":685310,"className":"RedOrb_zigri_red","name":"Red Orb: Red Zigri","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"zigri_red"}},{"itemId":685311,"className":"RedOrb_mushroom_ent_black","name":"Red Orb: Big Black Griba","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"mushroom_ent_black"}},{"itemId":685312,"className":"RedOrb_Big_Siaulamb","name":"Red Orb: Big Siaulamb","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Big_Siaulamb"}},{"itemId":685313,"className":"RedOrb_Siaumire","name":"Red Orb: Siaulamb Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Siaumire"}},{"itemId":685314,"className":"RedOrb_infro_Blud","name":"Red Orb: Infro Blood","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"infro_Blud"}},{"itemId":685315,"className":"RedOrb_Shardstatue","name":"Red Orb: Shardstatue","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Shardstatue"}},{"itemId":685316,"className":"RedOrb_Siaulav","name":"Red Orb: Siaulav","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Siaulav"}},{"itemId":685317,"className":"RedOrb_FD_Firent_yellow","name":"Red Orb: Confined Firent","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_Firent_yellow"}},{"itemId":685318,"className":"RedOrb_FD_yognome","name":"Red Orb: Confined Yognome","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_yognome"}},{"itemId":685319,"className":"RedOrb_FD_Long_Arm","name":"Red Orb: Confined Long-Branched Tree","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_Long_Arm"}},{"itemId":685320,"className":"RedOrb_Infrogalas_bow","name":"Red Orb: Confined Infrogalas Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_Infrogalas_bow"}},{"itemId":685321,"className":"RedOrb_Templeslave_sword","name":"Red Orb: Temple Slave Assassin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Templeslave_sword"}},{"itemId":685322,"className":"RedOrb_Wendigo_archer","name":"Red Orb: Wendigo Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Wendigo_archer"}},{"itemId":685323,"className":"RedOrb_Wendigo_magician","name":"Red Orb: Wendigo Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Wendigo_magician"}},{"itemId":685324,"className":"RedOrb_Lizardman_mage","name":"Red Orb: Lizardman Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Lizardman_mage"}},{"itemId":685325,"className":"RedOrb_Minos","name":"Red Orb: Minos","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Minos"}},{"itemId":685326,"className":"RedOrb_Minos_bow","name":"Red Orb: Minos Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Minos_bow"}},{"itemId":685327,"className":"RedOrb_Hallowventor_mage","name":"Red Orb: Hallowventer Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Hallowventor_mage"}},{"itemId":685328,"className":"RedOrb_Hallowventor_bow","name":"Red Orb: Hallowventer Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Hallowventor_bow"}},{"itemId":685329,"className":"RedOrb_Gravegolem_blue","name":"Red Orb: Blue Gravegolem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Gravegolem_blue"}},{"itemId":685330,"className":"RedOrb_tombstone_turtle","name":"Red Orb: Rocktor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"tombstone_turtle"}},{"itemId":685331,"className":"RedOrb_Big_Cockatries_green","name":"Red Orb: Green Cockat","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Big_Cockatries_green"}},{"itemId":685332,"className":"RedOrb_velwriggler_mage_green","name":"Red Orb: Green Velwriggler Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"velwriggler_mage_green"}},{"itemId":685333,"className":"RedOrb_wood_lwa","name":"Red Orb: Woodluwa","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"wood_lwa"}},{"itemId":685334,"className":"RedOrb_Infrogalas_mage","name":"Red Orb: Infrogalas Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Infrogalas_mage"}},{"itemId":685335,"className":"RedOrb_Chafperor_mage","name":"Red Orb: Chafperor Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Chafperor_mage"}},{"itemId":685336,"className":"RedOrb_Pandroceum","name":"Red Orb: Pendrosium","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Pandroceum"}},{"itemId":685337,"className":"RedOrb_Cire_mage","name":"Red Orb: Cire Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Cire_mage"}},{"itemId":685338,"className":"RedOrb_loftlem_green","name":"Red Orb: Green Loftlem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"loftlem_green"}},{"itemId":685339,"className":"RedOrb_Hepatica_green","name":"Red Orb: Liverwort","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Hepatica_green"}},{"itemId":685340,"className":"RedOrb_Stonacorn","name":"Red Orb: Stonacon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Stonacorn"}},{"itemId":685341,"className":"RedOrb_Malstatue","name":"Red Orb: Malstatue","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Malstatue"}},{"itemId":685342,"className":"RedOrb_velaphid_red","name":"Red Orb: Velaphid","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"velaphid_red"}},{"itemId":685343,"className":"RedOrb_pumpflap","name":"Red Orb: Pumpleflap","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"pumpflap"}},{"itemId":685344,"className":"RedOrb_Kowak_orange","name":"Red Orb: Orange Kowak","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Kowak_orange"}},{"itemId":685345,"className":"RedOrb_raider_bow","name":"Red Orb: Kepa Raider Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"raider_bow"}},{"itemId":685346,"className":"RedOrb_anchor","name":"Red Orb: Anchor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"anchor"}},{"itemId":685347,"className":"RedOrb_velffigy","name":"Red Orb: Velfiggy","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"velffigy"}},{"itemId":685348,"className":"RedOrb_Glyquare","name":"Red Orb: Glyquare","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Glyquare"}},{"itemId":685349,"className":"RedOrb_Colifly_black","name":"Red Orb: Black Colifly","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Colifly_black"}},{"itemId":685350,"className":"RedOrb_Jukopus_gray","name":"Red Orb: Gray Jukopus","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Jukopus_gray"}},{"itemId":685351,"className":"RedOrb_Rambear","name":"Red Orb: Rambear","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Rambear"}},{"itemId":685352,"className":"RedOrb_goblin2_wand1","name":"Red Orb: Goblin Wizard","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"goblin2_wand1"}},{"itemId":685353,"className":"RedOrb_Bavon","name":"Red Orb: Bavon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Bavon"}},{"itemId":685354,"className":"RedOrb_Moya","name":"Red Orb: Moya","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Moya"}},{"itemId":685355,"className":"RedOrb_saltisdaughter_mage","name":"Red Orb: Saltisdaughter Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"saltisdaughter_mage"}},{"itemId":685356,"className":"RedOrb_Moyabu","name":"Red Orb: Moyabu","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Moyabu"}},{"itemId":685357,"className":"RedOrb_Denden","name":"Red Orb: Denden","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Denden"}},{"itemId":685358,"className":"RedOrb_goblin2_sword","name":"Red Orb: Goblin Warrior","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"goblin2_sword"}},{"itemId":685359,"className":"RedOrb_Lemur","name":"Red Orb: Lemur","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Lemur"}},{"itemId":685360,"className":"RedOrb_goblin2_hammer","name":"Red Orb: Goblin Charger","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"goblin2_hammer"}},{"itemId":685361,"className":"RedOrb_goblin2_wand3","name":"Red Orb: Goblin Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"goblin2_wand3"}},{"itemId":685362,"className":"RedOrb_Rubabos","name":"Red Orb: Rubabos","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Rubabos"}},{"itemId":685363,"className":"RedOrb_Repusbunny","name":"Red Orb: Lepusbunny","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Repusbunny"}},{"itemId":685364,"className":"RedOrb_Lemuria","name":"Red Orb: Lemuria","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Lemuria"}},{"itemId":685365,"className":"RedOrb_saltisdaughter_bow","name":"Red Orb: Saltisdaughter Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"saltisdaughter_bow"}},{"itemId":685366,"className":"RedOrb_ticen_bow","name":"Red Orb: Ticen Crossbow Soldier","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"ticen_bow"}},{"itemId":685367,"className":"RedOrb_Rambear_mage","name":"Red Orb: Rambear Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Rambear_mage"}},{"itemId":685368,"className":"RedOrb_Hepatica_purple","name":"Red Orb: Black Liverwort","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Hepatica_purple"}},{"itemId":685369,"className":"RedOrb_Candlespider_yellow","name":"Red Orb: Yellow Candle Spider","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Candlespider_yellow"}},{"itemId":685370,"className":"RedOrb_Moyabu_yellow","name":"Red Orb: Yellow Moyabu","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Moyabu_yellow"}},{"itemId":685371,"className":"RedOrb_ticen_mage","name":"Red Orb: Ticen Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"ticen_mage"}},{"itemId":685372,"className":"RedOrb_Socket_bow","name":"Red Orb: Socket Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Socket_bow"}},{"itemId":685373,"className":"RedOrb_velffigy_green","name":"Red Orb: Corrupt Velfiggy","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"velffigy_green"}},{"itemId":685374,"className":"RedOrb_Socket_mage","name":"Red Orb: Socket Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Socket_mage"}},{"itemId":685375,"className":"RedOrb_pyran_green","name":"Red Orb: Corrupt Pyran","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"pyran_green"}},{"itemId":685376,"className":"RedOrb_Deadbornscab_bow_green","name":"Red Orb: Corrupt Deadborn Scap Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Deadbornscab_bow_green"}},{"itemId":685377,"className":"RedOrb_Deadbornscab_green","name":"Red Orb: Corrupt Deadborn Scap","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Deadbornscab_green"}},{"itemId":685378,"className":"RedOrb_ticen_blue","name":"Red Orb: Blue Ticen","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"ticen_blue"}},{"itemId":685379,"className":"RedOrb_ticen_bow_blue","name":"Red Orb: Blue Ticen Crossbow Soldier","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"ticen_bow_blue"}},{"itemId":685380,"className":"RedOrb_Socket_red","name":"Red Orb: Red Socket Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Socket_red"}},{"itemId":685381,"className":"RedOrb_Socket_bow_purple","name":"Red Orb: Socket Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Socket_bow_purple"}},{"itemId":685382,"className":"RedOrb_ticen_mage_blue","name":"Red Orb: Blue Ticen Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"ticen_mage_blue"}},{"itemId":685383,"className":"RedOrb_Chafperor_purple","name":"Red Orb: Red Chafperor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Chafperor_purple"}},{"itemId":685384,"className":"RedOrb_Chafperor_mage_purple","name":"Red Orb: Red Chafperor Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Chafperor_mage_purple"}},{"itemId":685385,"className":"RedOrb_dandel_white","name":"Red Orb: White Dandel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"dandel_white"}},{"itemId":685386,"className":"RedOrb_Rambear_brown","name":"Red Orb: Brown Rambear","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Rambear_brown"}},{"itemId":685387,"className":"RedOrb_Rambear_bow_brown","name":"Red Orb: Brown Rambear Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Rambear_bow_brown"}},{"itemId":685388,"className":"RedOrb_Rambear_mage_brown","name":"Red Orb: Brown Rambear Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Rambear_mage_brown"}},{"itemId":685389,"className":"RedOrb_Deadbornscab_red","name":"Red Orb: Red Deadborn Scap","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Deadbornscab_red"}},{"itemId":685390,"className":"RedOrb_Deadbornscab_mage_red","name":"Red Orb: Red Deadborn Scap Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Deadbornscab_mage_red"}},{"itemId":685391,"className":"RedOrb_Infroholder_green","name":"Red Orb: Green Infro Holder","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Infroholder_green"}},{"itemId":685392,"className":"RedOrb_Kepari_green","name":"Red Orb: Green Kepari","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Kepari_green"}},{"itemId":685393,"className":"RedOrb_Kepari_mage_green","name":"Red Orb: Green Kepari Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Kepari_mage_green"}},{"itemId":685394,"className":"RedOrb_Templeslave_blue","name":"Red Orb: Blue Temple Slave","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Templeslave_blue"}},{"itemId":685395,"className":"RedOrb_flask_blue","name":"Red Orb: Blue Flask","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"flask_blue"}},{"itemId":685396,"className":"RedOrb_Minos_orange","name":"Red Orb: Orange Minos","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Minos_orange"}},{"itemId":685397,"className":"RedOrb_Infroholder_bow_red","name":"Red Orb: Red Infro Holder Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Infroholder_bow_red"}},{"itemId":685398,"className":"RedOrb_minos_mage_green","name":"Red Orb: Green Minos Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"minos_mage_green"}},{"itemId":685399,"className":"RedOrb_Infroholder_red","name":"Red Orb: Red Infro Holder","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Infroholder_red"}},{"itemId":685400,"className":"RedOrb_Socket_purple","name":"Red Orb: Blue Socket","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Socket_purple"}},{"itemId":685401,"className":"RedOrb_Infroholder_mage_green","name":"Red Orb: Green Infro Holder Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Infroholder_mage_green"}},{"itemId":685402,"className":"RedOrb_saltisdaughter_red","name":"Red Orb: Red Saltisdaughter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"saltisdaughter_red"}},{"itemId":685403,"className":"RedOrb_saltisdaughter_bow_green","name":"Red Orb: Green Saltisdaughter Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"saltisdaughter_bow_green"}},{"itemId":685404,"className":"RedOrb_Repusbunny_mage_green","name":"Red Orb: Green Lepusbunny Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Repusbunny_mage_green"}},{"itemId":685405,"className":"RedOrb_groll_white","name":"Red Orb: White Groll","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"groll_white"}},{"itemId":685406,"className":"RedOrb_saltisdaughter_mage_red","name":"Red Orb: Red Saltisdaughter Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"saltisdaughter_mage_red"}},{"itemId":685407,"className":"RedOrb_Repusbunny_green","name":"Red Orb: Green Lepusbunny Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Repusbunny_green"}},{"itemId":685408,"className":"RedOrb_Repusbunny_bow_green","name":"Red Orb: Green Lepusbunny Assassin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Repusbunny_bow_green"}},{"itemId":685409,"className":"RedOrb_Siaulav_blue","name":"Red Orb: Blue Siaulav","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Siaulav_blue"}},{"itemId":685410,"className":"RedOrb_Siaulav_mage_blue","name":"Red Orb: Blue Siaulav Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Siaulav_mage_blue"}},{"itemId":685411,"className":"RedOrb_Siaulav_bow_blue","name":"Red Orb: Blue Siaulav Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Siaulav_bow_blue"}},{"itemId":685412,"className":"RedOrb_lapasape_blue","name":"Red Orb: Blue Lapasape","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"lapasape_blue"}},{"itemId":685413,"className":"RedOrb_FD_Infrogalas_bow","name":"Red Orb: Confined Infrogalas Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"FD_Infrogalas_bow"}},{"itemId":685414,"className":"RedOrb_Papayam","name":"Red Orb: Papayam","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Papayam"}},{"itemId":685415,"className":"RedOrb_truffle_red","name":"Red Orb: Red Truffle","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"truffle_red"}},{"itemId":685416,"className":"RedOrb_Corpse_Flower_green","name":"Red Orb: Green Corpse Flower","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Corpse_Flower_green"}},{"itemId":685417,"className":"RedOrb_Spion_mage_blue","name":"Red Orb: Blue Spion Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Spion_mage_blue"}},{"itemId":685418,"className":"RedOrb_Spion_blue","name":"Red Orb: Blue Spion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Spion_blue"}},{"itemId":685419,"className":"RedOrb_Spion_bow_blue","name":"Red Orb: Blue Spion Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Spion_bow_blue"}},{"itemId":685420,"className":"RedOrb_Stoulet_gray","name":"Red Orb: Gray Stoulet","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Stoulet_gray"}},{"itemId":685421,"className":"RedOrb_Siaulav_orange","name":"Red Orb: Orange Siaulav","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Siaulav_orange"}},{"itemId":685422,"className":"RedOrb_Siaulav_bow_orange","name":"Red Orb: Orange Siaulav Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Siaulav_bow_orange"}},{"itemId":685423,"className":"RedOrb_Hohen_ritter_green","name":"Red Orb: Green Hohen Ritter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Hohen_ritter_green"}},{"itemId":685424,"className":"RedOrb_hohen_barkle_green","name":"Red Orb: Green Hohen Barkle","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"hohen_barkle_green"}},{"itemId":685425,"className":"RedOrb_Hohen_mage_red","name":"Red Orb: Red Hohen Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Hohen_mage_red"}},{"itemId":685426,"className":"RedOrb_Hohen_mane_brown","name":"Red Orb: Brown Hohen Main","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Hohen_mane_brown"}},{"itemId":685427,"className":"RedOrb_Hohen_orben_green","name":"Red Orb: Green Hohen Orben","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Hohen_orben_green"}},{"itemId":685428,"className":"RedOrb_Harugal_brown","name":"Red Orb: Brown Harugal","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Harugal_brown"}},{"itemId":685429,"className":"RedOrb_Wendigo_archer_blue","name":"Red Orb: Blue Wendigo Searcher","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Wendigo_archer_blue"}},{"itemId":685430,"className":"RedOrb_minos_bow_orange","name":"Red Orb: Orange Minos Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"minos_bow_orange"}},{"itemId":685431,"className":"RedOrb_Colifly_yellow","name":"Red Orb: Yellow Coliflower","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Colifly_yellow"}},{"itemId":685432,"className":"RedOrb_saltisdaughter_green","name":"Red Orb: Green Saltisdaughter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"saltisdaughter_green"}},{"itemId":685433,"className":"RedOrb_Colifly_mage_black","name":"Red Orb: Black Coliflower Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Colifly_mage_black"}},{"itemId":685434,"className":"RedOrb_Colifly_bow_black","name":"Red Orb: Black Coliflower Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Colifly_bow_black"}},{"itemId":685436,"className":"RedOrb_colimen_brown","name":"Red Orb: Brown Colimen","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"colimen_brown"}},{"itemId":685437,"className":"RedOrb_colimen_mage_brown","name":"Red Orb: Brown Colimen Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"colimen_mage_brown"}},{"itemId":685438,"className":"RedOrb_TerraNymph_blue","name":"Red Orb: Blue Terra Imp","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"TerraNymph_blue"}},{"itemId":685440,"className":"RedOrb_lapasape_mage_blue","name":"Red Orb: Blue Lapasape Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"lapasape_mage_blue"}},{"itemId":685441,"className":"RedOrb_colimen_blue","name":"Red Orb: Blue Colimen","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"colimen_blue"}},{"itemId":685442,"className":"RedOrb_Repusbunny_red","name":"Red Orb: Red Lepusbunny","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Repusbunny_ren"}},{"itemId":685443,"className":"RedOrb_Repusbunny_bow_red","name":"Red Orb: Red Lepusbunny Assassin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Repusbunny_bow_red"}},{"itemId":685444,"className":"RedOrb_Hohen_mane_purple","name":"Red Orb: Blue Hohen Main","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Hohen_mane_purple"}},{"itemId":685445,"className":"RedOrb_Hohen_mage_blue","name":"Red Orb: Blue Hohen Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Hohen_mage_blue"}},{"itemId":685446,"className":"RedOrb_Cronewt_blue","name":"Red Orb: Blue Cronewt","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Cronewt_blue"}},{"itemId":685447,"className":"RedOrb_lapasape_bow_blue","name":"Red Orb: Blue Lapasape Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"lapasape_bow_blue"}},{"itemId":685448,"className":"RedOrb_Hohen_ritter_purple","name":"Red Orb: Blue Hohen Ritter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Hohen_ritter_purple"}},{"itemId":685449,"className":"RedOrb_Cronewt_bow_blue","name":"Red Orb: Blue Cronewt Poisoned Needler","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Cronewt_bow_blue"}},{"itemId":685450,"className":"RedOrb_hohen_barkle_blue","name":"Red Orb: Blue Hohen Barkle","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"hohen_barkle_blue"}},{"itemId":685451,"className":"RedOrb_Tiny_blue","name":"Red Orb: Blue Tini","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Tiny_blue"}},{"itemId":685452,"className":"RedOrb_Spion_white","name":"Red Orb: White Spion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Spion_white"}},{"itemId":685453,"className":"RedOrb_Cronewt_mage_blue","name":"Red Orb: Blue Cronewt Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Cronewt_mage_blue"}},{"itemId":685454,"className":"RedOrb_lapasape_brown","name":"Red Orb: Brown Lapasape","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"lapasape_brown"}},{"itemId":685455,"className":"RedOrb_Hohen_orben_red","name":"Red Orb: Red Hohen Orben","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Hohen_orben_red"}},{"itemId":685456,"className":"RedOrb_Wendigo_archer_gray","name":"Red Orb: White Wendigo Searcher","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Wendigo_archer_gray"}},{"itemId":685457,"className":"RedOrb_Tiny_bow_blue","name":"Red Orb: Blue Tini Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Tiny_bow_blue"}},{"itemId":685458,"className":"RedOrb_Hohen_gulak_blue","name":"Red Orb: Blue Hohen Gulak","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Hohen_gulak_blue"}},{"itemId":685459,"className":"RedOrb_Kepari_purple","name":"Red Orb: Black Kepari","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Kepari_purple"}},{"itemId":685460,"className":"RedOrb_Tiny_mage_brown","name":"Red Orb: Brown Tini Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Tiny_mage_brown"}},{"itemId":685461,"className":"RedOrb_Spion_mage_white","name":"Red Orb: White Spion Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Spion_mage_white"}},{"itemId":685462,"className":"RedOrb_Harugal_blue","name":"Red Orb: Blue Harugal","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Harugal_blue"}},{"itemId":685463,"className":"RedOrb_Socket_green","name":"Red Orb: Green Socket","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Socket_green"}},{"itemId":685464,"className":"RedOrb_Socket_mage_green","name":"Red Orb: Green Socket Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Socket_mage_green"}},{"itemId":685465,"className":"RedOrb_Stoulet_bow_blue","name":"Red Orb: Brown Stoulet Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Stoulet_bow_blue"}},{"itemId":685466,"className":"RedOrb_Ridimed_blue","name":"Red Orb: Blue Ridimed","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Ridimed_blue"}},{"itemId":685467,"className":"RedOrb_puragi_red","name":"Red Orb: Red Puragi","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"puragi_red"}},{"itemId":685468,"className":"RedOrb_pappus_kepa_purple","name":"Red Orb: Black Old Kepa","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"pappus_kepa_purple"}},{"itemId":685469,"className":"RedOrb_Mushroom_boy_yellow","name":"Red Orb: Yellow Griba","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Mushroom_boy_yellow"}},{"itemId":685470,"className":"RedOrb_Sakmoli_purple","name":"Red Orb: Blue Sakmoli","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Sakmoli_purple"}},{"itemId":685471,"className":"RedOrb_jellyfish_green","name":"Red Orb: Green Meduja","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"jellyfish_green"}},{"itemId":685472,"className":"RedOrb_Fisherman_blue","name":"Red Orb: Blue Fisherman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Fisherman_blue"}},{"itemId":685473,"className":"RedOrb_TerraNymph_brown","name":"Red Orb: Brown Terra Imp","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"TerraNymph_brown"}},{"itemId":685474,"className":"RedOrb_NightMaiden_mage_red","name":"Red Orb: Red Dawn Maiden","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"NightMaiden_mage_red"}},{"itemId":685475,"className":"RedOrb_Elet_blue","name":"Red Orb: Blue Elet","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Elet_blue"}},{"itemId":685476,"className":"RedOrb_nuo_purple","name":"Red Orb: Blue Nuo","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"nuo_purple"}},{"itemId":685477,"className":"RedOrb_Socket_bow_red","name":"Red Orb: Red Socket Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Socket_bow_red"}},{"itemId":685478,"className":"RedOrb_TerraNymph_mage_blue","name":"Red Orb: Blue Terra Imp Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"TerraNymph_mage_blue"}},{"itemId":685479,"className":"RedOrb_defender_spider_blue","name":"Red Orb: Blue Guardian Spider","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"defender_spider_blue"}},{"itemId":685480,"className":"RedOrb_Socket_mage_red","name":"Red Orb: Red Socket Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Socket_mage_red"}},{"itemId":685481,"className":"RedOrb_NightMaiden_bow_red","name":"Red Orb: Red Darkness Maiden","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"NightMaiden_bow_red"}},{"itemId":685482,"className":"RedOrb_Nuka_blue","name":"Red Orb: Blue Nuka","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Nuka_blue"}},{"itemId":685483,"className":"RedOrb_Elma_blue","name":"Red Orb: Blue Elma","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Elma_blue"}},{"itemId":685484,"className":"RedOrb_TerraNymph_bow_brown","name":"Red Orb: Brown Terra Imp Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"TerraNymph_bow_brown"}},{"itemId":685485,"className":"RedOrb_Wendigo_bow_white","name":"Red Orb: White Wendigo Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Wendigo_bow_white"}},{"itemId":685486,"className":"RedOrb_Templeslave_sword_blue","name":"Red Orb: Blue Temple Slave Assassin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Templeslave_sword_blue"}},{"itemId":685487,"className":"RedOrb_Templeslave_mage_blue","name":"Red Orb: Blue Temple Slave Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Templeslave_mage_blue"}},{"itemId":685488,"className":"RedOrb_Tiny_brown","name":"Red Orb: Brown Tini","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Tiny_brown"}},{"itemId":685489,"className":"RedOrb_Tiny_bow_green","name":"Red Orb: Green Tini Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Tiny_bow_green"}},{"itemId":685490,"className":"RedOrb_Wendigo_magician_blue","name":"Red Orb: Blue Wendigo Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Wendigo_magician_blue"}},{"itemId":685491,"className":"RedOrb_Spion_red","name":"Red Orb: Red Spion","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Spion_red"}},{"itemId":685492,"className":"RedOrb_Tiny_mage_green","name":"Red Orb: Green Tini Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Tiny_mage_green"}},{"itemId":685493,"className":"RedOrb_Spion_bow_red","name":"Red Orb: Red Spion Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Spion_bow_red"}},{"itemId":685494,"className":"RedOrb_defender_spider_red","name":"Red Orb: Red Guardian Spider","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"defender_spider_red"}},{"itemId":685495,"className":"RedOrb_Dumaro_blue","name":"Red Orb: Blue Dumaro","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Dumaro_blue"}},{"itemId":685496,"className":"RedOrb_Repusbunny_purple","name":"Red Orb: Blue Lepusbunny","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Repusbunny_purple"}},{"itemId":685497,"className":"RedOrb_Repusbunny_bow_purple","name":"Red Orb: Blue Lepusbunny Assassin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Repusbunny_bow_purple"}},{"itemId":685498,"className":"RedOrb_Minos_green","name":"Red Orb: Green Minos","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Minos_green"}},{"itemId":685499,"className":"RedOrb_minos_bow_green","name":"Red Orb: Green Minos Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"minos_bow_green"}},{"itemId":685500,"className":"RedOrb_lapasape_mage_brown","name":"Red Orb: Brown Lapasape Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"lapasape_mage_brown"}},{"itemId":685501,"className":"RedOrb_Nuka_brown","name":"Red Orb: Brown Nuka","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Nuka_brown"}},{"itemId":685502,"className":"RedOrb_lapasape_bow_brown","name":"Red Orb: Brown Lapasape Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"lapasape_bow_brown"}},{"itemId":685503,"className":"RedOrb_Elma_red","name":"Red Orb: Red Elma","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Elma_red"}},{"itemId":685504,"className":"RedOrb_ticen_bow_red","name":"Red Orb: Red Ticen Crossbow Soldier","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"ticen_bow_red"}},{"itemId":685505,"className":"RedOrb_ticen_red","name":"Red Orb: Red Ticen","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"ticen_red"}},{"itemId":685506,"className":"RedOrb_ticen_mage_red","name":"Red Orb: Red Ticen Magician","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"ticen_mage_red"}},{"itemId":685507,"className":"RedOrb_nuo_red","name":"Red Orb: Red Nuo","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"nuo_red"}},{"itemId":685508,"className":"RedOrb_rafflesia_green","name":"Red Orb: Green Rafflesia","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"rafflesia_green"}},{"itemId":685509,"className":"RedOrb_Big_Cockatries_red","name":"Red Orb: Red Cockat","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Big_Cockatries_red"}},{"itemId":685510,"className":"RedOrb_mushroom_ent_red","name":"Red Orb: Red Big Griba","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"mushroom_ent_red"}},{"itemId":685511,"className":"RedOrb_Flying_Flog_white","name":"Red Orb: Gray Winged Frog","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Flying_Flog_white"}},{"itemId":685512,"className":"RedOrb_jukotail","name":"Red Orb: Jukotail","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"jukotail"}},{"itemId":685513,"className":"RedOrb_Greentoshell","name":"Red Orb: Greentoshell","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Greentoshell"}},{"itemId":685514,"className":"RedOrb_Dumaro_yellow","name":"Red Orb: Yellow Dumaro","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Dumaro_yellow"}},{"itemId":685515,"className":"RedOrb_Candlespider_blue","name":"Red Orb: Blue Candle Spider","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Candlespider_blue"}},{"itemId":685516,"className":"RedOrb_eldigo_green","name":"Red Orb: Green Eldigo","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"eldigo_green"}},{"itemId":685517,"className":"RedOrb_Aklasdame","name":"Red Orb: Akhlass Dame","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Aklasdame"}},{"itemId":685518,"className":"RedOrb_Aklastyke","name":"Red Orb: Akhlass Tikke","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Aklastyke"}},{"itemId":685519,"className":"RedOrb_Aklasbairn","name":"Red Orb: Akhlass Beorn","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Aklasbairn"}},{"itemId":685520,"className":"RedOrb_Aklascenser","name":"Red Orb: Akhlass Bishop","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Aklascenser"}},{"itemId":685521,"className":"RedOrb_Aklsabishop","name":"Red Orb: Akhlass Sensor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Aklsabishop"}},{"itemId":685522,"className":"RedOrb_Aklashump","name":"Red Orb: Akhlass Hump","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Aklashump"}},{"itemId":685523,"className":"RedOrb_Siaria","name":"Red Orb: Cyaria","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Siaria"}},{"itemId":685524,"className":"RedOrb_Aklaspetal","name":"Red Orb: Akhlass Petal","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Aklaspetal"}},{"itemId":685525,"className":"RedOrb_Aklaschurl","name":"Red Orb: Akhlass Steel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Aklaschurl"}},{"itemId":685526,"className":"RedOrb_Aklasia","name":"Red Orb: Akhlacia","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Aklasia"}},{"itemId":685527,"className":"RedOrb_Aklacountess","name":"Red Orb: Akhlass Countess","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Aklacountess"}},{"itemId":685528,"className":"RedOrb_Shardstatue_black","name":"Red Orb: Black Shardstatue","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Shardstatue_black"}},{"itemId":685529,"className":"RedOrb_Templeslave_black","name":"Red Orb: Black Templeslave","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Templeslave_black"}},{"itemId":685530,"className":"RedOrb_Templeslave_sword_black","name":"Red Orb: Black Temple Slave Assassin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Templeslave_sword_black"}},{"itemId":685531,"className":"RedOrb_pumpkin_dog","name":"Red Orb: Amberdog","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"pumpkin_dog"}},{"itemId":685532,"className":"RedOrb_scare_crow","name":"Red Orb: Scarecrow","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"scare_crow"}},{"itemId":685533,"className":"RedOrb_straw_walker","name":"Red Orb: Straw Walker","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"straw_walker"}},{"itemId":685534,"className":"RedOrb_ragged_bird","name":"Red Orb: Ragbird","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"ragged_bird"}},{"itemId":685535,"className":"RedOrb_ragged_butcher","name":"Red Orb: Ragged Butcher","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"ragged_butcher"}},{"itemId":685536,"className":"RedOrb_ellomago_green","name":"Red Orb: Green Ellomago","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"ellomago_green"}},{"itemId":685537,"className":"RedOrb_wood_lwa_green","name":"Red Orb: Blue Woodluwa","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"wood_lwa_green"}},{"itemId":685538,"className":"RedOrb_goblin2_sword_green","name":"Red Orb: Green Goblin Warrior","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"goblin2_sword_green"}},{"itemId":685539,"className":"RedOrb_goblin2_hammer_green","name":"Red Orb: Green Goblin Charger","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"goblin2_hammer_green"}},{"itemId":685540,"className":"RedOrb_goblin2_wand1_green","name":"Red Orb: Green Goblin Wizard","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"goblin2_wand1_green"}},{"itemId":685541,"className":"RedOrb_goblin2_wand3_green","name":"Red Orb: Green Goblin Shaman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"goblin2_wand3_green"}},{"itemId":685542,"className":"RedOrb_rodenarcorng","name":"Red Orb: Rhodenabean","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"rodenarcorng"}},{"itemId":685543,"className":"RedOrb_Rodenag","name":"Red Orb: Rhodenag","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Rodenag"}},{"itemId":685544,"className":"RedOrb_Rodetad","name":"Red Orb: Rhodetad","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Rodetad"}},{"itemId":685545,"className":"RedOrb_Elder_Rode","name":"Red Orb: Elder Rhode","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Elder_Rode"}},{"itemId":685546,"className":"RedOrb_Rodedoe","name":"Red Orb: Rhodedoe","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Rodedoe"}},{"itemId":685547,"className":"RedOrb_Roderiot","name":"Red Orb: Rhodeliot","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Roderiot"}},{"itemId":685548,"className":"RedOrb_nacorngfly","name":"Red Orb: Nuttafly","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"nacorngfly"}},{"itemId":685549,"className":"RedOrb_nacorngbug","name":"Red Orb: Nuttabug","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"nacorngbug"}},{"itemId":685550,"className":"RedOrb_Rodeyokel","name":"Red Orb: Rodejokel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Rodeyokel"}},{"itemId":685551,"className":"RedOrb_rodevassal","name":"Red Orb: Rhodevassal","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"rodevassal"}},{"itemId":685552,"className":"RedOrb_PagDoper_blue","name":"Red Orb: Blue Pag Doper","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"PagDoper_blue"}},{"itemId":685553,"className":"RedOrb_Pagclamper_yellow","name":"Red Orb: Yellow Pag Clamper","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Pagclamper_yellow"}},{"itemId":685554,"className":"RedOrb_PagNurse_green","name":"Red Orb: Green Pag Nurse","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"PagNurse_green"}},{"itemId":685555,"className":"RedOrb_Pagshearer_yellow","name":"Red Orb: Yellow Pag Shearer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Pagshearer_yellow"}},{"itemId":685556,"className":"RedOrb_kucarry_Tot","name":"Red Orb: Kugheri Tot","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"kucarry_Tot"}},{"itemId":685557,"className":"RedOrb_kucarry_Somy","name":"Red Orb: Kugheri Sommi","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"kucarry_Somy"}},{"itemId":685558,"className":"RedOrb_kucarry_lioni","name":"Red Orb: Kugheri Lyoni","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"kucarry_lioni"}},{"itemId":685559,"className":"RedOrb_Leafnut_yellow","name":"Red Orb: Yellow Leafnut","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Leafnut_yellow"}},{"itemId":685560,"className":"RedOrb_Grummer_orange","name":"Red Orb: Orange Grummer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Grummer_orange"}},{"itemId":685561,"className":"RedOrb_colimen_red","name":"Red Orb: Red Colimen","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"colimen_red"}},{"itemId":685562,"className":"RedOrb_Caro_yellow","name":"Red Orb: Yellow Caro","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Caro_yellow"}},{"itemId":685563,"className":"RedOrb_kucarry_numani","name":"Red Orb: Kugheri Numani","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"kucarry_numani"}},{"itemId":685564,"className":"RedOrb_kucarry_zabbi","name":"Red Orb: Kugheri Zabbi","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"kucarry_zabbi"}},{"itemId":685565,"className":"RedOrb_kucarry_zeuni","name":"Red Orb: Kugheri Zeuni","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"kucarry_zeuni"}},{"itemId":685566,"className":"RedOrb_bloom","name":"Red Orb: Blom","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"bloom"}},{"itemId":685567,"className":"RedOrb_budny","name":"Red Orb: Virdney","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"budny"}},{"itemId":685568,"className":"RedOrb_castle_gardner","name":"Red Orb: Castle Gardener","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"castle_gardner"}},{"itemId":685569,"className":"RedOrb_floron","name":"Red Orb: Flowlon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"floron"}},{"itemId":685570,"className":"RedOrb_florabbi","name":"Red Orb: Flowlevi","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"florabbi"}},{"itemId":685571,"className":"RedOrb_Slime_red","name":"Red Orb: Red Slime","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Slime_red"}},{"itemId":685572,"className":"RedOrb_arma_yellow","name":"Red Orb: Yellow Arma","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"arma_yellow"}},{"itemId":685573,"className":"RedOrb_pyran_yellow","name":"Red Orb: Yellow Pyran","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"pyran_yellow"}},{"itemId":685574,"className":"RedOrb_wizards_marmotte_red","name":"Red Orb: Red Wizard Shaman Doll","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"wizards_marmotte_red"}},{"itemId":685575,"className":"RedOrb_Glyquare_red","name":"Red Orb: Red Glyquare","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Glyquare_red"}},{"itemId":685576,"className":"RedOrb_anchor_purple","name":"Red Orb: Red Anchor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"anchor_purple"}},{"itemId":685577,"className":"RedOrb_Prisonfighter_green","name":"Red Orb: Green Prison Fighter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Prisonfighter_green"}},{"itemId":685578,"className":"RedOrb_Folibu_yellow","name":"Red Orb: Yellow Polibu","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Folibu_yellow"}},{"itemId":685579,"className":"RedOrb_Gosaru_blue","name":"Red Orb: Blue Gosaru","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Gosaru_blue"}},{"itemId":685580,"className":"RedOrb_Doyor_blue","name":"Red Orb: Blue Doyor","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Doyor_blue"}},{"itemId":685581,"className":"RedOrb_Tanu_blue","name":"Red Orb: Blue Tanu","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Tanu_blue"}},{"itemId":685582,"className":"RedOrb_beetow_blue","name":"Red Orb: Blue Beetow","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"beetow_blue"}},{"itemId":685583,"className":"RedOrb_duckey_red","name":"Red Orb: Red Ducky","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"duckey_red"}},{"itemId":685584,"className":"RedOrb_Moglan_blue","name":"Red Orb: Blue Moglan","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Moglan_blue"}},{"itemId":685585,"className":"RedOrb_rockon","name":"Red Orb: Lakhorn","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"rockon"}},{"itemId":685586,"className":"RedOrb_rockoff","name":"Red Orb: Lakhof","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"rockoff"}},{"itemId":685587,"className":"RedOrb_Flak_green","name":"Red Orb: Green Flak","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Flak_green"}},{"itemId":685588,"className":"RedOrb_tala_sorcerer","name":"Red Orb: Tala Wizard","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"tala_sorcerer"}},{"itemId":685589,"className":"RedOrb_flamme_priest_green","name":"Red Orb: Green Flamme","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"flamme_priest_green"}},{"itemId":685590,"className":"RedOrb_tala_combat","name":"Red Orb: Tala Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"tala_combat"}},{"itemId":685591,"className":"RedOrb_warleader_tala","name":"Red Orb: Tala Battle Boss","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"warleader_tala"}},{"itemId":685592,"className":"RedOrb_rocktanon","name":"Red Orb: Lakhtanon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"rocktanon"}},{"itemId":685593,"className":"RedOrb_flamme_mage_green","name":"Red Orb: Green Flamme Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"flamme_mage_green"}},{"itemId":685594,"className":"RedOrb_Bavon_green","name":"Red Orb: Green Bavon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Bavon_green"}},{"itemId":685595,"className":"RedOrb_rubblem_green","name":"Red Orb: Green Rubblem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"rubblem_green"}},{"itemId":685596,"className":"RedOrb_Zolem_green","name":"Red Orb: Green Zolem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Zolem_green"}},{"itemId":685597,"className":"RedOrb_flamag_green","name":"Red Orb: Green Flamag","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"flamag_green"}},{"itemId":685598,"className":"RedOrb_flamme_archer_green","name":"Red Orb: Green Flamme Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"flamme_archer_green"}},{"itemId":685599,"className":"RedOrb_wood_goblin_green","name":"Red Orb: Green Wood Goblin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"wood_goblin_green"}},{"itemId":685600,"className":"RedOrb_rockoff_orange","name":"Red Orb: Orange Lakhof","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"rockoff_orange"}},{"itemId":685601,"className":"RedOrb_Flamil_green","name":"Red Orb: Green Flamil","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Flamil_green"}},{"itemId":685602,"className":"RedOrb_Rondo","name":"Red Orb: Rondo","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Rondo"}},{"itemId":685603,"className":"RedOrb_Zibu_Maize_red","name":"Red Orb: Red Maize","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Zibu_Maize_red"}},{"itemId":685604,"className":"RedOrb_Siaulav_red","name":"Red Orb: Red Siaulav","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Siaulav_red"}},{"itemId":685605,"className":"RedOrb_Siaulav_bow_black","name":"Red Orb: Black Siaulav Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Siaulav_bow_black"}},{"itemId":685606,"className":"RedOrb_Siaulav_mage_black","name":"Red Orb: Black Siaulav Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Siaulav_mage_black"}},{"itemId":685607,"className":"RedOrb_Rakon","name":"Red Orb: Lyecorn","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Rakon"}},{"itemId":685608,"className":"RedOrb_Toothrikon","name":"Red Orb: Tuthrycon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Toothrikon"}},{"itemId":685609,"className":"RedOrb_horn_golem","name":"Red Orb: Horned Golem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"horn_golem"}},{"itemId":685610,"className":"RedOrb_darong","name":"Red Orb: Bunkeybo","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"darong"}},{"itemId":685611,"className":"RedOrb_dorong","name":"Red Orb: Bunkeyto","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"dorong"}},{"itemId":685612,"className":"RedOrb_nukarong","name":"Red Orb: Nukhalong","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"nukarong"}},{"itemId":685613,"className":"RedOrb_vilkas_soldier","name":"Red Orb: Vilkas","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"vilkas_soldier"}},{"itemId":685614,"className":"RedOrb_vilkas_archer","name":"Red Orb: Vilkas Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"vilkas_archer"}},{"itemId":685615,"className":"RedOrb_rompelnuka","name":"Red Orb: Romplenuka","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"rompelnuka"}},{"itemId":685616,"className":"RedOrb_vilkas_warrior","name":"Red Orb: Vilkas Assassin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"vilkas_warrior"}},{"itemId":685617,"className":"RedOrb_vilkas_spearman","name":"Red Orb: Vilkas Spearman","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"vilkas_spearman"}},{"itemId":685618,"className":"RedOrb_vilkas_fighter","name":"Red Orb: Vilkas Fighter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"vilkas_fighter"}},{"itemId":685619,"className":"RedOrb_vilkas_mage","name":"Red Orb: Vilkas Mage","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"vilkas_mage"}},{"itemId":685620,"className":"RedOrb_charog_green","name":"Red Orb: Green Charog","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"charog_green"}},{"itemId":685621,"className":"RedOrb_charcoal_walker_green","name":"Red Orb: Green Charcoal Walker","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"charcoal_walker_green"}},{"itemId":685622,"className":"RedOrb_blindlem_green","name":"Red Orb: Green Blindlem","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"blindlem_green"}},{"itemId":685623,"className":"RedOrb_RavineLerva_cave","name":"Red Orb: Cave Ravinelarva","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"RavineLerva_cave"}},{"itemId":685624,"className":"RedOrb_kucarry_symbani","name":"Red Orb: Kugheri Symbani","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"kucarry_symbani"}},{"itemId":685625,"className":"RedOrb_kucarry_balzer","name":"Red Orb: Kugheri Balzer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"kucarry_balzer"}},{"itemId":685626,"className":"RedOrb_kucarry_Zeffi","name":"Red Orb: Kugheri Zeffi","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"kucarry_Zeffi"}},{"itemId":685627,"className":"RedOrb_Moringaga","name":"Red Orb: Mouringaka","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Moringaga"}},{"itemId":685628,"className":"RedOrb_Nabu","name":"Red Orb: Nabu","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Nabu"}},{"itemId":685629,"className":"RedOrb_Moringbird","name":"Red Orb: Mourningbird","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Moringbird"}},{"itemId":685630,"className":"RedOrb_Socket_bow_brown","name":"Red Orb: Brown Socket Archer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_SUMMONORB_ENEMY","strArg":"Socket_bow_brown"}},{"itemId":699004,"className":"Rare_Enchant_Jewel","name":"Rare Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"EnchantJewell"}},{"itemId":699005,"className":"Unique_Enchant_Jewel","name":"Unique Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"EnchantJewell"}},{"itemId":699006,"className":"Legend_Enchant_Jewel","name":"Legend Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"EnchantJewell"}},{"itemId":699010,"className":"Unique_Enchant_Jewel_Team","name":"Unique Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"EnchantJewell"}},{"itemId":699013,"className":"PC_Rare_Enchant_Jewel","name":"ITEM_20230425_028599","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"EnchantJewell"}},{"itemId":699014,"className":"PC_Unique_Enchant_Jewel","name":"ITEM_20230425_028600","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"EnchantJewell"}},{"itemId":699015,"className":"PC_Legend_Enchant_Jewel","name":"ITEM_20230425_028601","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"EnchantJewell"}},{"itemId":699024,"className":"Rare_Enchant_Jewel_440","name":"[Lv. 440] Rare Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"EnchantJewell","numArg1":440}},{"itemId":699025,"className":"Unique_Enchant_Jewel_440","name":"[Lv. 440] Unique Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"EnchantJewell","numArg1":440}},{"itemId":699026,"className":"Legend_Enchant_Jewel_490","name":"[Lv. 490] Legend Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"EnchantJewell","numArg1":490}},{"itemId":699027,"className":"event_Unique_Enchant_Jewel_430","name":"[Event][Lv. 430] Unique Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"EnchantJewell","numArg1":430}},{"itemId":699028,"className":"event_Legend_Enchant_Jewel_430","name":"[Event][Lv. 430] Legend Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"EnchantJewell","numArg1":430}},{"itemId":699029,"className":"Rare_Enchant_Jewel_410","name":"[Lv. 410] Rare Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"EnchantJewell","numArg1":410}},{"itemId":699030,"className":"Unique_Enchant_Jewel_410","name":"[Lv. 410] Unique Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"EnchantJewell","numArg1":410}},{"itemId":699031,"className":"Legend_Enchant_Jewel_460","name":"[Lv.460] Legend Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"EnchantJewell","numArg1":460}},{"itemId":699032,"className":"Team_Legend_Enchant_Jewel_460","name":"[Lv.460] Legend Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"EnchantJewell","numArg1":460}},{"itemId":710001,"className":"MusicBox_Cake01","name":"Cake Music Box","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_ORGEL","strArg":"musicbox_cake;PC_Orgel;Monster_Orgel"}},{"itemId":710002,"className":"MusicBox_Maple01","name":"Forest Squirrel Music Box","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_ORGEL","strArg":"musicbox_maple;PC_Orgel;Monster_Orgel"}},{"itemId":710003,"className":"MusicBox_Wedding01","name":"Groom Dove Music Box","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_ORGEL","strArg":"musicbox_wedding_m;PC_Orgel;Monster_Orgel"}},{"itemId":710004,"className":"MusicBox_Wedding02","name":"Bride Dove Music Box","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_ORGEL","strArg":"musicbox_wedding_f;PC_Orgel;Monster_Orgel"}},{"itemId":710005,"className":"MusicBox_TrickBox","name":"Surprise Bear Music Box","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_ORGEL","strArg":"musicbox_bear;PC_Orgel2;Monster_Orgel2"}},{"itemId":710006,"className":"MusicBox_Main","name":"Goddess Music Box","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_ORGEL","strArg":"musicbox_main;PC_Orgel;Monster_Orgel"}},{"itemId":710007,"className":"MusicBox_Popolion","name":"Popolion Waterball Orgel","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_ORGEL","strArg":"build;musicbox_popolion"}},{"itemId":720001,"className":"PopUpBook_Wedding01","name":"Wedding Pop-up Book","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PopUpBook","strArg":"photowall","numArg1":90,"numArg2":35}},{"itemId":720002,"className":"PopUpBook_Summer01","name":"Beach Popup Book","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PopUpBook","strArg":"photowall02_beach","numArg1":30,"numArg2":12}},{"itemId":720003,"className":"PopUpBook_Summer02","name":"Shark Popup Book","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PopUpBook","strArg":"photowall02_shark","numArg1":30,"numArg2":12}},{"itemId":720004,"className":"PopUpBook_Wedding02","name":"Happy Days Popup Book","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PopUpBook","strArg":"photowall02_wedding","numArg1":90,"numArg2":35}},{"itemId":720005,"className":"PopUpBook_Penguin01","name":"Penguin Pop-up Book","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PopUpBook","strArg":"photowall_penguin","numArg1":48,"numArg2":19}},{"itemId":720006,"className":"PopUpBook_Poodle01","name":"Fried Chicken Poodle Pop-up Book","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PopUpBook","strArg":"photowall02_poodle","numArg1":48,"numArg2":19}},{"itemId":720007,"className":"PopUpBook_Poporion01","name":"Popolion Pop-up Book","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PopUpBook","strArg":"photowall02_poporion","numArg1":48,"numArg2":19}},{"itemId":720008,"className":"photowall_halloween","name":"Halloween Pop-up Book","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PopUpBook","strArg":"photowall_halloween","numArg1":67.5,"numArg2":26.25}},{"itemId":720009,"className":"photowall_christmastree01","name":"Christmas Tree Pop-up Book","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PopUpBook","strArg":"photowall_christmastree01","numArg1":30,"numArg2":12}},{"itemId":720010,"className":"Photowall_christmas_santa","name":"Christmas Santa Pop-up Book","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PopUpBook","strArg":"Photowall_christmas_santa","numArg1":30,"numArg2":12}},{"itemId":720011,"className":"photowall_golddog","name":"Golden Pup Popup Book","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PopUpBook","strArg":"photowall_golddog","numArg1":90,"numArg2":35}},{"itemId":720012,"className":"photowall_fairy_wedding","name":"Fairy Wedding Popup Book","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PopUpBook","strArg":"photowall_fairy_wedding","numArg1":90,"numArg2":35}},{"itemId":720013,"className":"photowall_soccer","name":"2018 Kickoff Popup Book","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PopUpBook","strArg":"photowall_soccer","numArg1":90,"numArg2":35}},{"itemId":720014,"className":"photowall_marine","name":"Marine Special Popup Book","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PopUpBook","strArg":"photowall_marine","numArg1":90,"numArg2":35}},{"itemId":720015,"className":"photowall_Chess","name":"Checkmate Popup Book","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PopUpBook","strArg":"Photowall_Chess","numArg1":90,"numArg2":35}},{"itemId":720016,"className":"photowall_camping","name":"Campfire Popup Book","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PopUpBook","strArg":"photowall_camping","numArg1":90,"numArg2":35}},{"itemId":720017,"className":"photowall_chef","name":"Kitchen Table Popup Book","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PopUpBook","strArg":"photowall_chef","numArg1":90,"numArg2":35}},{"itemId":720018,"className":"photowall_squadron","name":"TOS Ranger City Popup Book","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PopUpBook","strArg":"photowall_squadron","numArg1":90,"numArg2":35}},{"itemId":720019,"className":"photowall_hiphop","name":"Popo Pop Photo Wall Popup Book","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PopUpBook","strArg":"photowall_hiphop","numArg1":90,"numArg2":35}},{"itemId":721000,"className":"Tea_Set","name":"Tea Set","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SHARED_ANIM","strArg":"Teaset"}},{"itemId":721001,"className":"Domecover","name":"Plate Cover","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SHARED_ANIM","strArg":"domecover"}},{"itemId":721002,"className":"TOS_Ticket","name":"TOS Placard","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SHARED_ANIM","strArg":"Ticket"}},{"itemId":721003,"className":"Decorative_knife","name":"Ceremonial Knife","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"POSE;mercenarytoy"}},{"itemId":721004,"className":"surffing_board","name":"Surf Board","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"POSE;surfingboard"}},{"itemId":721005,"className":"Juice_board","name":"Blue Lemonade Toy","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"POSE;cocktail"}},{"itemId":721006,"className":"Parfait","name":"Sweet Parfait Toy","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"POSE;parfait"}},{"itemId":721007,"className":"squirt","name":"Ouchie Syringe Toy","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"POSE;squirt"}},{"itemId":721008,"className":"bloodpack","name":"HP Drip Toy","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"POSE;bloodpack"}},{"itemId":721009,"className":"bamboo","name":"Bamboo Spear","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"POSE;bamboo"}},{"itemId":721010,"className":"pumkin_lamp","name":"Pumpkin Lantern","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"POSE;halloweentoy"}},{"itemId":721011,"className":"artefact_picthfork","name":"Rusty Pitchfork","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"POSE;pitchfork"}},{"itemId":721012,"className":"artefact_wedding01","name":"Golden Fairy Lira","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"POSE;wedding01"}},{"itemId":721013,"className":"artefact_wedding02","name":"Dawn Fairy Lira","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"POSE;wedding02"}},{"itemId":721014,"className":"artefact_wedding03","name":"Teeny Fairy Trumpet","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"POSE;wedding03"}},{"itemId":721015,"className":"artefact_wedding04","name":"Rose of Love","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"POSE;wedding04"}},{"itemId":721016,"className":"artefact_soccer_ball","name":"2018 Kickoff Soccer Ball","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"POSE;soccer_ball"}},{"itemId":721017,"className":"artefact_trophy_soccer","name":"Ultimate Ace Trophy","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"POSE;trophy_soccer"}},{"itemId":721018,"className":"artefact_victory_red","name":"Orsha Lions Support Banner","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"POSE;victory_red"}},{"itemId":721019,"className":"artefact_victory_purple","name":"Klaipeda Capricorns Support Banner","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"POSE;victory_purple"}},{"itemId":721020,"className":"artefact_soccer_yellow_card","name":"2018 Kickoff Yellow Card","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"POSE;card_yellow"}},{"itemId":721021,"className":"artefact_soccer_red_card","name":"2018 Kickoff Red Card","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"POSE;card_red"}},{"itemId":721022,"className":"artefact_food_brochette","name":"BBQ Prawn Skewers","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1807_SUMMER","strArg":"food_brochette"}},{"itemId":721023,"className":"artefact_food_mojito","name":"Blue Lemonade","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1807_SUMMER","strArg":"food_mojito"}},{"itemId":721024,"className":"artefact_food_coconut","name":"Fresh Coconut Water","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1807_SUMMER","strArg":"skl_assistattack_food_coconut"}},{"itemId":721025,"className":"artefact_Whisker","name":"Toy Whisk","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"TOY;Meringue"}},{"itemId":721026,"className":"artefact_salt","name":"Toy Saltshaker","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"TOY;salt"}},{"itemId":721027,"className":"artefact_fryingpan","name":"Toy Frying Pan","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"TOY;fryingpan"}},{"itemId":721028,"className":"artefact_camera","name":"Popo Pop Camera Toy","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_TOY_ANIM_RANDOM","strArg":"camera;camera_sit"}},{"itemId":721029,"className":"nyang_piano_Do_White","name":"White Meow Piano : Do","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_TOY_ANIM","strArg":"nyang_piano_Do_White"}},{"itemId":721030,"className":"nyang_piano_Re_White","name":"White Meow Piano : Re","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_TOY_ANIM","strArg":"nyang_piano_Re_White"}},{"itemId":721031,"className":"nyang_piano_Mi_White","name":"White Meow Piano : Mi","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_TOY_ANIM","strArg":"nyang_piano_Mi_White"}},{"itemId":721032,"className":"nyang_piano_Fa_White","name":"White Meow Piano : Fa","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_TOY_ANIM","strArg":"nyang_piano_Fa_White"}},{"itemId":721033,"className":"nyang_piano_So_White","name":"White Meow Piano : Sol","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_TOY_ANIM","strArg":"nyang_piano_Sol_White"}},{"itemId":721034,"className":"nyang_piano_La_White","name":"White Meow Piano : La","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_TOY_ANIM","strArg":"nyang_piano_Ra_White"}},{"itemId":721035,"className":"nyang_piano_Ti_White","name":"White Meow Piano : Ti","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_TOY_ANIM","strArg":"nyang_piano_Ti_White"}},{"itemId":721036,"className":"nyang_piano_High_Do_White","name":"White Meow Piano : Higher Do","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_TOY_ANIM","strArg":"nyang_piano_High_Do_White"}},{"itemId":721037,"className":"nyang_piano_Do_Black","name":"Black Meow Piano : Do #","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_TOY_ANIM","strArg":"nyang_piano_Do_Black"}},{"itemId":721038,"className":"nyang_piano_Re_Black","name":"Black Meow Piano : Re #","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_TOY_ANIM","strArg":"nyang_piano_Re_Black"}},{"itemId":721039,"className":"nyang_piano_Fa_Black","name":"Black Meow Piano : Fa #","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_TOY_ANIM","strArg":"nyang_piano_Fa_Black"}},{"itemId":721040,"className":"nyang_piano_So_Black","name":"Black Meow Piano : Sol #","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_TOY_ANIM","strArg":"nyang_piano_Sol_Black"}},{"itemId":721041,"className":"nyang_piano_La_Black","name":"Black Meow Piano : La #","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_TOY_ANIM","strArg":"nyang_piano_Ra_Black"}},{"itemId":721042,"className":"artefact_fire_extinguisher","name":"Toy Fire Extinguisher","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_TOY_ANIM","strArg":"fireextinguisher"}},{"itemId":721043,"className":"artefact_break_watermelon","name":"Watermelon Splitting","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_TOY_ANIM_RANDOM","strArg":"watermelon01;watermelon02"}},{"itemId":721044,"className":"artefact_opera_glasses","name":"Opera Glasses","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_TOY_ANIM","strArg":"12musical"}},{"itemId":721046,"className":"artefact_chick_umbrella","name":"Chickling Umbrella","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_TOY_ANIM","strArg":"chick_umbrella"}},{"itemId":721047,"className":"artefact_mafia_money_case","name":"Criminal Black Money Case","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_TOY_ANIM","strArg":"ep13mafia02"}},{"itemId":721048,"className":"artefact_toshero","name":"Hero's Memory (7 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_TOSHERO_TOY","strArg":"public_buff"}},{"itemId":721049,"className":"artifact_ep13tcance","name":"TOSummer Beach Deck Chair","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_TOY_CHAIR_ANIM","strArg":"ep13tcance"}},{"itemId":721050,"className":"artifact_ep13tcance02","name":"TOSummer Surfing","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_PLAY_TOY_END_ANIM","strArg":"ep13tcance02/std"}},{"itemId":721051,"className":"artifact_ep13raincoat","name":"Drip Drop Bubble Umbrella","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_TOY_ANIM","strArg":"ep13raincoat"}},{"itemId":721052,"className":"artifact_ep13retro","name":"Good ol'days Jukebox","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_CREATE_NPC","strArg":"toy_ep13retro"}},{"itemId":721053,"className":"artefact_ep13athleisure01","name":"Athleisure Barbell","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_PLAY_TOY_END_ANIM","strArg":"ep13athleisure01/std"}},{"itemId":721054,"className":"artefact_ep13athleisure02","name":"Athleisure Yoga Mat","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_PLAY_TOY_END_ANIM","strArg":"ep13athleisure02/std"}},{"itemId":721055,"className":"artifact_ep13mythology","name":"Asgard Hlidskjalf","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_TOY_CHAIR_ANIM","strArg":"ep13mythology01"}},{"itemId":721056,"className":"artefact_Whisker_Re","name":"[Re] Toy Whisk","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"TOY;Meringue"}},{"itemId":721057,"className":"artefact_salt_Re","name":"[Re] Toy Saltshaker","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"TOY;salt"}},{"itemId":721058,"className":"artefact_fryingpan_Re","name":"[Re] Toy Frying Pan","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM","strArg":"TOY;fryingpan"}},{"itemId":721059,"className":"artifact_ep14zemina","name":"Goddess Zemyna's Little Garden","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_TOY_AND_CREATE_NPC","strArg":"ep14zemina"}},{"itemId":721060,"className":"artifact_ep14rider","name":"METAL MONSTER","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_TOY_ANIM","strArg":"ep14rider"}},{"itemId":721061,"className":"artifact_laima_flag","name":"Laima's Flag","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_TOY_LAIMA_FLAG","strArg":"laima_flag"}},{"itemId":721062,"className":"tosw_colony_flag_klapeda","name":"ITEM_20230522_028604","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_TOSW_COLONY_FLAG","strArg":"laima_flag"}},{"itemId":721063,"className":"tosw_colony_flag_orsha","name":"ITEM_20230522_028606","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_TOSW_COLONY_FLAG","strArg":"laima_flag"}},{"itemId":721064,"className":"tosw_colony_flag_pedimian","name":"ITEM_20230522_028607","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_TOSW_COLONY_FLAG","strArg":"laima_flag"}},{"itemId":730400,"className":"Spread_Bait_basic","name":"Paste Bait","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":10000,"sellPrice":1000,"minLevel":1,"script":{"function":"SCR_USE_SPREAD_BAIT","strArg":"F_fish_foreshadow_blue","numArg1":330}},{"itemId":730499,"className":"Event_1902_Spread_Bait","name":"[Event] Paste Bait (1 Day)","type":"Consume","group":"Drug","weight":5,"maxStack":1,"price":10000,"sellPrice":1000,"minLevel":1,"script":{"function":"SCR_USE_SPREAD_BAIT","strArg":"F_fish_foreshadow_blue","numArg1":330}},{"itemId":730500,"className":"Spread_Bait_Premium_1","name":"Advanced Paste Bait","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_SPREAD_BAIT","strArg":"F_fish_foreshadow_pink","numArg1":550}},{"itemId":730600,"className":"Fishing_Fire_basic","name":"Fishing Bonfire","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":5000,"sellPrice":500,"minLevel":1,"script":{"function":"SCR_USE_FISHING_FIRE","strArg":"FishingFire_1","numArg1":600}},{"itemId":730699,"className":"Event_1902_Fishing_Fire","name":"[Event] Fishing Bonfire (1 Day)","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_FISHING_FIRE","strArg":"FishingFire_1","numArg1":600}},{"itemId":730700,"className":"Fishing_Fire_Premium_1","name":"Professional Bonfire","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_FISHING_FIRE","strArg":"FishingFire_1","numArg1":1800}},{"itemId":730800,"className":"Red_Fish","name":"Red Fish","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType2":"Fishing","minLevel":1},{"itemId":730801,"className":"Silver_Fish","name":"Silver Fish","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType2":"Fishing","minLevel":1,"script":{"function":"SCR_USE_FISH_BASIC"}},{"itemId":730802,"className":"Gold_Fish","name":"Golden Fish","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType2":"Fishing","minLevel":1},{"itemId":800017,"className":"Cube_FD_Weapon_75_Piece","name":"Unidentified Weapon Cube Fragment (Lv. 75)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Appraisal_Box_Piece","strArg":"Cube_FD_Weapon_75"}},{"itemId":800018,"className":"Cube_FD_Armor_75_Piece","name":"Unidentified Armor Cube Fragment (Lv. 75)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Appraisal_Box_Piece","strArg":"Cube_FD_Armor_75"}},{"itemId":800019,"className":"Cube_FD_Weapon_120_Piece","name":"Unidentified Weapon Cube Fragment (Lv. 120)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Appraisal_Box_Piece","strArg":"Cube_FD_Weapon_120"}},{"itemId":800020,"className":"Cube_FD_Armor_120_Piece","name":"Unidentified Armor Cube Fragment (Lv. 120)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Appraisal_Box_Piece","strArg":"Cube_FD_Armor_120"}},{"itemId":800021,"className":"Cube_FD_Weapon_170_Piece","name":"Unidentified Weapon Cube Fragment (Lv. 170)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Appraisal_Box_Piece","strArg":"Cube_FD_Weapon_170"}},{"itemId":800022,"className":"Cube_FD_Armor_170_Piece","name":"Unidentified Armor Cube Fragment (Lv. 170)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Appraisal_Box_Piece","strArg":"Cube_FD_Armor_170"}},{"itemId":800023,"className":"Cube_FD_Weapon_220_Piece","name":"Unidentified Weapon Cube Fragment (Lv. 220)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Appraisal_Box_Piece","strArg":"Cube_FD_Weapon_220"}},{"itemId":800024,"className":"Cube_FD_Armor_220_Piece","name":"Unidentified Armor Cube Fragment (Lv. 220)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Appraisal_Box_Piece","strArg":"Cube_FD_Armor_220"}},{"itemId":800025,"className":"Cube_FD_Weapon_270_Magic_Piece","name":"Unidentified Weapon Cube Fragment (Lv. 270)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Appraisal_Box_Piece","strArg":"Cube_FD_Weapon_270_Magic"}},{"itemId":800026,"className":"Cube_FD_Armor_270_Magic_Piece","name":"Unidentified Armor Cube Fragment (Lv. 270)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Appraisal_Box_Piece","strArg":"Cube_FD_Armor_270_Magic"}},{"itemId":800027,"className":"Cube_FD_Weapon_270_Rare_Piece","name":"Unidentified Weapon Cube Fragment (Lv. 270)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Appraisal_Box_Piece","strArg":"Cube_FD_Weapon_270_Rare"}},{"itemId":800028,"className":"Cube_FD_Armor_270_Rare_Piece","name":"Unidentified Armor Cube Fragment (Lv. 270)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Appraisal_Box_Piece","strArg":"Cube_FD_Armor_270_Rare"}},{"itemId":800029,"className":"Cube_FD_Weapon_315_Magic_Piece","name":"Unidentified Weapon Cube Fragment (Lv. 315)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Appraisal_Box_Piece","strArg":"Cube_FD_Weapon_315_Magic"}},{"itemId":800030,"className":"Cube_FD_Armor_315_Magic_Piece","name":"Unidentified Armor Cube Fragment (Lv. 315)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Appraisal_Box_Piece","strArg":"Cube_FD_Armor_315_Magic"}},{"itemId":800031,"className":"Cube_FD_Weapon_315_Rare_Piece","name":"Unidentified Weapon Cube Fragment (Lv. 315)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Appraisal_Box_Piece","strArg":"Cube_FD_Weapon_315_Rare"}},{"itemId":800032,"className":"Cube_FD_Armor_315_Rare_Piece","name":"Unidentified Armor Cube Fragment (Lv. 315)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Appraisal_Box_Piece","strArg":"Cube_FD_Armor_315_Rare"}},{"itemId":810001,"className":"Team_Warehouse_Extend","name":"Team Storage Expansion Voucher +2","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_FREE_EXTEND_ACCOUNT_WAREHOUSE","numArg1":2}},{"itemId":810002,"className":"Team_Warehouse_Extend_1add","name":"Team Storage Expansion Voucher +1","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_FREE_EXTEND_ACCOUNT_WAREHOUSE","numArg1":1}},{"itemId":810004,"className":"Adventure_Reward_Seed","name":"Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":810005,"className":"Adventure_Goddess_Statue","name":"Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":900103,"className":"Event_160609_1","name":"Magician Item Chest","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"Event_160609_1"}},{"itemId":900104,"className":"Event_160609_2","name":"Gem Item Chest","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"Event_160609_2"}},{"itemId":900105,"className":"Event_160609_3","name":"Power-UP Item Chest","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"Event_160609_3"}},{"itemId":900106,"className":"Event_160609_4","name":"Potion Item Chest","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"Event_160609_4"}},{"itemId":900107,"className":"Event_160609_5","name":"TP Bundle Chest","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"Event_160609_5"}},{"itemId":900108,"className":"Event_160609_6","name":"Random Item Chest","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"Event_160609_6"}},{"itemId":900109,"className":"misc_campfireKit2","name":"Fancy Firewood","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":30000,"sellPrice":6,"minLevel":1,"script":{"function":"SCR_PUT_CAMPFIRE"}},{"itemId":900121,"className":"Event_160818_9","name":"Band Chest (3 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"Event_160818_9"}},{"itemId":900122,"className":"Event_160818_10","name":"Enhanced Band Chest (15 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"Event_160818_10"}},{"itemId":900123,"className":"Event_160818_11","name":"Necklace Chest (3 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"Event_160818_11"}},{"itemId":900124,"className":"Event_160818_12","name":"Enhanced Necklace Chest (15 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"Event_160818_12"}},{"itemId":900125,"className":"Event_160818_13","name":"Icicle Recovery Potion Lv1 [Event]","type":"Consume","group":"Drug","weight":20,"maxStack":32767,"price":100,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHPSP_Dot","numArg1":512}},{"itemId":900130,"className":"Event_160908_5","name":"Sweet Dumpling","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_SongPyeon","numArg2":900000}},{"itemId":900131,"className":"Event_160908_6","name":"Jumbo Dumpling","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddTeamBuff","strArg":"Event_LargeSongPyeon","numArg2":1800000}},{"itemId":900132,"className":"Event_160908_7","name":"Honey Dumpling","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddTeamBuff","strArg":"Event_Largehoney_Songpyeon","numArg2":1800000}},{"itemId":900136,"className":"Event_160929_4","name":"Icicle Recovery Potion Lv1 [Event]","type":"Consume","group":"Drug","weight":20,"maxStack":32767,"price":100,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHPSP_Dot","numArg1":512}},{"itemId":900137,"className":"Event_161027_2","name":"Pumpkin Candy","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_Pumkincandy","numArg1":5,"numArg2":1800000}},{"itemId":900140,"className":"Event_161110_1","name":"Straight A's Taffy","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_161110_candy","numArg1":5,"numArg2":1800000}},{"itemId":900141,"className":"Event_161110_2","name":"Straight A's Vitamins","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_161110_vitamin","numArg1":600,"numArg2":1800000}},{"itemId":900142,"className":"Event_161110_3","name":"Straight A's Chocolate","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_161110_chocolate","numArg2":1800000}},{"itemId":900162,"className":"Gacha_HairAcc_001_event14d_Team","name":"Goddess' Blessed Cube (14 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":900201,"className":"Artefact_900201","name":"Fire Cracker","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff"}},{"itemId":900204,"className":"misc_paperBox_party_30d","name":"Cardboard Box (30 Days)","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_ITEM_PAPERBOX"}},{"itemId":900205,"className":"Event_160908_6_14d","name":"Jumbo Dumpling (14 Days)","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddTeamBuff","strArg":"Event_LargeSongPyeon","numArg2":1800000}},{"itemId":900212,"className":"Event_170119_1","name":"Rice Cake Soup","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddTeamBuff","strArg":"Event_Rice_Soup","numArg2":1800000}},{"itemId":900213,"className":"Event_170119_2","name":"Special Rice Cake Soup","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddTeamBuff","strArg":"Event_LargeRice_Soup","numArg2":1800000}},{"itemId":900230,"className":"Event_RandomNumber","name":"Random Number Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_RANDOMNUMBER"}},{"itemId":900232,"className":"Event_WhiteDay_Candy_1","name":"Strawberry Candy","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_WhiteDay_Candy_1","numArg2":300000}},{"itemId":900233,"className":"Event_WhiteDay_Candy_2","name":"Soda Candy","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_WhiteDay_Candy_2","numArg2":300000}},{"itemId":900234,"className":"Event_WhiteDay_Candy_3","name":"Tutti Frutti Candy","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHPSP_Dot","numArg1":500}},{"itemId":900235,"className":"Event_WhiteDay_Candy_4","name":"Lemon Candy","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_WhiteDay_Candy_4","numArg2":300000}},{"itemId":900238,"className":"Event_ManWoo_1","name":"April Feather","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_BUFF_ENTER_Event_ManwooBuff1","numArg2":300000}},{"itemId":900240,"className":"Event_Fire_Songpyeon","name":"Special Firecracker (1 Day)","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddTeamBuff","strArg":"Event_FireSongPyeon","numArg2":1800000}},{"itemId":900242,"className":"Event_Warp_Dungeon_Lv50","name":"Underground Chapel Dungeon Warp Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":50,"script":{"function":"SCR_USE_ITEM_Dungeon_Lv50"}},{"itemId":900243,"className":"Event_Warp_Dungeon_Lv80","name":"Historic Site Ruins Dungeon Warp Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":80,"script":{"function":"SCR_USE_ITEM_Dungeon_Lv80"}},{"itemId":900244,"className":"Event_Warp_Dungeon_Lv100","name":"Mercenary Post Warp Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_USE_ITEM_Dungeon_Lv100"}},{"itemId":900245,"className":"Event_Warp_Dungeon_Lv100_2","name":"Tavorh Cave Hunting Grounds Warp Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_USE_ITEM_Dungeon_Lv100_2"}},{"itemId":900246,"className":"Event_Warp_Dungeon_Lv110","name":"Monument of Desire Dungeon Warp Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":110,"script":{"function":"SCR_USE_ITEM_Dungeon_Lv110"}},{"itemId":900247,"className":"Event_Warp_Dungeon_Lv120","name":"Saalus Convent Warp Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":120,"script":{"function":"SCR_USE_ITEM_Dungeon_Lv120"}},{"itemId":900248,"className":"Event_Warp_Dungeon_Lv140","name":"Fallen Legwyn Family Dungeon Warp Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":140,"script":{"function":"SCR_USE_ITEM_Dungeon_Lv140"}},{"itemId":900249,"className":"Event_Warp_Dungeon_Lv150","name":"Narcon Prison Hunting Grounds Warp Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":150,"script":{"function":"SCR_USE_ITEM_Dungeon_Lv150"}},{"itemId":900250,"className":"Event_Warp_Dungeon_Lv170","name":"Hollow Thorn Forest Dungeon Warp Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":170,"script":{"function":"SCR_USE_ITEM_Dungeon_Lv170"}},{"itemId":900251,"className":"Event_Warp_Dungeon_Lv170_2","name":"Natarh Watchtower Hunting Grounds Warp Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":170,"script":{"function":"SCR_USE_ITEM_Dungeon_Lv170_2"}},{"itemId":900252,"className":"Event_Warp_Dungeon_Lv190","name":"Tatenye Prison Hunting Grounds Warp Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":190,"script":{"function":"SCR_USE_ITEM_Dungeon_Lv190"}},{"itemId":900253,"className":"Event_Warp_Dungeon_Lv200","name":"Archmage Tower Dungeon Warp Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":200,"script":{"function":"SCR_USE_ITEM_Dungeon_Lv200"}},{"itemId":900254,"className":"Event_Warp_Dungeon_Lv210_2","name":"Neighport Church East Building Hunting Grounds Warp Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":210,"script":{"function":"SCR_USE_ITEM_Dungeon_Lv210_2"}},{"itemId":900255,"className":"Event_Warp_Dungeon_Lv230","name":"Catacombs Underground Dungeon Warp Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":230,"script":{"function":"SCR_USE_ITEM_Dungeon_Lv230"}},{"itemId":900256,"className":"Event_Warp_Dungeon_Lv230_2","name":"Sjarejo Chamber Hunting Grounds Warp Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":230,"script":{"function":"SCR_USE_ITEM_Dungeon_Lv230_2"}},{"itemId":900257,"className":"Event_Warp_Dungeon_Lv240_2","name":"Netanmalek Mausoleum Hunting Grounds Warp Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":240,"script":{"function":"SCR_USE_ITEM_Dungeon_Lv240_2"}},{"itemId":900258,"className":"Event_Warp_Dungeon_Lv260","name":"Blue Fortress Dungeon Warp Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":260,"script":{"function":"SCR_USE_ITEM_Dungeon_Lv260"}},{"itemId":900259,"className":"Event_Warp_Dungeon_Lv260_2","name":"Earth Tower Warp Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":260,"script":{"function":"SCR_USE_ITEM_Dungeon_Lv260_2"}},{"itemId":900260,"className":"Event_Warp_Dungeon_Lv290","name":"Castle Dungeon Warp Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":290,"script":{"function":"SCR_USE_ITEM_Dungeon_Lv290"}},{"itemId":900261,"className":"Event_Guide_Cube_1","name":"Boost Pack","type":"Consume","group":"Drug","weight":1,"maxStack":19,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_Guide_Cube_1"}},{"itemId":900262,"className":"Event_BaseItem_WepBox_315","name":"Material Box: LV 315","type":"Consume","group":"Drug","weight":1,"maxStack":19,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_BASEITEM_WEPBOX_315"}},{"itemId":900263,"className":"Event_MonCard_Box_170404","name":"Monster Card Cube","type":"Consume","group":"Drug","weight":1,"maxStack":19,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_MONCARDBOX_170404"}},{"itemId":900299,"className":"Event_1704_Drug_Fortunecookie","name":"[Level Up Event] Fortune Cookie","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_Item","strArg":"Premium_Fortunecookie","numArg2":1800000}},{"itemId":900300,"className":"Event_1704_Goddess_Statue","name":"[Re:Build] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":900317,"className":"Event_Nru_Always_Box_1","name":"Boost Pack","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":5,"script":{"function":"SCR_USE_EVENT_NRU_BOX_1"}},{"itemId":900318,"className":"Event_Nru_Always_Box_2","name":"Boost Pack","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":10,"script":{"function":"SCR_USE_EVENT_NRU_BOX_2"}},{"itemId":900319,"className":"Event_Nru_Always_Box_3","name":"Boost Pack","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":15,"script":{"function":"SCR_USE_EVENT_NRU_BOX_3"}},{"itemId":900320,"className":"Event_Nru_Always_Box_4","name":"Boost Pack","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":30,"script":{"function":"SCR_USE_EVENT_NRU_BOX_4"}},{"itemId":900321,"className":"Event_Nru_Always_Box_5","name":"Boost Pack","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":50,"script":{"function":"SCR_USE_EVENT_NRU_BOX_5"}},{"itemId":900322,"className":"Event_Nru_Always_Box_6","name":"Boost Pack","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":80,"script":{"function":"SCR_USE_EVENT_NRU_BOX_6"}},{"itemId":900323,"className":"Event_Nru_Always_Box_7","name":"Boost Pack","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_USE_EVENT_NRU_BOX_7"}},{"itemId":900324,"className":"Event_Danoh_Item_1","name":"Bamboo Leaves","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_Danoh_1"}},{"itemId":900325,"className":"Event_Danoh_Item_2","name":"Pork","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_Danoh_2"}},{"itemId":900326,"className":"Event_Danoh_Item_3","name":"Sticky Rice","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHPSP_Dot","numArg1":500}},{"itemId":900327,"className":"Event_Danoh_Item_4","name":"Shiitake Mushrooms","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_Danoh_3"}},{"itemId":900328,"className":"Event_Danoh_Item_5","name":"Zongzi","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddTeamBuff","strArg":"Event_Danoh_4"}},{"itemId":900329,"className":"Achieve_FinestMoment","name":"Title - Finest Moment","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_FINESTMOMENT","strArg":"Normal"}},{"itemId":900330,"className":"Event_WeddingCake","name":"Wedding Cake","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_WeddingCake","numArg2":3600000}},{"itemId":900331,"className":"Scroll_Transform_Monster_Steam","name":"Special Transformation Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GM_TRANSFORM_GM"}},{"itemId":900332,"className":"E_misc_paperBox_party","name":"Festival Cardboard Box","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_ITEM_PAPERBOX"}},{"itemId":900341,"className":"Event_Steam_Wedding_Fire","name":"Party Firecracker (14 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddTeamBuff","strArg":"Event_Steam_Wedding","numArg2":3600000}},{"itemId":900342,"className":"Event_Umbrella","name":"Colorful Umbrella","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_Umbrella","strArg":"Event_Umbrella_1","numArg2":1800000}},{"itemId":900387,"className":"Achieve_GivingShade","name":"Title - Giving Shade","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_GIVINGSHADE","strArg":"Normal"}},{"itemId":900409,"className":"161215Event_Seed_EVENT_1710_NEWCHARACTER","name":"[Re:Build] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":900411,"className":"Drug_Event_Looting_Potion_14d","name":"Looting Chance Potion (14 Days)","type":"Consume","group":"Drug","weight":5,"maxStack":1,"price":0,"sellPrice":25,"minLevel":1,"script":{"function":"SCR_USE_ITEM_LOOTINGCHANCE_POTION","numArg1":100,"numArg2":1800000}},{"itemId":900417,"className":"EVENT_1803_NEWCHARACTER_ACHIEVE_BOX","name":"[Re:Build] Title - Ultimate Savior","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1803_NEWCHARACTER_ACHIEVE_BOX","strArg":"Normal"}},{"itemId":900419,"className":"EVENT_1805_NEWCHARACTER_ACHIEVE_BOX","name":"[Re:Build] Title - Receiver of the Revelations","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1805_NEWCHARACTER_ACHIEVE_BOX","strArg":"Normal"}},{"itemId":902000,"className":"Event_1710_Thanksgiving_Coin","name":"Pitch-pot","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Event_1710_Thanksgiving_Coin"}},{"itemId":902001,"className":"Event_1709_NewField_Coupon","name":"Invitation Badge","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_1709_NewField_Coupon","numArg1":1,"numArg2":600000}},{"itemId":902004,"className":"Achieve_Fanart_JP_01","name":"ITEM_20230424_028506","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_FANART_JP_01","strArg":"Normal"}},{"itemId":902019,"className":"Achieve_MonsterInker","name":"Title - Monster Inker","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_MONSTERINKER","strArg":"Normal"}},{"itemId":902022,"className":"Event_Halloween_Squib","name":"Halloween Firecracker","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff"}},{"itemId":902032,"className":"Achieve_Companions_forLife","name":"Title - Companions for Life","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_COMPANIONFORLIFE","strArg":"Normal"}},{"itemId":902034,"className":"Achieve_Journal_1","name":"Title - First-rate Adventurer","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_JOURNAL_AP1","strArg":"Normal"}},{"itemId":902035,"className":"Event_Fire_SecondTime","name":"2nd Anniversary Firecracker","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff"}},{"itemId":902037,"className":"EVENT_1712_XMAS_FIRE","name":"[Jolly] Christmas Firecracker","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_2212_LAST_CHRISTMAS_FIRE"}},{"itemId":902041,"className":"Achieve_TheGiftedArtist2","name":"Title - The Gifted Artist","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_THEGIFTEDARTIST2","strArg":"Normal"}},{"itemId":902042,"className":"Event_Goddess_Statue_3d","name":"Goddess Sculpture (3 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":902043,"className":"Adventure_Reward_Seed_3d","name":"Miracle Seeds (3 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":902044,"className":"Event_Steam_Update_Warp","name":"Warp Scroll - Nazarene Tower","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":330,"script":{"function":"SCR_USE_ITEM_Dungeon_Lv340"}},{"itemId":902046,"className":"Snow_Card_Book","name":"Frozen Monster Card Album","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_SUMMON_MONSTER_FROM_CARDBOOK","strArg":"Red/Blue/Green/Purple"}},{"itemId":902053,"className":"Event_Steam_Happy_New_Year","name":"New Year's Soup (3 Days)","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddTeamBuff","strArg":"Event_Rice_Soup","numArg2":1800000}},{"itemId":902057,"className":"Scroll_Transform_Random_1day","name":"[Event] Transformation Scroll (1 Day)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_TRANSFORM_SCROLL"}},{"itemId":902058,"className":"Achieve_2018Happy_New_Year_Steam","name":"Title - 2018 Happy New Year","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_STEAM2018HAPPYNEWYEAR","strArg":"Normal"}},{"itemId":902063,"className":"Achieve_NewClassArtist_Steam","name":"Title - New Class Artist","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_NEWCLASSARTIST","strArg":"Normal"}},{"itemId":902065,"className":"Event_Steam_Night_Market_Drug_redox","name":"Limited Edition Red Ox","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_Event_Steam_Night_Market_RedOxBuff"}},{"itemId":902072,"className":"EVENT_1802_NEWYEAR_FORTUNEPOUCH","name":"Golden Dog Lucky Pouch","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1802_NEWYEAR_FORTUNEPOUCH"}},{"itemId":902073,"className":"EVENT_1802_NEWYEAR_ACHIEVE","name":"Title - 2018 Lucky Year","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1802_NEWYEAR_ACHIEVE","strArg":"Normal"}},{"itemId":902074,"className":"Achieve_GoldRanker","name":"Title - TBL 1st Place","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_TEAMBATTLE_ERROR","strArg":"Normal","numArg1":1}},{"itemId":902075,"className":"Achieve_SilverRanker","name":"Title - TBL 2nd","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_TEAMBATTLE_ERROR","strArg":"Normal","numArg1":2}},{"itemId":902076,"className":"Achieve_BronzeRanker","name":"Title - TBL 3rd","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_TEAMBATTLE_ERROR","strArg":"Normal","numArg1":3}},{"itemId":902077,"className":"Event_2018VALENTINE_Choco","name":" Box of Chocolates","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_VALENTINE_CHOCO_2018","strArg":"Normal"}},{"itemId":902078,"className":"EVENT_1802_CHOCO","name":"Sweet Valentine Chocolates","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1802_CHOCO","numArg2":1800000}},{"itemId":902105,"className":"Achieve_Event_Steam_Honorary","name":"Title - Honorary TPP Reporter","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_Steam_Honorary","strArg":"Normal"}},{"itemId":902107,"className":"Achieve_Event_Steam_Magazine_Num1","name":"Title - Crystal Mine Revelator","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_Steam_Magazine_Num1","strArg":"Normal"}},{"itemId":902108,"className":"Achieve_Event_Steam_Colony_Tester","name":"Title - No. 1 Territory Wars Tester","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_Event_Steam_Colony_Tester","strArg":"Normal"}},{"itemId":902109,"className":"Achieve_Event_Grand_Contributor","name":"Title - Grand Contributor","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"Achieve_Event_Grand_Contributor","strArg":"Normal"}},{"itemId":902110,"className":"Achieve_Event_Fashionista","name":"Title - TOS Fashionista","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"Achieve_Event_Fashionista","strArg":"Normal"}},{"itemId":902111,"className":"Achieve_Event_Creative_TPP_Player","name":"Title - Creative TPP Player","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"Achieve_Event_Creative_TPP_Player","strArg":"Normal"}},{"itemId":902113,"className":"Event_Steam_Cursed_Coast_Soul","name":"Cursed Spirit","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_Cursed_Coast_Buff","numArg2":600000}},{"itemId":902114,"className":"Achieve_Event_Loving_Summer","name":"Title - Loving Summer","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"Achieve_Event_Loving_Summer","strArg":"Normal"}},{"itemId":902118,"className":"Achieve_Event_With_Friend","name":"Title - With Friend","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"Achieve_Event_With_Friend","strArg":"Normal"}},{"itemId":902119,"className":"Achieve_Event_Game_Guide_Creator","name":"Title - Game Guide Creator","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"Achieve_Event_Game_Guide_Creator","strArg":"Normal"}},{"itemId":902122,"className":"Achieve_Fanart_JP_02","name":"ITEM_20230424_028513","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_FANART_JP_02","strArg":"Normal"}},{"itemId":902125,"className":"Achieve_Event_Horror_Night","name":"Title - Horror Night","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"Achieve_Event_Horror_Night","strArg":"Normal"}},{"itemId":902134,"className":"Achieve_Event_Weapon_Designer","name":"Title - TOS Weapon Designer","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"Achieve_Event_Weapon_Designer","strArg":"Normal"}},{"itemId":902135,"className":"Achieve_Event_Happy_Ever_After","name":"Title - Happy Ever After","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"Achieve_Event_Happy_Ever_After","strArg":"Normal"}},{"itemId":902136,"className":"Achieve_Event_Wonderful_ToS_life","name":"Title - Wonderful ToS life","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"Achieve_Event_Wonderful_ToS_life","strArg":"Normal"}},{"itemId":902141,"className":"Achieve_Event_2019_New_Year_Artist","name":"Title - New Year Artist","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"Achieve_Event_2019_New_Year_Artist","strArg":"Normal"}},{"itemId":902142,"className":"Achieve_Event_Gold_Pig_JP","name":"ITEM_20230424_028520","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"Achieve_Event_Gold_Pig_JP","strArg":"Normal"}},{"itemId":902143,"className":"Achieve_Event_KePa_JP","name":"ITEM_20230424_028521","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"Achieve_Event_KePa_JP","strArg":"Normal"}},{"itemId":902146,"className":"Event_Steam_PoPo_Point_100","name":"PP Shop 100 Points Voucher","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"PoPoPoint_100","numArg1":100}},{"itemId":902147,"className":"Event_Steam_PoPo_Point_500","name":"PP Shop 500 Points Voucher","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"PoPoPoint_500","numArg1":500}},{"itemId":902148,"className":"Event_Steam_PoPo_Point_1000","name":"PP Shop 1,000 Points Voucher","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"PoPoPoint_1000","numArg1":1000}},{"itemId":902149,"className":"Steam_HP_Potion_1Day","name":"HP Potion (1 Day)","type":"Consume","group":"Drug","weight":3,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Steam_Drug_Heal100HP_Dot","numArg1":40,"numArg2":11000}},{"itemId":902150,"className":"Steam_HP_Potion_7Day","name":"HP Potion (7 Days)","type":"Consume","group":"Drug","weight":3,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Steam_Drug_Heal100HP_Dot","numArg1":40,"numArg2":11000}},{"itemId":902151,"className":"Steam_SP_Potion_1Day","name":"SP Potion (1 Day)","type":"Consume","group":"Drug","weight":3,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Steam_Drug_Heal100SP_Dot","numArg1":40,"numArg2":11000}},{"itemId":902152,"className":"Steam_SP_Potion_7Day","name":"SP Potion (7 Days)","type":"Consume","group":"Drug","weight":3,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Steam_Drug_Heal100SP_Dot","numArg1":40,"numArg2":11000}},{"itemId":902153,"className":"Steam_Event_Carnival_Fire","name":"Festival Firecracker","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_Steam_Carnival_Fire","numArg1":1,"numArg2":600000}},{"itemId":902155,"className":"Achieve_Event_JP_GILTINE","name":"ITEM_20230424_028526","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"Achieve_Event_JP_GILTINE","strArg":"Normal"}},{"itemId":902156,"className":"Achieve_Event_Steam_Content_Creator","name":"Title - Content Creator","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"Achieve_Event_Steam_Content_Creator","strArg":"Normal"}},{"itemId":902157,"className":"Achieve_Event_Steam_Happy_Anniversary","name":"Title - Happy Anniversary","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"Achieve_Event_Steam_Happy_Anniversary","strArg":"Normal"}},{"itemId":902165,"className":"Achieve_Event_Steam_Guide_Master","name":"Title - Guide Master","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"Achieve_Event_Steam_Guide_Master","strArg":"Normal"}},{"itemId":902169,"className":"Achieve_Event_Twn_3Years_Chupacabra","name":"Title - My Buddy Chupacabra","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"Achieve_Event_Twn_3Years_Chupacabra","strArg":"Normal"}},{"itemId":904006,"className":"EVENT_KOR_Fortunecookie","name":"Fortune Cookie","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_KOR_Fortunecookie"}},{"itemId":904007,"className":"Achieve_Event_Happy2Year_Steam","name":"Title - Happy 2nd Anniversary!","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_HAPPY2YEAR_STEAM","strArg":"Normal"}},{"itemId":904008,"className":"EVENT_1803_NEWCLASS_BOX_RTA","name":"Retiarius Ruidarius Costume Box","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1803_NEWCLASS_BOX_RTA","strArg":"Normal"}},{"itemId":904009,"className":"EVENT_1803_NEWCLASS_BOX_OMJ","name":"Onmyoji Royal Court Costume Box ","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1803_NEWCLASS_BOX_OMJ","strArg":"Normal"}},{"itemId":904010,"className":"161215Event_Seed_1d","name":"Miracle Seeds (1 Day)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":904017,"className":"EVENT_1804_ARBOR_ACHIEVE_BOX","name":"Title - Tree Lover","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1804_ARBOR_ACHIEVE_BOX","strArg":"Normal"}},{"itemId":904019,"className":"EVENT_1804_ROOT_ACHIEVE_BOX","name":"Title - Root Crystal Finder","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1804_ROOT_ACHIEVE_BOX","strArg":"Normal"}},{"itemId":904023,"className":"EVENT_1804_TRANSCEND_SHOP_SILVER_BOX_14D","name":"Blessed Silver Box (14 Days)","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1804_TRANSCEND_SHOP_SILVER_BOX_14D","numArg1":10000}},{"itemId":904024,"className":"EVENT_1804_TRANSCEND_SHOP_REINFORCE_BOX_14D","name":"Blessed Enhancement Cube (14 Days)","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1804_TRANSCEND_SHOP_REINFORCE_BOX_14D","numArg1":10000}},{"itemId":904025,"className":"EVENT_1804_TRANSCEND_SHOP_COSTUME_BOX_14D","name":"Best Of Event Costumes Cube (14 Days)","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1804_TRANSCEND_SHOP_COSTUME_BOX_14D","numArg1":10000}},{"itemId":904027,"className":"MISSION_SURVIVAL_EVENT2_ACHIEVE_BOX","name":"Title - Daredevil","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_MISSION_SURVIVAL_EVENT2_ACHIEVE_BOX","strArg":"Normal"}},{"itemId":904030,"className":"EVENT_BEAUTY_CHAIR","name":"Barbershop Chair","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SHARED_ANIM","strArg":"BARBERSHOP_CHAIR"}},{"itemId":904031,"className":"EVENT_1805_CHILDREN","name":"Firecrackers","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddTeamBuff","strArg":"EVENT_1805_CHILDREN","numArg2":1800000}},{"itemId":904032,"className":"EVENT_1805_NEWCLASS_BOX_PDP","name":"Pied Piper Master's Bergefuehrender Costume Box","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1805_NEWCLASS_BOX_PDP","strArg":"Normal"}},{"itemId":904033,"className":"EVENT_1805_NEWCLASS_BOX_EXO","name":"Exorcist Concordat Costume Box","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1805_NEWCLASS_BOX_EXO","strArg":"Normal"}},{"itemId":904034,"className":"EVENT_NEARALL_ANIM","name":"Mystery Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_NEARALL_ANIM"}},{"itemId":904035,"className":"EVENT_1805_NEWUSER_MEDAL","name":"Symbol of Unity","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1805_NEWUSER_MEDAL"}},{"itemId":904036,"className":"EVENT_1805_NEWUSER_ACHIEVE_BOX","name":"Title - New Friend","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_1805_NEWUSER_ACHIEVE"}},{"itemId":904037,"className":"EVENT_1805_GUILD_CARD_LV4","name":"Guild Lv 4 EXP Card","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1805_GUILD_CARD_LV4","strArg":"EVENT_1805_NEWUSER_ACHIEVE"}},{"itemId":904038,"className":"EVENT_1805_GUILD_QUEST_MEDAL","name":"Symbol of Guild Membership","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1805_GUILD_QUEST_MEDAL"}},{"itemId":904039,"className":"EVENT_1805_GUILD_QUEST_ACHIEVE_BOX","name":"Title - Love My Guild","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_1805_GUILD_QUEST_ACHIEVE"}},{"itemId":904040,"className":"EVENT_1806_Penalty_Shoot","name":"Penalty Shoot-Out","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_PENALTY_SHOOT"}},{"itemId":904042,"className":"EVENT_1805_SLATE_ACHIEVE_BOX","name":"Stone Plate Collector","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_1805_SLATE_ACHIEVE"}},{"itemId":904045,"className":"EVENT_1806_SOCCER_ACHIEVE_BOX","name":"Title - Big Scorer","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_1806_SOCCER_ACHIEVE"}},{"itemId":904046,"className":"EVENT_1806_MASCOT_1_ACHIEVE_BOX","name":"Title - Klaipeda Capricorns Supporter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_1806_MASCOT_1_ACHIEVE"}},{"itemId":904047,"className":"EVENT_1806_MASCOT_2_ACHIEVE_BOX","name":"Title - Orsha Lions Supporter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_1806_MASCOT_2_ACHIEVE"}},{"itemId":904048,"className":"EVENT_1806_STORY_1_TRAINING_FLUTE","name":"Carrier Hawk Whistle ","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1806_STORY_1_TRAINING_FLUTE"}},{"itemId":904052,"className":"EVENT_1807_POOL_BROCHETTE","name":"[Beach Bar] BBQ Prawn Skewers","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1807_POOL_BROCHETTE","strArg":"food_brochette"}},{"itemId":904053,"className":"EVENT_1807_POOL_MOJITO","name":"[Beach Bar] Blue Lemonade","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1807_POOL_MOJITO","strArg":"food_mojito"}},{"itemId":904054,"className":"EVENT_1807_POOL_COCONUT","name":"[Beach Bar] Fresh Coconut Water","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1807_POOL_COCONUT","strArg":"skl_assistattack_food_coconut"}},{"itemId":904055,"className":"EVENT_1807_POOL_GRILLEDFISH","name":"Braised Fish","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1807_POOL_ABILITYPOINT","strArg":"food_grilledfish","numArg1":100}},{"itemId":904056,"className":"EVENT_1807_POOL_PAELLA","name":"Prawn Gratin","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1807_POOL_ABILITYPOINT","strArg":"food_paella","numArg1":500}},{"itemId":904058,"className":"EVENT_1807_BALL_CRACKER","name":"Fireworks","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1807_BALL_CRACKER"}},{"itemId":904059,"className":"Adventure_Reward_Seed_14d","name":"Miracle Seeds (14 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":904060,"className":"EVENT_PC_ROOM_1_ACHIEVE_BOX","name":"ITEM_20230425_028586","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_PCBANG_TOTAL_ACCUMULATED_ACHIEVE_BOX","strArg":"PC_ROOM_ACHIEVE1"}},{"itemId":904061,"className":"EVENT_PC_ROOM_2_ACHIEVE_BOX","name":"ITEM_20230425_028588","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_PCBANG_TOTAL_ACCUMULATED_ACHIEVE_BOX","strArg":"PC_ROOM_ACHIEVE2"}},{"itemId":904062,"className":"EVENT_PC_ROOM_3_ACHIEVE_BOX","name":"ITEM_20230425_028590","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_PCBANG_TOTAL_ACCUMULATED_ACHIEVE_BOX","strArg":"PC_ROOM_ACHIEVE3"}},{"itemId":904063,"className":"EVENT_PC_ROOM_4_ACHIEVE_BOX","name":"ITEM_20230425_028592","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_PCBANG_TOTAL_ACCUMULATED_ACHIEVE_BOX","strArg":"PC_ROOM_ACHIEVE4"}},{"itemId":904064,"className":"EVENT_PC_ROOM_5_ACHIEVE_BOX","name":"ITEM_20230425_028594","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_PCBANG_TOTAL_ACCUMULATED_ACHIEVE_BOX","strArg":"PC_ROOM_ACHIEVE5"}},{"itemId":904065,"className":"EVENT_PC_ROOM_6_ACHIEVE_BOX","name":"ITEM_20230425_028596","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_PCBANG_TOTAL_ACCUMULATED_ACHIEVE_BOX","strArg":"PC_ROOM_ACHIEVE6"}},{"itemId":904066,"className":"Colony_Event_Reward_Seed_14d","name":"Miracle Seeds (14 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":904084,"className":"WEB_PROPOSAL_1_ACHIEVE_BOX","name":"Title - Little Lightbulb","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"WEB_PROPOSAL_1"}},{"itemId":904085,"className":"WEB_PROPOSAL_2_ACHIEVE_BOX","name":"Title - Idea Bank","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"WEB_PROPOSAL_2"}},{"itemId":904086,"className":"WEB_PROPOSAL_3_ACHIEVE_BOX","name":"Title - Idea Master","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"WEB_PROPOSAL_3"}},{"itemId":904087,"className":"EVENT_LAB_1808_ACHIEVE_BOX_1","name":"Title - TOS Popular Researcher","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"Event_1710_Lab_2_2"}},{"itemId":904088,"className":"EVENT_LAB_1808_ACHIEVE_BOX_2","name":"Title - TOS 3-Time Researcher","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"Event_1808_Lab_3_1"}},{"itemId":904092,"className":"EVENT_1809_UCC_ACHIEVE_BOX","name":"Title - Here to Party","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_1809_UCC_ACHIEVE"}},{"itemId":904094,"className":"EVENT_1809_CHUSEOK_MOON_ACHIEVE_BOX","name":"Title - Waiting for a Full Moon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_1809_CHUSEOK_MOON_ACHIEVE"}},{"itemId":904099,"className":"COLONYWAR_KOR_BETA_REWARD_ACHIEVE_BOX","name":"Title - Territory Vanguard","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"COLONYWAR_KOR_BETA_REWARD_ACHIEVE"}},{"itemId":904101,"className":"Adventure_Reward_Seed_14d_Team","name":"Miracle Seeds (14 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":904102,"className":"Event_Goddess_Statue_Team","name":"Goddess Sculpture (14 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":904103,"className":"EVENT_1809_OTP_ACHIEVE1_BOX","name":"Title - Safely Guarded","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_1809_OTP_ACHIEVE1"}},{"itemId":904107,"className":"EVENT_1811_NEWCLASS_BOX_ASS","name":"Assassin Lizdas Phoenix Costume Box","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1811_NEWCLASS_BOX_ASS","strArg":"Normal"}},{"itemId":904108,"className":"EVENT_1811_NEWCLASS_BOX_OUL","name":"Outlaw Desperado Attire Costume Box","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1811_NEWCLASS_BOX_OUL","strArg":"Normal"}},{"itemId":904136,"className":"EVENT_LAB_1901_ACHIEVE_BOX","name":"Title - TOS 4-Time Researcher","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"Event_1901_Lab_4"}},{"itemId":904150,"className":"EVENT_NEW_FACE_ACHIEVE_BOX","name":"Title - Budding Sprout","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_NEW_FACE_ACHIEVE"}},{"itemId":904167,"className":"EVENT_1906_GUILD_QUEST_ACHIEVE_BOX","name":"Title - Core Member","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_1906_GUILD_QUEST_ACHIEVE"}},{"itemId":904179,"className":"EVENT_190919_ANCIENT_MONSTER_PIECE","name":"Grimoire Page","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE"}},{"itemId":904180,"className":"EVENT_190919_ANCIENT_SCROLL","name":"[Event] Monster Selection Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_GACHA_TEMP"}},{"itemId":904195,"className":"event1909_ricecake_king_honey","name":"[Event] Honey Dumpling","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddTeamBuff","strArg":"Event_Largehoney_Songpyeon","numArg2":1800000}},{"itemId":904196,"className":"event1909_ricecake_king","name":"[Event] Jumbo Dumpling","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddTeamBuff","strArg":"Event_LargeSongPyeon","numArg2":1800000}},{"itemId":904197,"className":"event1909_ricecake","name":"[Event] Dumpling","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_SongPyeon","numArg2":900000}},{"itemId":904215,"className":"Event_Uphill_Store_Point_500_14d","name":"Uphill Defense Shop Points: 400 (14 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GIVE_UPHILL_STORE_POINT","numArg1":500}},{"itemId":904216,"className":"Event_Uphill_Store_Point_1000_14d","name":"Uphill Defense Shop Points: 1000 (14 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GIVE_UPHILL_STORE_POINT","numArg1":1000}},{"itemId":904217,"className":"Event_Uphill_Store_Point_3000_14d","name":"Uphill Defense Shop Points: 3000 (14 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GIVE_UPHILL_STORE_POINT","numArg1":3000}},{"itemId":904218,"className":"Event_Drug_Looting_Potion_500_14d","name":"Looting Chance: 500 (14 Days)","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_LOOTINGCHANCE_POTION","numArg1":500,"numArg2":3600000}},{"itemId":904225,"className":"EVENT_190919_ANCIENT_SCROLL_RESTORE","name":"[Event] Monster Selection Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"EVENT_1909_USE_SCROLL"}},{"itemId":904227,"className":"EVENT_HALLOWEENCANDY_2","name":"Pumpkin Candy","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1911_HALLOWEEN_CANDY","strArg":"EVENT_1910_HALLOWEEN"}},{"itemId":904231,"className":"Event_collegetestRiceCake","name":"[Event] Bar Rice Cake","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_ricecake","strArg":"event_RiceCake","numArg2":1800000}},{"itemId":904238,"className":"Achieve_Steam_JP_revelator_item","name":"Title - Ancient Revelator","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ACHIEVE_Steam_JP_revelator","strArg":"Normal"}},{"itemId":904252,"className":"Drug_Fortunecookie_2020","name":"[Event]Fortune Cookie","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_Item","strArg":"Premium_Fortunecookie","numArg2":1800000}},{"itemId":904253,"className":"4YEARS_EVENT_JUMPING","name":"[Event] Lv.400 Jumping Box","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_TXBOX_4YEARS_EVENT_JUMPING"}},{"itemId":904263,"className":"Weekly boss raid_Event_01","name":"Weekly Boss Raider","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":440,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"Weekly boss raid_Event_01"}},{"itemId":904266,"className":"artifact_Royal_chair","name":"Helgasercle Chair","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_ANIM_STRING_CHAIR","strArg":"artefact_Royal_chair"}},{"itemId":904267,"className":"Achieve_WeeklyRank_1","name":"Title - Iron Lord","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRank_1"}},{"itemId":904268,"className":"Achieve_WeeklyRank_2","name":"Title - Demon Rose","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRank_2"}},{"itemId":904269,"className":"Achieve_WeeklyRank_3","name":"Title - Mist Bringer","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRank_3"}},{"itemId":904270,"className":"RiftModePortalScroll","name":"Dimensional Collapse Point Portal Scroll","type":"Quest","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"CREATE_RIFT_DUNGEON_PORTAL"}},{"itemId":904271,"className":"EVENT_2002_CHOCO","name":"Even Sweeter Valentine Chocolate","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_2002_CHOCO","numArg2":1800000}},{"itemId":904276,"className":"Achieve_WeeklyRank_4","name":"Title - Beyond The Death","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRank_4"}},{"itemId":904277,"className":"Achieve_WeeklyRank_5","name":"Title - Cowardly Devil","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRank_5"}},{"itemId":904278,"className":"artefact_animal_chair","name":"Blut Chair","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_ANIM_STRING_CHAIR","strArg":"animal_chair"}},{"itemId":904286,"className":"Achieve_WeeklyRank_6","name":"Title - Malicious Delver","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRank_6"}},{"itemId":904287,"className":"Achieve_WeeklyRank_7","name":"Title - Brutal Lord","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRank_7"}},{"itemId":904288,"className":"Achieve_WeeklyRank_8","name":"Title - Implacably Claw","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRank_8"}},{"itemId":904293,"className":"EVENT_2005_NEW_WORLD_CHECK_SCROLL","name":"[Guild Event] Revealing Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_2005_NEW_WORLD_CHECK_SCROLL"}},{"itemId":904294,"className":"EVENT_2005_NEW_WORLD_CARD","name":"[Guild Event] New World Certificate","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_2005_NEW_WORLD_CARD"}},{"itemId":904295,"className":"Achieve_WeeklyRank_9","name":"Title - Desperate Slayer","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRank_9"}},{"itemId":904296,"className":"Achieve_WeeklyRank_10","name":"Title - Absolute Zero","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRank_10"}},{"itemId":904297,"className":"Achieve_WeeklyRank_11","name":"Title - Devil Thorn","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRank_11"}},{"itemId":904298,"className":"Achieve_WeeklyRank_12","name":"Title - Frenzy Circus","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRank_12"}},{"itemId":904308,"className":"Achieve_Overcome Frostbite","name":"Title - Overcome Frostbite","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"glacier_clear"}},{"itemId":904309,"className":"Achieve_Icicle Queen","name":"Title - Icicle Queen","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_SET_IESPROP_glacier_first_kill","strArg":"LEGEND_RAID_GLACIER_HARD"}},{"itemId":904311,"className":"EVENT_2010_NEW_WORLD_CHECK_SCROLL","name":"[Event] Revealing Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_2005_NEW_WORLD_CHECK_SCROLL"}},{"itemId":904312,"className":"EVENT_2010_NEW_WORLD_CARD","name":"[Event] Season Server Certificate","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_2005_NEW_WORLD_CARD"}},{"itemId":904313,"className":"Achieve_WeeklyRank_13","name":"Title - Night Punisher","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRank_13"}},{"itemId":904314,"className":"Achieve_WeeklyRank_14","name":"Title - Trinity Bear","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRank_14"}},{"itemId":904315,"className":"Achieve_WeeklyRank_15","name":"Title - Insight Commander","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRank_15"}},{"itemId":904316,"className":"Achieve_WeeklyRank_16","name":"Title - Chasing The Rabbit","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRank_16"}},{"itemId":904317,"className":"Achieve_Giltine_Auto","name":"Title - Feather Picker","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"Giltine_auto_clear"}},{"itemId":904318,"className":"Event_GLOBAL_210126_1","name":"Straight A's Taffy","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_161110_candy","numArg1":5,"numArg2":1800000}},{"itemId":904320,"className":"Achieve_BeginAPrelude_Silver","name":"Title - Begin A Prelude [Silver]","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_SET_ACHIEVE_POINT","strArg":"Giltine_clear_silver"}},{"itemId":904321,"className":"Achieve_Heart_Of_A_Lion","name":"Title - Heart of a lion","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_TxAchievePoint_STRING","strArg":"Boss_Co_Op_1"}},{"itemId":904322,"className":"Achieve_Reckless_Daredevil","name":"Title - Reckless Daredevil","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_TxAchievePoint_STRING","strArg":"Boss_Co_Op_2"}},{"itemId":904323,"className":"Achieve_Raging_Imperator","name":"Title - Raging Imperator","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_TxAchievePoint_STRING","strArg":"Boss_Co_Op_3"}},{"itemId":904324,"className":"Achieve_Raid_Veteran","name":"Title - Raid Veteran","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_TxAchievePoint_STRING","strArg":"Boss_Co_Op_4"}},{"itemId":904325,"className":"Achieve_Eternal_Warrior","name":"Title - Eternal Warrior","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_TxAchievePoint_STRING","strArg":"Boss_Co_Op_5"}},{"itemId":904333,"className":"Achieve_WeeklyRank_17","name":"Title - Alter Ego","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRank_17"}},{"itemId":904335,"className":"Achieve_WeeklyRank_18","name":"Title - Deadly Illusion","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRank_18"}},{"itemId":904342,"className":"Achieve_WeeklyRank_19","name":"Title - Entrancing Dream","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRank_19"}},{"itemId":904343,"className":"Achieve_PilgrimRank_1","name":"Title - Revival Judgment","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_TxAchievePoint_STRING","strArg":"PilgrimRank_1"}},{"itemId":904344,"className":"Achieve_PilgrimRank_2","name":"Title - Memory of Flame","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_TxAchievePoint_STRING","strArg":"PilgrimRank_2"}},{"itemId":904345,"className":"Achieve_PilgrimRank_3","name":"Title - Perfect Flame","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_TxAchievePoint_STRING","strArg":"PilgrimRank_3"}},{"itemId":904346,"className":"Achieve_WeeklyRank_20","name":"Title - Traitor","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRank_20"}},{"itemId":904347,"className":"Achieve_PilgrimRank_Jellyzele","name":"ITEM_20230424_028528","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_TxAchievePoint_STRING","strArg":"PilgrimRank_4"}},{"itemId":904348,"className":"Achieve_PilgrimRank_Spreader","name":"ITEM_20230424_028529","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_TxAchievePoint_STRING","strArg":"PilgrimRank_5"}},{"itemId":910001,"className":"Scroll_SkillItem","name":"Skill Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":50,"sellPrice":5,"minLevel":1},{"itemId":910005,"className":"Scroll_SkillItem_Cleric_Cure","name":"Skill Scroll [Lv 5 Cure]","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":5,"minLevel":1,"script":{"function":"SCR_USE_SKILL_SCROLL"}},{"itemId":910006,"className":"Scroll_SkillItem_Kriwi_Aukuras","name":"Skill Scroll [Lv 15 Aukuras]","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":5,"minLevel":1,"script":{"function":"SCR_USE_SKILL_SCROLL"}},{"itemId":910007,"className":"Scroll_SkillItem_Kriwi_Zalciai","name":"Skill Scroll [Lv. 5 Zalciai]","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":5,"minLevel":1,"script":{"function":"SCR_USE_SKILL_SCROLL"}},{"itemId":910008,"className":"Scroll_SkillItem_Kriwi_Daino","name":"Skill Scroll [Lv 10 Daino]","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":5,"minLevel":1,"script":{"function":"SCR_USE_SKILL_SCROLL"}},{"itemId":910009,"className":"Scroll_SkillItem_Priest_Monstrance","name":"Skill Scroll [Lv 5 Monstrance]","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":5,"minLevel":1,"script":{"function":"SCR_USE_SKILL_SCROLL"}},{"itemId":910010,"className":"Scroll_SkillItem_Paladin_Restoration","name":"Skill Scroll [Lv 15 Restoration]","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":5,"minLevel":1,"script":{"function":"SCR_USE_SKILL_SCROLL"}},{"itemId":910011,"className":"Scroll_SkillItem_Priest_TurnUndead","name":"Skill Scroll [Lv 15 Turn Undead]","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":5,"minLevel":1,"script":{"function":"SCR_USE_SKILL_SCROLL_TurnUndead"}},{"itemId":910012,"className":"Scroll_SkillItem_Paladin_Barrier","name":"Skill Scroll [Lv 5 Barrier]","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":5,"minLevel":1,"script":{"function":"SCR_USE_SKILL_SCROLL"}},{"itemId":910013,"className":"Scroll_SkillItem_Oracle_ArcaneEnergy","name":"Skill Scroll [Lv 15 Arcane Energy]","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":5,"minLevel":1,"script":{"function":"SCR_USE_SKILL_SCROLL"}},{"itemId":910014,"className":"Scroll_SkillItem_Oracle_Clairvoyance","name":"Skill Scroll [Lv 1 Clairvoyance]","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":5,"minLevel":1,"script":{"function":"SCR_USE_SKILL_SCROLL"}},{"itemId":910015,"className":"Scroll_SkillItem_Wizard_MagicMissile","name":"Skill Scroll [Lv 5 Magic Missile]","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":5,"minLevel":1,"script":{"function":"SCR_USE_SKILL_SCROLL"}},{"itemId":910016,"className":"Scroll_SkillItem_Pyromancer_EnchantFire","name":"Skill Scroll [Lv 15 Enchant Fire]","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":5,"minLevel":1,"script":{"function":"SCR_USE_SKILL_SCROLL"}},{"itemId":910017,"className":"Scroll_SkillItem_Pyromancer_FlameGround","name":"Skill Scroll [Lv 15 Flame Ground]","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":5,"minLevel":1,"script":{"function":"SCR_USE_SKILL_SCROLL"}},{"itemId":910018,"className":"Scroll_SkillItem_Warlock_PoleofAgony","name":"Skill Scroll [Lv 10 Pole of Agony]","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":50,"sellPrice":5,"minLevel":1,"script":{"function":"SCR_USE_SKILL_SCROLL"}},{"itemId":1210000,"className":"PersonalHousing_Item_hp_barrack_06_carpet_1","name":"[Personal Housing] Angler Rug","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":800000,"sellPrice":80000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_06_carpet_1","numArg1":80000}},{"itemId":1210001,"className":"PersonalHousing_Item_hp_barrack_06_chair_1","name":"[Personal Housing] Angler Chair","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_06_chair_1","numArg1":60000}},{"itemId":1210002,"className":"PersonalHousing_Item_hp_barrack_06_desk_1","name":"[Personal Housing] Angler Desk","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1200000,"sellPrice":120000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_06_desk_1","numArg1":120000}},{"itemId":1210003,"className":"PersonalHousing_Item_hp_barrack_06_fishlamp_1","name":"[Personal Housing] Angler Fish Lamp","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":800000,"sellPrice":80000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_06_fishlamp_1","numArg1":80000}},{"itemId":1210004,"className":"PersonalHousing_Item_hp_barrack_06_fishrod_1","name":"[Personal Housing] Angler Fishing Rod","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":500000,"sellPrice":50000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_06_fishrod_1","numArg1":50000}},{"itemId":1210005,"className":"PersonalHousing_Item_hp_barrack_06_fishtank_01_1","name":"[Personal Housing] Angler Rectangular Fish Tank","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":900000,"sellPrice":90000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_06_fishtank_01_1","numArg1":90000}},{"itemId":1210006,"className":"PersonalHousing_Item_hp_barrack_06_fishtank_02_1","name":"[Personal Housing] Angler Round Fish Tank","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":900000,"sellPrice":90000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_06_fishtank_02_1","numArg1":90000}},{"itemId":1210007,"className":"PersonalHousing_Item_hp_barrack_06_frame_1","name":"[Personal Housing] Angler Marlin Mount","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":500000,"sellPrice":50000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_06_frame_1","numArg1":50000}},{"itemId":1210008,"className":"PersonalHousing_Item_hp_barrack_06_lamp_1","name":"[Personal Housing] Angler Oil Lamp","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":500000,"sellPrice":50000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_06_lamp_1","numArg1":50000}},{"itemId":1210009,"className":"PersonalHousing_Item_hp_barrack_06_mapboard_1","name":"[Personal Housing] Angler Fishing Map","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":500000,"sellPrice":50000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_06_mapboard_1","numArg1":50000}},{"itemId":1210010,"className":"PersonalHousing_Item_hp_barrack_06_partiton_01_1","name":"[Personal Housing] Angler Handrail","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_06_partiton_01_1","numArg1":60000}},{"itemId":1210011,"className":"PersonalHousing_Item_hp_barrack_06_partiton_02_1","name":"[Personal Housing] Angler Partition A","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_06_partiton_02_1","numArg1":60000}},{"itemId":1210012,"className":"PersonalHousing_Item_hp_barrack_06_partiton_03_1","name":"[Personal Housing] Angler Partition B","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":700000,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_06_partiton_03_1","numArg1":70000}},{"itemId":1210013,"className":"PersonalHousing_Item_hp_barrack_06_rodstand_1","name":"[Personal Housing] Angler Fishing Rod Rack","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_06_rodstand_1","numArg1":60000}},{"itemId":1210014,"className":"PersonalHousing_Item_hp_barrack_06_rug_1","name":"[Personal Housing] Angler Round Rug","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":800000,"sellPrice":80000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_06_rug_1","numArg1":80000}},{"itemId":1210015,"className":"PersonalHousing_Item_hp_barrack_06_shelf_1","name":"[Personal Housing] Angler Shelf","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":700000,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_06_shelf_1","numArg1":70000}},{"itemId":1210016,"className":"PersonalHousing_Item_hp_barrack_04_cupboard_01_1","name":"[Personal Housing] Sweet Closet - Jam","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":500000,"sellPrice":50000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_04_cupboard_01_1","numArg1":50000}},{"itemId":1210017,"className":"PersonalHousing_Item_hp_barrack_04_cupboard_02_1","name":"[Personal Housing] Sweet Closet - Sauce","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":500000,"sellPrice":50000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_04_cupboard_02_1","numArg1":50000}},{"itemId":1210018,"className":"PersonalHousing_Item_hp_barrack_04_candlestick_1","name":"[Personal Housing] Sweet Candlestick","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":500000,"sellPrice":50000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_04_candlestick_1","numArg1":50000}},{"itemId":1210019,"className":"PersonalHousing_Item_hp_barrack_04_shelf_01_1","name":"[Personal Housing] Sweet Pantry","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":700000,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_04_shelf_01_1","numArg1":70000}},{"itemId":1210020,"className":"PersonalHousing_Item_hp_barrack_04_shelf_02_1","name":"[Personal Housing] Sweet Gift Cupboard","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":700000,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_04_shelf_02_1","numArg1":70000}},{"itemId":1210021,"className":"PersonalHousing_Item_hp_barrack_04_shelf_03_1","name":"[Personal Housing] Sweet Display Cupboard","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":700000,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_04_shelf_03_1","numArg1":70000}},{"itemId":1210022,"className":"PersonalHousing_Item_hp_barrack_04_coffemachine_1","name":"[Personal Housing] Sweet Coffee Maker","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":800000,"sellPrice":80000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_04_coffemachine_1","numArg1":80000}},{"itemId":1210023,"className":"PersonalHousing_Item_hp_barrack_04_storage_1","name":"[Personal Housing] Sweet Cookie Box","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_04_storage_1","numArg1":60000}},{"itemId":1210024,"className":"PersonalHousing_Item_hp_barrack_04_displayStand_1","name":"[Personal Housing] Large Sweet Display Stand","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1300000,"sellPrice":130000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_04_displayStand_1","numArg1":130000}},{"itemId":1210025,"className":"PersonalHousing_Item_hp_barrack_04_counter_1","name":"[Personal Housing] Sweet Cash Register","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_04_counter_1","numArg1":60000}},{"itemId":1210026,"className":"PersonalHousing_Item_hp_barrack_04_mat_1","name":"[Personal Housing] Sweet Half Circle Rug","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":500000,"sellPrice":50000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_04_mat_1","numArg1":50000}},{"itemId":1210027,"className":"PersonalHousing_Item_hp_barrack_04_chair_1","name":"[Personal Housing] Sweet Chair","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_04_chair_1","numArg1":60000}},{"itemId":1210028,"className":"PersonalHousing_Item_hp_barrack_04_macaron_1","name":"[Personal Housing] Sweet Macaron Table","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":800000,"sellPrice":80000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_04_macaron_1","numArg1":80000}},{"itemId":1210029,"className":"PersonalHousing_Item_hp_barrack_04_cakeStall_1","name":"[Personal Housing] Large Sweet Display Stand","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":900000,"sellPrice":90000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_04_cakeStall_1","numArg1":90000}},{"itemId":1210030,"className":"PersonalHousing_Item_hp_barrack_03_cushion_set_1","name":"[Personal Housing] Girl Cushion","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":700000,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_03_cushion_set_1","numArg1":70000}},{"itemId":1210031,"className":"PersonalHousing_Item_hp_barrack_03_cabinet_1","name":"[Personal Housing] Girl Drawer Chest","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_03_cabinet_1","numArg1":60000}},{"itemId":1210032,"className":"PersonalHousing_Item_hp_barrack_03_beartoy_1","name":"[Personal Housing] Girl Gift Box - Teddy Bear","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":800000,"sellPrice":80000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_03_beartoy_1","numArg1":80000}},{"itemId":1210033,"className":"PersonalHousing_Item_hp_barrack_03_mannequin_1","name":"[Personal Housing] Girl Mannequin","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_03_mannequin_1","numArg1":60000}},{"itemId":1210034,"className":"PersonalHousing_Item_hp_barrack_03_shoes_1","name":"[Personal Housing] Girl Red Shoes","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_03_shoes_1","numArg1":60000}},{"itemId":1210035,"className":"PersonalHousing_Item_hp_barrack_03_gacha_cabinet_1","name":"[Personal Housing] Girl Candy Dispenser","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":800000,"sellPrice":80000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_03_gacha_cabinet_1","numArg1":80000}},{"itemId":1210036,"className":"PersonalHousing_Item_hp_barrack_03_candle_1","name":"[Personal Housing] Girl Candlestick","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":500000,"sellPrice":50000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_03_candle_1","numArg1":50000}},{"itemId":1210037,"className":"PersonalHousing_Item_hp_barrack_03_dressing_desk_1","name":"[Personal Housing] Girl Dressing Table","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1000000,"sellPrice":100000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_03_dressing_desk_1","numArg1":100000}},{"itemId":1210038,"className":"PersonalHousing_Item_hp_barrack_03_mirror_01_1","name":"[Personal Housing] Girl Mirror - Round","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":300000,"sellPrice":30000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_03_mirror_01_1","numArg1":30000}},{"itemId":1210039,"className":"PersonalHousing_Item_hp_barrack_03_mirror_02_1","name":"[Personal Housing] Girl Mirror - Rectangular","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":300000,"sellPrice":30000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_03_mirror_02_1","numArg1":30000}},{"itemId":1210040,"className":"PersonalHousing_Item_hp_barrack_03_mirror_03_1","name":"[Personal Housing] Girl Mirror - Decorated","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":500000,"sellPrice":50000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_03_mirror_03_1","numArg1":50000}},{"itemId":1210041,"className":"PersonalHousing_Item_hp_barrack_03_mirror_04_1","name":"[Personal Housing] Girl Mirror - Bird","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":300000,"sellPrice":30000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_03_mirror_04_1","numArg1":30000}},{"itemId":1210042,"className":"PersonalHousing_Item_hp_barrack_03_mirror_05_1","name":"[Personal Housing] Girl Mirror - Strawberry","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":300000,"sellPrice":30000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_03_mirror_05_1","numArg1":30000}},{"itemId":1210043,"className":"PersonalHousing_Item_hp_barrack_03_mirror_06_1","name":"[Personal Housing] Girl Mirror - Duck","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":300000,"sellPrice":30000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_03_mirror_06_1","numArg1":30000}},{"itemId":1210044,"className":"PersonalHousing_Item_hp_barrack_03_mirror_07_1","name":"[Personal Housing] Girl Mirror - Cloud","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":300000,"sellPrice":30000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_03_mirror_07_1","numArg1":30000}},{"itemId":1210045,"className":"PersonalHousing_Item_hp_barrack_03_doll_1","name":"[Personal Housing] Girl Rag Doll","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_03_doll_1","numArg1":60000}},{"itemId":1210046,"className":"PersonalHousing_Item_hp_barrack_village_alarm_1","name":"[Personal Housing] Steel Wind Chime","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":300000,"sellPrice":30000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_village_alarm_1","numArg1":30000}},{"itemId":1210047,"className":"PersonalHousing_Item_hp_barrack_village_bed_01_1","name":"[Personal Housing] Princess Bed","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1300000,"sellPrice":130000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_village_bed_01_1","numArg1":130000}},{"itemId":1210048,"className":"PersonalHousing_Item_hp_barrack_village_woodbed_1","name":"[Personal Housing] Wooden Bed","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1300000,"sellPrice":130000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_village_woodbed_1","numArg1":130000}},{"itemId":1210049,"className":"PersonalHousing_Item_hp_barrack_village_bread_table_1","name":"[Personal Housing] Wooden Table - Bread","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":700000,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_village_bread_table_1","numArg1":70000}},{"itemId":1210050,"className":"PersonalHousing_Item_hp_barrack_village_fruit_table_1","name":"[Personal Housing] Wooden Table - Fruits","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":700000,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_village_fruit_table_1","numArg1":70000}},{"itemId":1210051,"className":"PersonalHousing_Item_hp_barrack_village_dishp_table_1","name":"[Personal Housing] Fancy Table","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1300000,"sellPrice":130000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_village_dishp_table_1","numArg1":130000}},{"itemId":1210052,"className":"PersonalHousing_Item_hp_barrack_village_chair_01_1","name":"[Personal Housing] Dining Chair","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_village_chair_01_1","numArg1":60000}},{"itemId":1210053,"className":"PersonalHousing_Item_hp_barrack_village_longchair_1","name":"[Personal Housing] Pink Bed Stool Double","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":700000,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_village_longchair_1","numArg1":70000}},{"itemId":1210054,"className":"PersonalHousing_Item_hp_barrack_village_sofa_01_1","name":"[Personal Housing] Green Sofa Double","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":700000,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_village_sofa_01_1","numArg1":70000}},{"itemId":1210055,"className":"PersonalHousing_Item_hp_barrack_village_mat_01_1","name":"[Personal Housing] Half Circle Rug","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":300000,"sellPrice":30000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_village_mat_01_1","numArg1":30000}},{"itemId":1210056,"className":"PersonalHousing_Item_hp_barrack_village_mat_02_1","name":"[Personal Housing] Rectangular Rug","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1100000,"sellPrice":110000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_village_mat_02_1","numArg1":110000}},{"itemId":1210057,"className":"PersonalHousing_Item_hp_barrack_village_rug_1","name":"[Personal Housing] Pelt Rug","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1100000,"sellPrice":110000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_village_rug_1","numArg1":110000}},{"itemId":1210058,"className":"PersonalHousing_Item_hp_barrack_village_sitting_cushion_1","name":"[Personal Housing] Tassel Cushion","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_village_sitting_cushion_1","numArg1":60000}},{"itemId":1210059,"className":"PersonalHousing_Item_hp_barrack_village_side_table_01_1","name":"[Personal Housing] Drawer - Horn","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_village_side_table_01_1","numArg1":60000}},{"itemId":1210060,"className":"PersonalHousing_Item_hp_barrack_village_side_table_012_1","name":"[Personal Housing] Drawer - Horn Decoration","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":800000,"sellPrice":80000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_village_side_table_012_1","numArg1":80000}},{"itemId":1210061,"className":"PersonalHousing_Item_hp_barrack_village_stove_01_1","name":"[Personal Housing] Fireplace","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1800000,"sellPrice":180000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_village_stove_01_1","numArg1":180000}},{"itemId":1210062,"className":"PersonalHousing_Item_hp_barrack_village_stove_012_1","name":"[Personal Housing] Fireplace - Plates","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1800000,"sellPrice":180000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_village_stove_012_1","numArg1":180000}},{"itemId":1210063,"className":"PersonalHousing_Item_hp_barrack_02_bookshelf_01_1","name":"[Personal Housing] Fancy Astrology Bookcase","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_02_bookshelf_01_1","numArg1":60000}},{"itemId":1210064,"className":"PersonalHousing_Item_hp_barrack_02_bookshelf_02_1","name":"[Personal Housing] Large Bookcase","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_02_bookshelf_02_1","numArg1":60000}},{"itemId":1210065,"className":"PersonalHousing_Item_hp_barrack_02_chair_1","name":"[Personal Housing] Astrology Armchair","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_02_chair_1","numArg1":60000}},{"itemId":1210066,"className":"PersonalHousing_Item_hp_barrack_02_table_1","name":"[Personal Housing] Astrology Table","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1000000,"sellPrice":100000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_02_table_1","numArg1":100000}},{"itemId":1210067,"className":"PersonalHousing_Item_hp_barrack_07_bear_1","name":"[Personal Housing] Hunter Bear Decoration","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_07_bear_1","numArg1":60000}},{"itemId":1210068,"className":"PersonalHousing_Item_hp_barrack_07_chair_1","name":"[Personal Housing] Hunter Relaxing Chair","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":700000,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_07_chair_1","numArg1":70000}},{"itemId":1210069,"className":"PersonalHousing_Item_hp_barrack_07_desk_1","name":"[Personal Housing] Hunter Desk","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":900000,"sellPrice":90000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_07_desk_1","numArg1":90000}},{"itemId":1210070,"className":"PersonalHousing_Item_hp_barrack_07_fireplace_1","name":"[Personal Housing] Hunter Stove","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":900000,"sellPrice":90000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_07_fireplace_1","numArg1":90000}},{"itemId":1210071,"className":"PersonalHousing_Item_hp_barrack_07_floorDoor_1","name":"[Personal Housing] Hunter Floor Door","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1000000,"sellPrice":100000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_07_floorDoor_1","numArg1":100000}},{"itemId":1210072,"className":"PersonalHousing_Item_hp_barrack_07_table_1","name":"[Personal Housing] Hunter Table","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_07_table_1","numArg1":60000}},{"itemId":1210073,"className":"PersonalHousing_Item_hp_barrack_07_tiger_1","name":"[Personal Housing] Hunter Tiger Rug","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":2000000,"sellPrice":200000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_07_tiger_1","numArg1":200000}},{"itemId":1210074,"className":"PersonalHousing_Item_hp_barrack_07_tiger_white_1","name":"[Personal Housing] Hunter White Tiger Rug","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":2000000,"sellPrice":200000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_07_tiger_white_1","numArg1":200000}},{"itemId":1210075,"className":"PersonalHousing_Item_hp_barrack_07_woodholder_1","name":"[Personal Housing] Hunter Firewood Rack","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_07_woodholder_1","numArg1":60000}},{"itemId":1210076,"className":"PersonalHousing_Item_hp_barrack_08_bed_1","name":"[Personal Housing] Ocean Bed","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1300000,"sellPrice":130000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_08_bed_1","numArg1":130000}},{"itemId":1210077,"className":"PersonalHousing_Item_hp_barrack_08_capet_01_1","name":"[Personal Housing] Ocean Blue Carpet","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1100000,"sellPrice":110000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_08_capet_01_1","numArg1":110000}},{"itemId":1210078,"className":"PersonalHousing_Item_hp_barrack_08_capet_02_1","name":"[Personal Housing] Ocean Pink Carpet","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1100000,"sellPrice":110000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_08_capet_02_1","numArg1":110000}},{"itemId":1210079,"className":"PersonalHousing_Item_hp_barrack_08_capet_small_1","name":"[Personal Housing] Ocean Coral Rug","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":700000,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_08_capet_small_1","numArg1":70000}},{"itemId":1210080,"className":"PersonalHousing_Item_hp_barrack_08_fishbowl_01_1","name":"[Personal Housing] Ocean Large Fish Tank","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1000000,"sellPrice":100000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_08_fishbowl_01_1","numArg1":100000}},{"itemId":1210081,"className":"PersonalHousing_Item_hp_barrack_08_fishbowl_02_1","name":"[Personal Housing] Ocean Small Fish Tank","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_08_fishbowl_02_1","numArg1":60000}},{"itemId":1210082,"className":"PersonalHousing_Item_hp_barrack_08_jellyfishhganger_1","name":"[Personal Housing] Ocean Jellyfish Hanger","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_08_jellyfishhganger_1","numArg1":60000}},{"itemId":1210083,"className":"PersonalHousing_Item_hp_barrack_08_mirror_1","name":"[Personal Housing] Ocean Sink","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":900000,"sellPrice":90000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_08_mirror_1","numArg1":90000}},{"itemId":1210084,"className":"PersonalHousing_Item_hp_barrack_08_partition_01_1","name":"[Personal Housing] Ocean Partition","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":700000,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_08_partition_01_1","numArg1":70000}},{"itemId":1210085,"className":"PersonalHousing_Item_hp_barrack_08_pot_1","name":"[Personal Housing] Ocean Coral Reef Table","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":800000,"sellPrice":80000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_08_pot_1","numArg1":80000}},{"itemId":1210086,"className":"PersonalHousing_Item_hp_barrack_08_sofa_1","name":"[Personal Housing] Ocean Coral Armchair","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_08_sofa_1","numArg1":60000}},{"itemId":1210087,"className":"PersonalHousing_Item_hp_barrack_08_stole_1","name":"[Personal Housing] Ocean Coral Stool","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_08_stole_1","numArg1":60000}},{"itemId":1210088,"className":"PersonalHousing_Item_hp_barrack_08_tablepot_1","name":"[Personal Housing] Ocean Coral Table","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_08_tablepot_1","numArg1":60000}},{"itemId":1210089,"className":"PersonalHousing_Item_hp_barrack_08_treasurebox_1","name":"[Personal Housing] Ocean Treasure Chest","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1000000,"sellPrice":100000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_08_treasurebox_1","numArg1":100000}},{"itemId":1210090,"className":"PersonalHousing_Item_hp_barrack_08_waterbottle_1","name":"[Personal Housing] Ocean Glass Bottle","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_08_waterbottle_1","numArg1":60000}},{"itemId":1210091,"className":"PersonalHousing_Item_hp_barrack_07_alligator","name":"[Personal Housing] Hunter Crocodile Couch","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1300000,"sellPrice":130000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_07_alligator","numArg1":130000}},{"itemId":1210092,"className":"PersonalHousing_Item_hp_barrack_07_bearcarpet","name":"[Personal Housing] Hunter Black Bear Rug","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":2000000,"sellPrice":200000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_07_bearcarpet","numArg1":200000}},{"itemId":1210093,"className":"PersonalHousing_Item_hp_barrack_07_medal","name":"[Personal Housing] Hunter Medal Collection","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":300000,"sellPrice":30000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_07_medal","numArg1":30000}},{"itemId":1210094,"className":"PersonalHousing_Item_hp_barrack_07_boar","name":"[Personal Housing] Hunter Boar Ornament","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":300000,"sellPrice":30000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_07_boar","numArg1":30000}},{"itemId":1210095,"className":"PersonalHousing_Item_hp_barrack_07_fox","name":"[Personal Housing] Hunter Fox Ornament","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":300000,"sellPrice":30000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_07_fox","numArg1":30000}},{"itemId":1210096,"className":"PersonalHousing_Item_hp_barrack_07_rabbit","name":"[Personal Housing] Hunter Rabbit Ornament","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":300000,"sellPrice":30000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_07_rabbit","numArg1":30000}},{"itemId":1210097,"className":"PersonalHousing_Item_hp_barrack_07_gunholder","name":"[Personal Housing] Hunter Musket Ornament","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":300000,"sellPrice":30000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_07_gunholder","numArg1":30000}},{"itemId":1210098,"className":"PersonalHousing_Item_hp_barrack_07_shelf","name":"[Personal Housing] Hunter Pheasant Shelf","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":700000,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_07_shelf","numArg1":70000}},{"itemId":1210099,"className":"PersonalHousing_Item_hp_barrack_07_partition","name":"[Personal Housing] Hunter Pattern Screen","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":700000,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_07_partition","numArg1":70000}},{"itemId":1210100,"className":"PersonalHousing_Item_hp_barrack_07_window","name":"[Personal Housing] Hunter Vertical Window","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":300000,"sellPrice":30000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_07_window","numArg1":30000}},{"itemId":1210101,"className":"PersonalHousing_Item_hp_barrack_09_candleStand","name":"[Personal Housing] Banquet Candlestick","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":800000,"sellPrice":80000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_09_candleStand","numArg1":80000}},{"itemId":1210102,"className":"PersonalHousing_Item_hp_barrack_09_carpet_L_1","name":"[Personal Housing] Banquet Royal Carpet","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":4000000,"sellPrice":400000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_09_carpet_L_1","numArg1":400000}},{"itemId":1210103,"className":"PersonalHousing_Item_hp_barrack_09_carpet_M_1","name":"[Personal Housing] Banquet Flower Carpet","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1400000,"sellPrice":140000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_09_carpet_M_1","numArg1":140000}},{"itemId":1210104,"className":"PersonalHousing_Item_hp_barrack_09_cart_1","name":"[Personal Housing] Banquet Serving Cart","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_09_cart_1","numArg1":60000}},{"itemId":1210105,"className":"PersonalHousing_Item_hp_barrack_09_chair_1","name":"[Personal Housing] Banquet Luxurious Chair","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_09_chair_1","numArg1":60000}},{"itemId":1210106,"className":"PersonalHousing_Item_hp_barrack_09_champagne_1","name":"[Personal Housing] Banquet Champagne Table","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1000000,"sellPrice":100000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_09_champagne_1","numArg1":100000}},{"itemId":1210107,"className":"PersonalHousing_Item_hp_barrack_09_dessertTable_1","name":"[Personal Housing] Banquet Dessert Table","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_09_dessertTable_1","numArg1":60000}},{"itemId":1210108,"className":"PersonalHousing_Item_hp_barrack_09_diningTable_1","name":"[Personal Housing] Banquet Dinning Table","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":800000,"sellPrice":80000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_09_diningTable_1","numArg1":80000}},{"itemId":1210109,"className":"PersonalHousing_Item_hp_barrack_09_door_1","name":"[Personal Housing] Banquet Large Door","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":500000,"sellPrice":50000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_09_door_1","numArg1":50000}},{"itemId":1210110,"className":"PersonalHousing_Item_hp_barrack_09_frame_1","name":"[Personal Housing] Banquet Gilded Frame","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":500000,"sellPrice":50000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_09_frame_1","numArg1":50000}},{"itemId":1210111,"className":"PersonalHousing_Item_hp_barrack_09_frameSet_1","name":"[Personal Housing] Banquet Masterpiece Frame","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":500000,"sellPrice":50000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_09_frameSet_1","numArg1":50000}},{"itemId":1210112,"className":"PersonalHousing_Item_hp_barrack_09_lamp_1","name":"[Personal Housing] Banquet Gaslight","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":700000,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_09_lamp_1","numArg1":70000}},{"itemId":1210113,"className":"PersonalHousing_Item_hp_barrack_09_partition_1","name":"[Personal Housing] Banquet Luxurious Screen","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":700000,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_09_partition_1","numArg1":70000}},{"itemId":1210114,"className":"PersonalHousing_Item_hp_barrack_09_shelf_1","name":"[Personal Housing] Banquet Luxurious Shelf","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":500000,"sellPrice":50000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_09_shelf_1","numArg1":50000}},{"itemId":1210115,"className":"PersonalHousing_Item_hp_barrack_09_statue_1","name":"[Personal Housing] Banquet Kupole Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_09_statue_1","numArg1":60000}},{"itemId":1210116,"className":"PersonalHousing_Item_hp_barrack_09_swan_1","name":"[Personal Housing] Banquet Swan Ornament","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1300000,"sellPrice":130000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_09_swan_1","numArg1":130000}},{"itemId":1210117,"className":"PersonalHousing_Item_hp_barrack_09_window_1","name":"[Personal Housing] Banquet Luxurious Window","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":300000,"sellPrice":30000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_09_window_1","numArg1":30000}},{"itemId":1210118,"className":"PersonalHousing_Item_hp_barrack_04_sign","name":"[Personal Housing] Sweet Medium Signboard","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":500000,"sellPrice":50000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_04_sign","numArg1":50000}},{"itemId":1210119,"className":"PersonalHousing_Item_hp_figure_Zawra","name":"Demon Lord Zaura Figure","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":10000000,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_figure_Zawra","numArg1":1000000}},{"itemId":1210120,"className":"PersonalHousing_Item_hp_figure_helgasercle","name":"Demon Lord Helgasercle Figure","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":10000000,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_figure_helgasercle","numArg1":1000000}},{"itemId":1210121,"className":"PersonalHousing_Item_hp_figure_Nuaelle","name":"Demon Lord Nuaele Figure","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":10000000,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_figure_Nuaelle","numArg1":1000000}},{"itemId":1210122,"className":"PersonalHousing_Item_hp_figure_mirtis","name":"Demon Lord Mirtis Figure","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":10000000,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_figure_mirtis","numArg1":1000000}},{"itemId":1210123,"className":"PersonalHousing_Item_hp_figure_Blud","name":"Demon Lord Blut Figure","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":10000000,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_figure_Blud","numArg1":1000000}},{"itemId":1210124,"className":"PersonalHousing_Item_hp_figure_Marnoks","name":"Demon Lord Marnox Figure","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":10000000,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_figure_Marnoks","numArg1":1000000}},{"itemId":1210125,"className":"PersonalHousing_Item_hp_figure_Lecifer","name":"Demon Lord Rexipher Figure","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":10000000,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_figure_Lecifer","numArg1":1000000}},{"itemId":1210126,"className":"PersonalHousing_Item_hp_figure_hauberk","name":"Demon Lord Hauberk Figure","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":10000000,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_figure_hauberk","numArg1":1000000}},{"itemId":1210127,"className":"PersonalHousing_Item_hp_barrack_02_carpet_1","name":"[Personal Housing] Mansion Study Long Carpet","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1400000,"sellPrice":140000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_02_carpet_1","numArg1":140000}},{"itemId":1210128,"className":"PersonalHousing_Item_hp_barrack_02_carpet_2","name":"[Personal Housing] Mansion Study Round Carpet","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1100000,"sellPrice":110000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_02_carpet_2","numArg1":110000}},{"itemId":1210129,"className":"PersonalHousing_Item_hp_barrack_02_chair_2","name":"[Personal Housing] Mansion Study Double Cushion Sofa","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":700000,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_02_chair_2","numArg1":70000}},{"itemId":1210130,"className":"PersonalHousing_Item_hp_barrack_02_table_1_1","name":"[Personal Housing] Mansion Study Gueridon","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1000000,"sellPrice":100000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_02_table_1_1","numArg1":100000}},{"itemId":1210131,"className":"PersonalHousing_Item_hp_barrack_02_chair_3","name":"[Personal Housing] Mansion Study Single Sofa","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_02_chair_3","numArg1":60000}},{"itemId":1210132,"className":"PersonalHousing_Item_hp_barrack_02_bookshelf_01_1_1","name":"[Personal Housing] Mansion Study High-class Bookshelf","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_02_bookshelf_01_1_1","numArg1":60000}},{"itemId":1210133,"className":"PersonalHousing_Item_hp_barrack_02_bookshelf_02_1_1","name":"[Personal Housing] Mansion Study Antique Bookshelf","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_02_bookshelf_02_1_1","numArg1":60000}},{"itemId":1210134,"className":"PersonalHousing_Item_hp_barrack_02_chair_1_1","name":"[Personal Housing] Mansion Study High-class Sofa","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_02_chair_1_1","numArg1":60000}},{"itemId":1210135,"className":"PersonalHousing_Item_hp_barrack_02_roundbook_1","name":"[Personal Housing] Mansion Study Clockwork Shelf","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":2000000,"sellPrice":200000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_02_roundbook_1","numArg1":200000}},{"itemId":1210136,"className":"PersonalHousing_Item_hp_barrack_village_side_table_012_1_1","name":"[Personal Housing] Mansion Study Classy Table","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1000000,"sellPrice":100000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_village_side_table_012_1_1","numArg1":100000}},{"itemId":1210137,"className":"PersonalHousing_Item_hp_barrack_03_dressing_desk_1_1","name":"[Personal Housing] Mansion Study Reading Desk","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1000000,"sellPrice":100000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_03_dressing_desk_1_1","numArg1":100000}},{"itemId":1210138,"className":"PersonalHousing_Item_hp_barrack_03_cushion_set_1_1","name":"[Personal Housing] Mansion Study Cozy Cushion","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1000000,"sellPrice":100000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_03_cushion_set_1_1","numArg1":100000}},{"itemId":1210139,"className":"PersonalHousing_Item_hp_barrack_03_beartoyDesk_1","name":"[Personal Housing] Mansion Study Dreamy Dreamer","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":800000,"sellPrice":80000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_03_beartoyDesk_1","numArg1":80000}},{"itemId":1210140,"className":"PersonalHousing_Item_hp_barrack_02_partition_1","name":"[Personal Housing] Mansion Study Wood Partition","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":700000,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_02_partition_1","numArg1":70000}},{"itemId":1210141,"className":"PersonalHousing_Item_hp_barrack_02_partition_2","name":"[Personal Housing] Mansion Study Rail Type Partition","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_02_partition_2","numArg1":60000}},{"itemId":1210142,"className":"PersonalHousing_Item_hp_barrack_02_partition_3","name":"[Personal Housing] Mansion Study High-class Partition","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":700000,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_02_partition_3","numArg1":70000}},{"itemId":1210143,"className":"PersonalHousing_Item_hp_barrack_02_clock_1","name":"[Personal Housing] Mansion Study Grandfather's Clock","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":800000,"sellPrice":80000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_02_clock_1","numArg1":80000}},{"itemId":1210144,"className":"PersonalHousing_Item_hp_barrack_02_table_2","name":"[Personal Housing] Mansion Study Guest Table","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_02_table_2","numArg1":60000}},{"itemId":1210145,"className":"PersonalHousing_Item_hp_barrack_02_chair_4","name":"[Personal Housing] Mansion Study Guest Chair","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":600000,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_02_chair_4","numArg1":60000}},{"itemId":1210146,"className":"PersonalHousing_Item_hp_barrack_02_frame_1","name":"[Personal Housing] Mansion Study Painting Collection","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":500000,"sellPrice":50000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_02_frame_1","numArg1":50000}},{"itemId":1210147,"className":"PersonalHousing_Item_hp_barrack_02_wallstatue_1","name":"[Personal Housing] Mansion Study Unicorn Ornament","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":400000,"sellPrice":40000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_02_wallstatue_1","numArg1":40000}},{"itemId":1210148,"className":"PersonalHousing_Item_hp_barrack_02_wallbook_1","name":"[Personal Housing] Mansion Study Small Bookshelf","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":500000,"sellPrice":50000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_02_wallbook_1","numArg1":50000}},{"itemId":1210149,"className":"PersonalHousing_Item_hp_barrack_03_mirror_04_1_1","name":"[Personal Housing] Mansion Study Mirror","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":400000,"sellPrice":40000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_03_mirror_04_1_1","numArg1":40000}},{"itemId":1210150,"className":"PersonalHousing_Item_hp_barrack_03_mirror_05_1_1","name":"[Personal Housing] Mansion Study High-class Mirror","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":400000,"sellPrice":40000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_03_mirror_05_1_1","numArg1":40000}},{"itemId":1210151,"className":"PersonalHousing_Item_hp_barrack_03_mirror_03_1_1","name":"[Personal Housing] Mansion Study Wide Mirror","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":500000,"sellPrice":50000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_03_mirror_03_1_1","numArg1":50000}},{"itemId":1210152,"className":"PersonalHousing_Item_hp_barrack_02_candlestick_1","name":"[Personal Housing] Mansion Study Faint Candlestick","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":400000,"sellPrice":40000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_02_candlestick_1","numArg1":40000}},{"itemId":1210153,"className":"PersonalHousing_Item_hp_p_h_barrack_pond_01","name":"[Personal Housing] Individual Pond","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":260000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_p_h_barrack_pond_01","numArg1":260000}},{"itemId":1210154,"className":"PersonalHousing_Item_hp_p_h_barrack_icecrystal_01","name":"[Personal Housing] Ice Tree Root Crystal ","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_p_h_barrack_icecrystal_01"}},{"itemId":1210155,"className":"PersonalHousing_Item_hp_p_h_barrack_popofountain_01","name":"[Personal Housing] Popolion Fountain","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_p_h_barrak_popofountain"}},{"itemId":1210156,"className":"PersonalHousing_Item_hp_h_dragon_tiger_tower_01","name":"[Personal Housing] Dragon Tiger Tower","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_h_dragon_tiger_tower_01"}},{"itemId":1210157,"className":"PersonalHousing_Item_hp_p_h_barrack_igloo_01","name":"[Personal Housing] Igloo","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":100000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_p_h_barrack_igloo_01","numArg1":100000}},{"itemId":1210158,"className":"PersonalHousing_Item_hp_p_h_barrack_snowman_01","name":"[Personal Housing] Yak Mambo Snowman","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_p_h_barrack_snowman_01"}},{"itemId":1210159,"className":"PersonalHousing_Item_hp_h_torii_01","name":"[Personal Housing] Torii","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_h_torii_01","numArg1":70000}},{"itemId":1210160,"className":"PersonalHousing_Item_hp_h_torii_snow_01","name":"[Personal Housing] Snow-Covered Torii","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_h_torii_snow_01","numArg1":70000}},{"itemId":1210161,"className":"PersonalHousing_Item_hp_p_h_barrack_11_carpet_L","name":"[Personal Housing] Deep Woods Large Autumn Leaf Carpet","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":255000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_11_carpet_L","numArg1":255000}},{"itemId":1210162,"className":"PersonalHousing_Item_hp_p_h_barrack_11_carpet_M","name":"[Personal Housing] Deep Woods Autumn Leaf Patchwork Carpet","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":145000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_11_carpet_M","numArg1":145000}},{"itemId":1210163,"className":"PersonalHousing_Item_hp_p_h_barrack_11_carpet_round","name":"[Personal Housing] Deep Woods Tree Ring Carpet","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":75000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_11_carpet_round","numArg1":75000}},{"itemId":1210164,"className":"PersonalHousing_Item_hp_p_h_barrack_11_chair","name":"[Personal Housing] Deep Woods Small Mushroom Stool","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_11_chair","numArg1":60000}},{"itemId":1210165,"className":"PersonalHousing_Item_hp_p_h_barrack_11_clover","name":"[Personal Housing] Deep Woods Clover Decoration","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":40000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_11_clover","numArg1":40000}},{"itemId":1210166,"className":"PersonalHousing_Item_hp_p_h_barrack_11_flower_white","name":"[Personal Housing] Deep Woods Daisy Decoration","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":40000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_11_flower_white","numArg1":40000}},{"itemId":1210167,"className":"PersonalHousing_Item_hp_p_h_barrack_11_flowers","name":"[Personal Housing] Deep Woods Flower Stand","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":100000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_11_flowers","numArg1":100000}},{"itemId":1210168,"className":"PersonalHousing_Item_hp_p_h_barrack_11_pansy","name":"[Personal Housing] Deep Woods Pansy Decoration","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":50000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_11_pansy","numArg1":50000}},{"itemId":1210169,"className":"PersonalHousing_Item_hp_p_h_barrack_11_partition","name":"[Personal Housing] Deep Woods Panel","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_11_partition","numArg1":70000}},{"itemId":1210170,"className":"PersonalHousing_Item_hp_p_h_barrack_11_pinecone","name":"[Personal Housing] Deep Woods Pine Cone Candle Holder","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":100000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_11_pinecone","numArg1":100000}},{"itemId":1210171,"className":"PersonalHousing_Item_hp_p_h_barrack_11_plant","name":"[Personal Housing] Deep Woods Dewy Leaves","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":100000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_11_plant","numArg1":100000}},{"itemId":1210172,"className":"PersonalHousing_Item_hp_p_h_barrack_11_shelf_01","name":"[Personal Housing] Deep Woods Red Mushroom Shelf","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":50000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_11_shelf_01","numArg1":50000}},{"itemId":1210173,"className":"PersonalHousing_Item_hp_p_h_barrack_11_shelf_02","name":"[Personal Housing] Deep Woods Brown Mushroom Shelf","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":40000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_11_shelf_02","numArg1":40000}},{"itemId":1210174,"className":"PersonalHousing_Item_hp_p_h_barrack_11_shelf_03","name":"[Personal Housing] Deep Woods Small Mushroom Shelf","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":40000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_11_shelf_03","numArg1":40000}},{"itemId":1210175,"className":"PersonalHousing_Item_hp_p_h_barrack_11_table","name":"[Personal Housing] Deep Woods Large Mushroom Table","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":100000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_11_table","numArg1":100000}},{"itemId":1210176,"className":"PersonalHousing_Item_hp_p_h_barrack_11_window","name":"[Personal Housing] Deep Woods Sunlit Window","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":50000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_11_window","numArg1":50000}},{"itemId":1210177,"className":"PersonalHousing_Item_hp_p_h_barrack_11_woodlight","name":"[Personal Housing] Deep Woods Hollow Tree Lamp","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_11_woodlight","numArg1":60000}},{"itemId":1210178,"className":"PersonalHousing_Item_hp_p_h_barrack_14_birdcage","name":"[Personal Housing] Flower Shop Canary Cage","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":120000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_14_birdcage","numArg1":120000}},{"itemId":1210179,"className":"PersonalHousing_Item_hp_p_h_barrack_14_desk","name":"[Personal Housing] Flower Shop Worktable","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":180000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_14_desk","numArg1":180000}},{"itemId":1210180,"className":"PersonalHousing_Item_hp_p_h_barrack_14_drawer","name":"[Personal Housing] Flower Shop Porch Table","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_14_drawer","numArg1":70000}},{"itemId":1210181,"className":"PersonalHousing_Item_hp_p_h_barrack_14_flower_01","name":"[Personal Housing] Flower Shop Red Rose Vase","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_14_flower_01","numArg1":60000}},{"itemId":1210182,"className":"PersonalHousing_Item_hp_p_h_barrack_14_flower_02","name":"[Personal Housing] Flower Shop Tulip Vase","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_14_flower_02","numArg1":60000}},{"itemId":1210183,"className":"PersonalHousing_Item_hp_p_h_barrack_14_flower_03","name":"[Personal Housing] Flower Shop Blue Rose Vase","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_14_flower_03","numArg1":60000}},{"itemId":1210184,"className":"PersonalHousing_Item_hp_p_h_barrack_14_flower_basket_01","name":"[Personal Housing] Flower Shop Rattan Vase Full of Pink Flowers","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_14_flower_basket_01","numArg1":60000}},{"itemId":1210185,"className":"PersonalHousing_Item_hp_p_h_barrack_14_flower_basket_02","name":"[Personal Housing] Flower Shop Rattan Vase with Decorated Violet Flowers","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_14_flower_basket_02","numArg1":60000}},{"itemId":1210186,"className":"PersonalHousing_Item_hp_p_h_barrack_14_flower_basket_03","name":"[Personal Housing] Flower Shop Chrysanthemum Rattan Vase","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_14_flower_basket_03","numArg1":60000}},{"itemId":1210187,"className":"PersonalHousing_Item_hp_p_h_barrack_14_flower_deco","name":"[Personal Housing] Flower Shop Dried Flowers","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":50000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_14_flower_deco","numArg1":50000}},{"itemId":1210188,"className":"PersonalHousing_Item_hp_p_h_barrack_14_flowerpot","name":"[Personal Housing] Flower Shop Large Red Rose Vase","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":100000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_14_flowerpot","numArg1":100000}},{"itemId":1210189,"className":"PersonalHousing_Item_hp_p_h_barrack_14_frameset","name":"[Personal Housing] Flower Shop Frame Collage","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_14_frameset","numArg1":70000}},{"itemId":1210190,"className":"PersonalHousing_Item_hp_p_h_barrack_14_lamp","name":"[Personal Housing] Flower Shop Golden Lamp","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":40000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_14_lamp","numArg1":40000}},{"itemId":1210191,"className":"PersonalHousing_Item_hp_p_h_barrack_14_rotatingpot","name":"[Personal Housing] Flower Shop Spinning Flower Pot","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":150000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_14_rotatingpot","numArg1":150000}},{"itemId":1210192,"className":"PersonalHousing_Item_hp_p_h_barrack_14_shelf_flowers","name":"[Personal Housing] Flower Shop Flower Shelf","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":50000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_14_shelf_flowers","numArg1":50000}},{"itemId":1210193,"className":"PersonalHousing_Item_hp_p_h_barrack_14_shelf_tools","name":"[Personal Housing] Flower Shop Working Tool Shelf","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":50000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_14_shelf_tools","numArg1":50000}},{"itemId":1210194,"className":"PersonalHousing_Item_hp_p_h_barrack_14_wateringpot","name":"[Personal Housing] Flower Shop Gold-rimmed Watering Can","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_14_wateringpot","numArg1":60000}},{"itemId":1210195,"className":"PersonalHousing_Item_hp_p_h_barrack_14_wrappaper","name":"[Personal Housing] Flower Shop Wrapper Roll Rack","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_14_wrappaper","numArg1":70000}},{"itemId":1210196,"className":"PersonalHousing_Item_hp_p_h_barrack_15_barrelshelf","name":"[Personal Housing] Wine Bar Wineglass Cabinet","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_15_barrelshelf","numArg1":60000}},{"itemId":1210197,"className":"PersonalHousing_Item_hp_p_h_barrack_15_barshelf","name":"[Personal Housing] Wine Bar Wineglass Hanger","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_15_barshelf","numArg1":70000}},{"itemId":1210198,"className":"PersonalHousing_Item_hp_p_h_barrack_15_barstand","name":"[Personal Housing] Wine Bar Bartender Table","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":90000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_15_barstand","numArg1":90000}},{"itemId":1210199,"className":"PersonalHousing_Item_hp_p_h_barrack_15_carpet","name":"[Personal Housing] Wine Bar Grape Vine Carpet","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":190000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_15_carpet","numArg1":190000}},{"itemId":1210200,"className":"PersonalHousing_Item_hp_p_h_barrack_15_chair","name":"[Personal Housing] Wine Bar Oak Chair","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_15_chair","numArg1":60000}},{"itemId":1210201,"className":"PersonalHousing_Item_hp_p_h_barrack_15_dart","name":"[Personal Housing] Wine Bar Dart Board","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":120000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_15_dart","numArg1":120000}},{"itemId":1210202,"className":"PersonalHousing_Item_hp_p_h_barrack_15_lamp","name":"[Personal Housing] Wine Bar Hanging Candle in Bottle","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":40000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_15_lamp","numArg1":40000}},{"itemId":1210203,"className":"PersonalHousing_Item_hp_p_h_barrack_15_signboard","name":"[Personal Housing] Wine Bar Projecting Signboard","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":40000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_15_signboard","numArg1":40000}},{"itemId":1210204,"className":"PersonalHousing_Item_hp_p_h_barrack_15_storage","name":"[Personal Housing] Wine Bar Small Wine Rack","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_15_storage","numArg1":60000}},{"itemId":1210205,"className":"PersonalHousing_Item_hp_p_h_barrack_15_tableset","name":"[Personal Housing] Wine Bar Bistro Table","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":90000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_15_tableset","numArg1":90000}},{"itemId":1210206,"className":"PersonalHousing_Item_hp_p_h_barrack_15_vintagewalldeco","name":"[Personal Housing] Wine Bar Vintage Wall Decoration","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_15_vintagewalldeco","numArg1":70000}},{"itemId":1210207,"className":"PersonalHousing_Item_hp_p_h_barrack_15_winebarrel","name":"[Personal Housing] Wine Bar Wine Barrel","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":100000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_15_winebarrel","numArg1":100000}},{"itemId":1210208,"className":"PersonalHousing_Item_hp_p_h_barrack_15_winecart","name":"[Personal Housing] Wine Bar Wine Cart","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_15_winecart","numArg1":60000}},{"itemId":1210209,"className":"PersonalHousing_Item_hp_p_h_barrack_15_winedeco","name":"[Personal Housing] Wine Bar Wall Wine Rack","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":40000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_15_winedeco","numArg1":40000}},{"itemId":1210210,"className":"PersonalHousing_Item_hp_p_h_barrack_15_wineglass","name":"[Personal Housing] Wine Bar Platinum Wineglass","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_15_wineglass","numArg1":60000}},{"itemId":1210211,"className":"PersonalHousing_Item_hp_p_h_barrack_15_winerack","name":"[Personal Housing] Wine Bar Large Wine Rack","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":70000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_15_winerack","numArg1":70000}},{"itemId":1210212,"className":"PersonalHousing_Item_hp_p_h_barrack_snowman_02","name":"[Personal Housing] Yak Mambo Snowman(small)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":60000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_snowman_02","numArg1":60000}},{"itemId":1210213,"className":"PersonalHousing_Item_hp_p_h_barrack_snowman_03","name":"[Personal Housing] Yak Mambo Snowman(medium)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":90000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_snowman_03","numArg1":90000}},{"itemId":1210214,"className":"PersonalHousing_Item_hp_p_h_barrack_snowman_04","name":"[Personal Housing] Yak Mambo Snowman(large)","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":90000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"p_h_barrack_snowman_04","numArg1":90000}},{"itemId":1210215,"className":"PersonalHousing_Item_hp_h_barrack_12_memo_02","name":"[Personal Housing] Steam Punk Report","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_12_memo_02"}},{"itemId":1210216,"className":"PersonalHousing_Item_hp_h_barrack_12_memo_01","name":"[Personal Housing] Steam Punk Blueprint","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_12_memo_01"}},{"itemId":1210217,"className":"PersonalHousing_Item_hp_h_barrack_12_lamp","name":"[Personal Housing] Steam Punk Gas Light","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_12_lamp"}},{"itemId":1210218,"className":"PersonalHousing_Item_hp_h_barrack_12_phone","name":"[Personal Housing] Steam Punk Weird Telephone","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_12_phone"}},{"itemId":1210219,"className":"PersonalHousing_Item_hp_h_barrack_12_clock","name":"[Personal Housing] Steam Punk Striking Clock","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_12_clock"}},{"itemId":1210220,"className":"PersonalHousing_Item_hp_h_barrack_12_carpet_s","name":"[Personal Housing] Steam Punk Round Blanket","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_12_carpet_s"}},{"itemId":1210221,"className":"PersonalHousing_Item_hp_h_barrack_12_carpet_large","name":"[Personal Housing] Steam Punk Laboratory Carpet","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_12_carpet_large"}},{"itemId":1210222,"className":"PersonalHousing_Item_hp_h_barrack_12_chair","name":"[Personal Housing] Steam Punk Doctor's Chair","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_12_chair"}},{"itemId":1210223,"className":"PersonalHousing_Item_hp_h_barrack_12_record","name":"[Personal Housing] Steam Punk Jukebox","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_12_record"}},{"itemId":1210224,"className":"PersonalHousing_Item_hp_h_barrack_12_closet","name":"[Personal Housing] Steam Punk Drawer","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_12_closet"}},{"itemId":1210225,"className":"PersonalHousing_Item_hp_h_barrack_12_sandglass","name":"[Personal Housing] Steam Punk Hourglass","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_12_sandglass"}},{"itemId":1210226,"className":"PersonalHousing_Item_hp_h_barrack_12_bird","name":"[Personal Housing] Steam Punk Fancy Assistant","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_12_bird"}},{"itemId":1210227,"className":"PersonalHousing_Item_hp_h_barrack_12_desk","name":"[Personal Housing] Steam Punk Versatile Desk","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_12_desk"}},{"itemId":1210228,"className":"PersonalHousing_Item_hp_h_barrack_12_partition","name":"[Personal Housing] Steam Punk Partition","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_12_partition"}},{"itemId":1210229,"className":"PersonalHousing_Item_hp_h_barrack_12_tablelamp","name":"[Personal Housing] Steam Punk Steam Engine","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_12_tablelamp"}},{"itemId":1210230,"className":"PersonalHousing_Item_hp_h_barrack_12_chess","name":"[Personal Housing] Steam Punk Chess Board","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_barrack_12_chess"}},{"itemId":1210231,"className":"hp_pharmacy_1","name":"[Personal Housing] Brewing Worktable","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_pharmacy_1"}},{"itemId":1248000,"className":"PersonalHousing_Item_hp_f_Blud_bronze","name":"[Bronze Trophy] Demon Lord Blut","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_Blud_bronze","numArg1":1000000}},{"itemId":1248001,"className":"PersonalHousing_Item_hp_f_Blud_silver","name":"[Silver Trophy] Demon Lord Blut","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":3000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_Blud_silver","numArg1":3000000}},{"itemId":1248002,"className":"PersonalHousing_Item_hp_f_Blud_gold","name":"[Gold Trophy] Demon Lord Blut","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":10000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_Blud_gold","numArg1":10000000}},{"itemId":1248003,"className":"PersonalHousing_Item_hp_f_hauberk_bronze","name":"[Bronze Trophy] Demon Lord Hauberk","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_hauberk_bronze","numArg1":1000000}},{"itemId":1248004,"className":"PersonalHousing_Item_hp_f_hauberk_silver","name":"[Silver Trophy] Demon Lord Hauberk","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":3000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_hauberk_silver","numArg1":3000000}},{"itemId":1248005,"className":"PersonalHousing_Item_hp_f_hauberk_gold","name":"[Gold Trophy] Demon Lord Hauberk","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":10000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_hauberk_gold","numArg1":10000000}},{"itemId":1248006,"className":"PersonalHousing_Item_hp_f_Zawra_bronze","name":"[Bronze Trophy] Demon Lord Zaura","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_Zawra_bronze","numArg1":1000000}},{"itemId":1248007,"className":"PersonalHousing_Item_hp_f_Zawra_silver","name":"[Silver Trophy] Demon Lord Zaura","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":3000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_Zawra_silver","numArg1":3000000}},{"itemId":1248008,"className":"PersonalHousing_Item_hp_f_Zawra_gold","name":"[Gold Trophy] Demon Lord Zaura","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":10000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_Zawra_gold","numArg1":10000000}},{"itemId":1248009,"className":"PersonalHousing_Item_hp_f_helgasercle_bronze","name":"[Bronze Trophy] Demon Lord Helgasercle ","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_helgasercle_bronze","numArg1":1000000}},{"itemId":1248010,"className":"PersonalHousing_Item_hp_f_helgasercle_silver","name":"[Silver Trophy] Demon Lord Helgasercle ","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":3000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_helgasercle_silver","numArg1":3000000}},{"itemId":1248011,"className":"PersonalHousing_Item_hp_f_helgasercle_gold","name":"[Gold Trophy] Demon Lord Helgasercle ","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":10000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_helgasercle_gold","numArg1":10000000}},{"itemId":1248012,"className":"PersonalHousing_Item_hp_f_lecifer_bronze","name":"[Bronze Trophy] Demon Lord Rexipher","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_lecifer_bronze","numArg1":1000000}},{"itemId":1248013,"className":"PersonalHousing_Item_hp_f_lecifer_silver","name":"[Silver Trophy] Demon Lord Rexipher","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":3000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_lecifer_silver","numArg1":3000000}},{"itemId":1248014,"className":"PersonalHousing_Item_hp_f_lecifer_gold","name":"[Gold Trophy] Demon Lord Rexipher","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":10000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_lecifer_gold","numArg1":10000000}},{"itemId":1248015,"className":"PersonalHousing_Item_hp_f_mirtis_bronze","name":"[Bronze Trophy] Demon Lord Mirtis","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_mirtis_bronze","numArg1":1000000}},{"itemId":1248016,"className":"PersonalHousing_Item_hp_f_mirtis_silver","name":"[Silver Trophy] Demon Lord Mirtis","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":3000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_mirtis_silver","numArg1":3000000}},{"itemId":1248017,"className":"PersonalHousing_Item_hp_f_mirtis_gold","name":"[Gold Trophy] Demon Lord Mirtis","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":10000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_mirtis_gold","numArg1":10000000}},{"itemId":1248018,"className":"PersonalHousing_Item_hp_f_nuaelle_bronze","name":"[Bronze Trophy] Demon Lord Nuaele","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_nuaelle_bronze","numArg1":1000000}},{"itemId":1248019,"className":"PersonalHousing_Item_hp_f_nuaelle_silver","name":"[Silver Trophy] Demon Lord Nuaele","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":3000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_nuaelle_silver","numArg1":3000000}},{"itemId":1248020,"className":"PersonalHousing_Item_hp_f_nuaelle_gold","name":"[Gold Trophy] Demon Lord Nuaele","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":10000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_nuaelle_gold","numArg1":10000000}},{"itemId":1248021,"className":"PersonalHousing_Item_hp_f_Marnoks_bronze","name":"[Bronze Trophy] Demon Lord Marnox","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_Marnoks_bronze","numArg1":1000000}},{"itemId":1248022,"className":"PersonalHousing_Item_hp_f_Marnoks_silver","name":"[Silver Trophy] Demon Lord Marnox","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":3000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_Marnoks_silver","numArg1":3000000}},{"itemId":1248023,"className":"PersonalHousing_Item_hp_f_Marnoks_gold","name":"[Gold Trophy] Demon Lord Marnox","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":10000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_Marnoks_gold","numArg1":10000000}},{"itemId":1248024,"className":"PersonalHousing_Item_hp_f_ChiefGuard_bronze","name":"[Bronze Trophy] Demon Lord Nebulas","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_ChiefGuard_bronze","numArg1":1000000}},{"itemId":1248025,"className":"PersonalHousing_Item_hp_f_ChiefGuard_silver","name":"[Silver Trophy] Demon Lord Nebulas","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":3000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_ChiefGuard_silver","numArg1":3000000}},{"itemId":1248026,"className":"PersonalHousing_Item_hp_f_ChiefGuard_gold","name":"[Gold Trophy] Demon Lord Nebulas","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":10000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_ChiefGuard_gold","numArg1":10000000}},{"itemId":1248027,"className":"PersonalHousing_Item_hp_f_froster_lord_bronze","name":"[Bronze Trophy] Demon Lord Froster Lord","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_froster_lord_bronze","numArg1":1000000}},{"itemId":1248028,"className":"PersonalHousing_Item_hp_f_froster_lord_silver","name":"[Silver Trophy] Demon Lord Froster Lord","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":3000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_froster_lord_silver","numArg1":3000000}},{"itemId":1248029,"className":"PersonalHousing_Item_hp_f_froster_lord_gold","name":"[Gold Trophy] Demon Lord Froster Lord","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":10000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_froster_lord_gold","numArg1":10000000}},{"itemId":1248030,"className":"PersonalHousing_Item_hp_f_bramble_bronze","name":"[Bronze Trophy] Demon Lord Bramble","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_bramble_bronze","numArg1":1000000}},{"itemId":1248031,"className":"PersonalHousing_Item_hp_f_bramble_silver","name":"[Silver Trophy] Demon Lord Bramble","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":3000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_bramble_silver","numArg1":3000000}},{"itemId":1248032,"className":"PersonalHousing_Item_hp_f_bramble_gold","name":"[Gold Trophy] Demon Lord Bramble","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":10000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_bramble_gold","numArg1":10000000}},{"itemId":1248033,"className":"PersonalHousing_Item_hp_f_warpulis_bronze","name":"[Bronze Trophy] Demon Lord Warpulis","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_warpulis_bronze","numArg1":1000000}},{"itemId":1248034,"className":"PersonalHousing_Item_hp_f_warpulis_silver","name":"[Silver Trophy] Demon Lord Warpulis","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":3000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_warpulis_silver","numArg1":3000000}},{"itemId":1248035,"className":"PersonalHousing_Item_hp_f_warpulis_gold","name":"[Gold Trophy] Demon Lord Warpulis","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":10000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_warpulis_gold","numArg1":10000000}},{"itemId":1248036,"className":"PersonalHousing_Item_hp_f_solcomm_bronze","name":"[Bronze Trophy] Demon Lord Solcomm","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_solcomm_bronze","numArg1":1000000}},{"itemId":1248037,"className":"PersonalHousing_Item_hp_f_solcomm_silver","name":"[Silver Trophy] Demon Lord Solcomm","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":3000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_solcomm_silver","numArg1":3000000}},{"itemId":1248038,"className":"PersonalHousing_Item_hp_f_solcomm_gold","name":"[Gold Trophy] Demon Lord Solcomm","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":10000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_solcomm_gold","numArg1":10000000}},{"itemId":1248039,"className":"PersonalHousing_Item_hp_f_lucy_bronze","name":"[Bronze Trophy] Lucy","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_lucy_bronze","numArg1":1000000}},{"itemId":1248040,"className":"PersonalHousing_Item_hp_f_lucy_silver","name":"[Silver Trophy] Lucy","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":3000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_lucy_silver","numArg1":3000000}},{"itemId":1248041,"className":"PersonalHousing_Item_hp_f_lucy_gold","name":"[Gold Trophy] Lucy","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":10000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_lucy_gold","numArg1":10000000}},{"itemId":1248042,"className":"PersonalHousing_Item_hp_f_naktis_bronze","name":"[Bronze Trophy] Demon Lord Naktis","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_naktis_bronze","numArg1":1000000}},{"itemId":1248043,"className":"PersonalHousing_Item_hp_f_naktis_silver","name":"[Silver Trophy] Demon Lord Naktis","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":3000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_naktis_silver","numArg1":3000000}},{"itemId":1248044,"className":"PersonalHousing_Item_hp_f_naktis_gold","name":"[Gold Trophy] Demon Lord Naktis","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":10000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_naktis_gold","numArg1":10000000}},{"itemId":1248045,"className":"PersonalHousing_Item_hp_f_tiny_bronze","name":"[Bronze Trophy] Tini","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":340000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_tiny_bronze","numArg1":1000000}},{"itemId":1248046,"className":"PersonalHousing_Item_hp_f_tiny_silver","name":"[Silver Trophy] Tini","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_tiny_silver","numArg1":3000000}},{"itemId":1248047,"className":"PersonalHousing_Item_hp_f_tiny_gold","name":"[Gold Trophy] Tini","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":3400000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_tiny_gold","numArg1":10000000}},{"itemId":1248048,"className":"PersonalHousing_Item_hp_f_tiny_bow_bronze","name":"[Bronze Trophy] Tini Archer","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":340000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_tiny_bow_bronze","numArg1":1000000}},{"itemId":1248049,"className":"PersonalHousing_Item_hp_f_tiny_bow_silver","name":"[Silver Trophy] Tini Archer","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_tiny_bow_silver","numArg1":3000000}},{"itemId":1248050,"className":"PersonalHousing_Item_hp_f_tiny_bow_gold","name":"[Gold Trophy] Tini Archer","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":3400000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_tiny_bow_gold","numArg1":10000000}},{"itemId":1248051,"className":"PersonalHousing_Item_hp_f_tiny_mage_bronze","name":"[Bronze Trophy] Tini Wizard","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":340000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_tiny_mage_bronze","numArg1":1000000}},{"itemId":1248052,"className":"PersonalHousing_Item_hp_f_tiny_mage_silver","name":"[Silver Trophy] Tini Wizard","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_tiny_mage_silver","numArg1":3000000}},{"itemId":1248053,"className":"PersonalHousing_Item_hp_f_tiny_mage_gold","name":"[Gold Trophy] Tini Wizard","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":3400000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_tiny_mage_gold","numArg1":10000000}},{"itemId":1248054,"className":"PersonalHousing_Item_hp_f_Quipmage_bronze","name":"[Bronze Trophy] Asiomage","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":340000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_Quipmage_bronze","numArg1":1000000}},{"itemId":1248055,"className":"PersonalHousing_Item_hp_f_Quipmage_silver","name":"[Silver Trophy] Asiomage","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_Quipmage_silver","numArg1":3000000}},{"itemId":1248056,"className":"PersonalHousing_Item_hp_f_Quipmage_gold","name":"[Gold Trophy] Asiomage","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":3400000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_Quipmage_gold","numArg1":10000000}},{"itemId":1248057,"className":"PersonalHousing_Item_hp_f_diena_bronze","name":"[Bronze Trophy] Demon Lord Diena","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":340000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_diena_bronze","numArg1":1000000}},{"itemId":1248058,"className":"PersonalHousing_Item_hp_f_diena_silver","name":"[Silver Trophy] Demon Lord Diena","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_diena_silver","numArg1":3000000}},{"itemId":1248059,"className":"PersonalHousing_Item_hp_f_diena_gold","name":"[Gold Trophy] Demon Lord Diena","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":3400000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_diena_gold","numArg1":10000000}},{"itemId":1248060,"className":"PersonalHousing_Item_hp_f_succubus_bronze","name":"[Bronze Trophy] Succubus","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":340000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_succubus_bronze","numArg1":1000000}},{"itemId":1248061,"className":"PersonalHousing_Item_hp_f_succubus_silver","name":"[Silver Trophy] Succubus","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_succubus_silver","numArg1":3000000}},{"itemId":1248062,"className":"PersonalHousing_Item_hp_f_succubus_gold","name":"[Gold Trophy] Succubus","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":3400000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_succubus_gold","numArg1":10000000}},{"itemId":1248063,"className":"PersonalHousing_Item_hp_f_ignas_bronze","name":"[Bronze Trophy] Ignas","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":340000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_ignas_bronze","numArg1":1000000}},{"itemId":1248064,"className":"PersonalHousing_Item_hp_f_ignas_silver","name":"[Silver Trophy] Ignas","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":1000000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_ignas_silver","numArg1":3000000}},{"itemId":1248065,"className":"PersonalHousing_Item_hp_f_ignas_gold","name":"[Gold Trophy] Ignas","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":1,"sellPrice":3400000,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PERSONAL_HOUSING_OBJECT_PLACE","strArg":"hp_f_ignas_gold","numArg1":10000000}},{"itemId":1250003,"className":"motion_medeina_emotion01","name":"Motion Emoticon: Medeina (Flustered)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_medeina_emotion01"}},{"itemId":1250004,"className":"motion_medeina_emotion02","name":"Motion Emoticon: Medeina (Joy)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_medeina_emotion02"}},{"itemId":1250005,"className":"egg_003_ContentsTotalShop","name":"Baby Pig Egg","type":"Consume","group":"Drug","weight":10,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"Piggy","numArg1":38}},{"itemId":1250011,"className":"motion_kupole_emotion01","name":"Motion Emoticon: Kupole (Cheeky)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_kupole_emotion01"}},{"itemId":1250012,"className":"motion_kupole_emotion02","name":"Motion Emoticon: Kupole (Shocked)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_kupole_emotion03"}},{"itemId":1250013,"className":"motion_kupole_emotion03","name":"Motion Emoticon: Kupole (Sigh)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_kupole_emotion05"}},{"itemId":1250022,"className":"motion_dionyscon01","name":"Motion Emoticon: Dionys(Scared)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_bakarine_emotion55"}},{"itemId":1250023,"className":"motion_dionyscon02","name":"Motion Emoticon: Dionys(Touched)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_bakarine_emotion58"}},{"itemId":1250024,"className":"motion_dionyscon03","name":"Motion Emoticon: Dionys(Rage)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_bakarine_emotion56"}},{"itemId":1250026,"className":"motion_bakarinecon1","name":"Motion Emoticon: Vakarine(Shook)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_bakarine_emotion60"}},{"itemId":1250027,"className":"motion_bakarinecon2","name":"Motion Emoticon: Vakarine(Wicked)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_bakarine_emotion59"}},{"itemId":1250028,"className":"motion_bakarinecon3","name":"Motion Emoticon: Vakarine(Cheer Up)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_bakarine_emotion61"}},{"itemId":1250030,"className":"motion_medeinacon1","name":"Motion Emoticon: Medeina (Fabulous)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_medeina_emotion05"}},{"itemId":1250031,"className":"motion_medeinacon2","name":"Motion Emoticon: Medeina (Pursy)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_medeina_emotion04"}},{"itemId":1250032,"className":"motion_medeinacon3","name":"Motion Emoticon: Medeina (Teary)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_medeina_emotion06"}},{"itemId":1250035,"className":"motion_popocon1","name":"Motion Emoticon: Popolion (Toss)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_popo_emotion01"}},{"itemId":1250036,"className":"motion_popocon2","name":"Motion Emoticon: Popolion (Fabulous)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_popo_emotion02"}},{"itemId":1250037,"className":"motion_popocon3","name":"Motion Emoticon: Popolion (Badmouth)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_popo_emotion03"}},{"itemId":1250045,"className":"motion_malsuns_emotion82","name":"Motion Emoticon: Maru (Celebration)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_malsuns_emotion82"}},{"itemId":1250046,"className":"motion_malsuns_emotion100","name":"Motion Emoticon: Sunfish (IC)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_malsuns_emotion100"}},{"itemId":1250047,"className":"motion_malsuns_emotion77","name":"Motion Emoticon: Maru (Happy)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_malsuns_emotion77"}},{"itemId":1250053,"className":"motion_popocon3_2","name":"Motion Emoticon: Popolion (Badmouth)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_popo_emotion03"}},{"itemId":1250054,"className":"motion_medeinacon2_2","name":"Motion Emoticon: Medeina (Pursy)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_medeina_emotion04"}},{"itemId":1250055,"className":"motion_bakarinecon1_2","name":"Motion Emoticon: Vakarine(Shook)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_bakarine_emotion60"}},{"itemId":1250056,"className":"motion_kupole_emotion02_2","name":"Motion Emoticon: Kupole (Shocked)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_kupole_emotion03"}},{"itemId":1250057,"className":"motion_dionyscon01_2","name":"Motion Emoticon: Dionys(Scared)","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON","strArg":"motion_bakarine_emotion55"}},{"itemId":1400001,"className":"Scroll_SkillItem_Custom_Moringponia_01","name":"Orb of Magic: Remove Mutant","type":"Consume","group":"Drug","weight":1,"maxStack":10,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_SKILL_SCROLL","strArg":"RaidConsume"}},{"itemId":1400002,"className":"Scroll_SkillItem_Custom_Moringponia_02","name":"Orb of Magic: Raise Immune","type":"Consume","group":"Drug","weight":1,"maxStack":10,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_SKILL_SCROLL","strArg":"RaidConsume"}},{"itemId":1400003,"className":"Scroll_SkillItem_Custom_Moringponia_03","name":"Orb of Magic: Remove Petrification","type":"Consume","group":"Drug","weight":1,"maxStack":10,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_SKILL_SCROLL","strArg":"RaidConsume"}},{"itemId":1400004,"className":"Scroll_SkillItem_Custom_Moringponia_04","name":"Orb of Magic: Steal Tantalizer Buff","type":"Consume","group":"Drug","weight":1,"maxStack":10,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_SKILL_SCROLL","strArg":"RaidConsume"}},{"itemId":1400005,"className":"Scroll_SkillItem_Custom_Moringponia_05","name":"Orb of Magic: Target Set","type":"Consume","group":"Drug","weight":1,"maxStack":10,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_SKILL_SCROLL","strArg":"RaidConsume"}},{"itemId":1410001,"className":"Ancient_Card_Escarot","name":"[Escarot] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Escarot"}},{"itemId":1410002,"className":"Ancient_Card_Grimreaper","name":"[Grim Reaper] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Grimreaper"}},{"itemId":1410003,"className":"Ancient_Card_Naktis","name":"[Naktis] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Naktis"}},{"itemId":1410004,"className":"Ancient_Card_Prisoncutter","name":"[Prison Cutter] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Prisoncutter"}},{"itemId":1410005,"className":"Ancient_Card_Fireload","name":"[Fire Lord] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Fireload"}},{"itemId":1410006,"className":"Ancient_Card_Saltistter","name":"[Saltistter] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Saltistter"}},{"itemId":1410007,"className":"Ancient_Card_Velniamonkey","name":"[Velnia Monkey] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Velniamonkey"}},{"itemId":1410008,"className":"Ancient_Card_Canceril","name":"[Canceril] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Canceril"}},{"itemId":1410009,"className":"Ancient_Card_FerretMarauder","name":"[Ferret Marauder] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_FerretMarauder"}},{"itemId":1410010,"className":"Ancient_Card_Lapene","name":"[Rafene] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Lapene"}},{"itemId":1410011,"className":"Ancient_Card_Mothstem","name":"[Mothstem] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Mothstem"}},{"itemId":1410012,"className":"Ancient_Card_Colimencia","name":"[Colimencia] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Colimencia"}},{"itemId":1410013,"className":"Ancient_Card_Orkan","name":"[Organ] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Orkan"}},{"itemId":1410014,"className":"Ancient_Card_Sequoia","name":"[Sequoia] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Sequoia"}},{"itemId":1410015,"className":"Ancient_Card_Mandara","name":"[Mandara] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Mandara"}},{"itemId":1410016,"className":"Ancient_Card_Castle_princess","name":"[Castle Princess] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Castle_princess"}},{"itemId":1410017,"className":"Ancient_Card_Torment","name":"[Tormenta] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Torment"}},{"itemId":1410018,"className":"Ancient_Card_froster_lord","name":"[Froster Lord] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_froster_lord"}},{"itemId":1410019,"className":"Ancient_Card_Tantaliser","name":"[Tantalizer] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Tantaliser"}},{"itemId":1410020,"className":"Ancient_Card_Wastrel","name":"[Wastrel] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Wastrel"}},{"itemId":1410021,"className":"Ancient_Card_solcomm","name":"[Solcomm] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_solcomm"}},{"itemId":1410022,"className":"Ancient_Card_Asiomage","name":"[Asiomage] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Asiomage"}},{"itemId":1410023,"className":"Ancient_Card_kucarry_balzermancer","name":"[Kucarry Balzermancer] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_kucarry_balzermancer"}},{"itemId":1410024,"className":"Ancient_Card_ProddedHorse","name":"[Prodded Horse] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_ProddedHorse"}},{"itemId":1410025,"className":"Ancient_Card_ChiefGuard","name":"[Nebulas] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_ChiefGuard"}},{"itemId":1410026,"className":"Ancient_Card_mirtis","name":"[Mirtis] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_mirtis"}},{"itemId":1410027,"className":"Ancient_Card_helgasercle","name":"[Helgasercle] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_helgasercle"}},{"itemId":1410028,"className":"Ancient_Card_Marnoks","name":"[Marnox] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Marnoks"}},{"itemId":1410029,"className":"Ancient_Card_Lecifer","name":"[Rexipher] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Lecifer"}},{"itemId":1410030,"className":"Ancient_Card_ignas","name":"[Ignas] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_ignas"}},{"itemId":1410031,"className":"Ancient_Card_Zawra","name":"[Zaura] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Zawra"}},{"itemId":1410032,"className":"Ancient_Card_Blud","name":"[Blut] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Blud"}},{"itemId":1410033,"className":"Ancient_Card_Nuaelle","name":"[Nuaele] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Nuaelle"}},{"itemId":1410034,"className":"Ancient_Card_succubus","name":"[Succubus] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_succubus"}},{"itemId":1410035,"className":"Ancient_Card_Porahound","name":"[Porahound] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Porahound"}},{"itemId":1410036,"className":"Ancient_Card_Moringponia","name":"[Moringponia] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Moringponia"}},{"itemId":1410037,"className":"Ancient_Card_Skiaclipse","name":"[Skiaclipse] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Skiaclipse"}},{"itemId":1410038,"className":"Ancient_Card_Velcoffer","name":"[Velcoffer] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Velcoffer"}},{"itemId":1410039,"className":"Ancient_Card_Boruta","name":"[Boruta] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Boruta"}},{"itemId":1410040,"className":"Ancient_Card_Baby_Skiaclipse","name":"[Baby Skiaclipse] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Baby_Skiaclipse"}},{"itemId":1410041,"className":"Ancient_Card_Baby_Marnoks","name":"[Maru] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Baby_Marnoks"}},{"itemId":1410042,"className":"Ancient_Card_Baby_Hauberk","name":"[Little Burk] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Baby_Hauberk"}},{"itemId":1410043,"className":"Ancient_Card_Misrus","name":"[Misrus] Assister Card","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Misrus"}},{"itemId":1420043,"className":"Ancient_boostToken","name":"Assister EXP Tome ","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ANCIENT_BOOST","strArg":"Ancient_boostToken","numArg1":1,"numArg2":3600000}},{"itemId":1420044,"className":"Ability_Point_Stone_1000_Acient","name":"Attribute Points 1,000 Ticket","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":1420045,"className":"Ancient_boostToken_150","name":"Assister EXP Tome + 150%","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ANCIENT_BOOST","strArg":"Ancient_boostToken_150","numArg1":1.5,"numArg2":3600000}},{"itemId":1420046,"className":"Ancient_boostToken_200","name":"Assister EXP Tome + 200%","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ANCIENT_BOOST","strArg":"Ancient_boostToken_200","numArg1":2,"numArg2":3600000}},{"itemId":2000000,"className":"Achieve_Event_Steam_PoPo_Vacation","name":"Title - PoPo Vacation","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"Achieve_Event_Steam_PoPo_Vacation","strArg":"Normal"}},{"itemId":2000002,"className":"Achieve_Steam_PIZZA","name":"Title - Pizza Time","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"Achieve_Steam_PIZZ","strArg":"Normal"}},{"itemId":2000003,"className":"Achieve_Event_Steam_One_of_A_Kind","name":"Title - One of A Kind","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"Achieve_Event_Steam_One_of_A_Kind","strArg":"Normal"}},{"itemId":2000006,"className":"Achieve_Christmas_Master","name":"Title - Christmas Master","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"Christmas_Master"}},{"itemId":2500013,"className":"GLOBAL_STEAM_Transcend_Scroll_8_PC","name":"[Lv. 400] Stage 8 Transcendence Scroll","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"transcend_Set_400","numArg1":8,"numArg2":100}},{"itemId":10000006,"className":"event_2002_Boruta_repairPotion","name":"[Event] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000009,"className":"BuffStone_NewUser","name":"New/Returning Savior Buff Activation Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_BuffStone_NewUser"}},{"itemId":10000010,"className":"BuffStone_NewUser_14d","name":"[Reward] New/Returning Savior Buff Activation Scroll (14 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_BuffStone_NewUser","strArg":"IgnoreUserType"}},{"itemId":10000011,"className":"BuffStone_NewUser_30d","name":"[Reward] New/Returning Savior Buff Activation Scroll (30 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_BuffStone_NewUser","strArg":"IgnoreUserType"}},{"itemId":10000025,"className":"EVENT_2005_repairPotion","name":"[Event] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000035,"className":"Event_ChallengeModeReset_1","name":"[TOSventure] Challenge Mode One Entry Voucher","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000036,"className":"Event_ChallengeModeReset_2","name":"[FLEX BOX] Challenge Mode One Entry Voucher","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000038,"className":"Event_Drug_Looting_Potion_500_1","name":"[TOSventure] Looting Chance: 500","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_LOOTINGCHANCE_POTION","numArg1":500,"numArg2":3600000}},{"itemId":10000039,"className":"Event_Drug_Looting_Potion_500_2","name":"[Stamp Tour] Looting Chance: 500","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_LOOTINGCHANCE_POTION","numArg1":500,"numArg2":3600000}},{"itemId":10000040,"className":"Event_Drug_Looting_Potion_500_3","name":"[Event] Looting Chance: 500","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_LOOTINGCHANCE_POTION","numArg1":500,"numArg2":3600000}},{"itemId":10000041,"className":"EVENT_Coupon_Reagent_Bottle_Expup_100_1","name":"[TOSventure] Pamoka Solution EXP 2x Voucher","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"ITEM_Reagent_Bottle_Expup_100","numArg2":14400000}},{"itemId":10000042,"className":"EVENT_Coupon_Reagent_Bottle_Expup_100_2","name":"[Stamp Tour] Pamoka Solution EXP 2x Voucher","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"ITEM_Reagent_Bottle_Expup_100","numArg2":14400000}},{"itemId":10000043,"className":"EVENT_Coupon_Reagent_Bottle_Expup_100_3","name":"[Event] Pamoka Solution EXP 2x Voucher","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"ITEM_Reagent_Bottle_Expup_100","numArg2":14400000}},{"itemId":10000046,"className":"Event_Adventure_Reward_Seed_1","name":"[FLEX BOX] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000047,"className":"Event_Adventure_Reward_Seed_2","name":"[Stamp Tour] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000048,"className":"Event_Adventure_Reward_Seed_3","name":"[Lucky Ticket] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000049,"className":"Event_Goddess_Statue_Team_1","name":"[FLEX BOX] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000050,"className":"Event_Goddess_Statue_Team_2","name":"[Stamp Tour] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000051,"className":"Event_Goddess_Statue_Team_3","name":"[Lucky Ticket] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000058,"className":"Event_repairPotion_1","name":"[FLEX BOX] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000059,"className":"Event_repairPotion_2","name":"[Lucky Ticket] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000060,"className":"Event_repairPotion_3","name":"[Event] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000071,"className":"Event_ChallengeModeReset_4","name":"[Stamp Tour] Challenge Mode One Entry Voucher","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000072,"className":"Event_ChallengeModeReset_5","name":"[Your Master] Challenge Mode One Entry Voucher","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000086,"className":"Event_repairPotion_4","name":"[Your Master] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000087,"className":"Event_Adventure_Reward_Seed_4","name":"[Your Master] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000088,"className":"Event_Goddess_Statue_Team_4","name":"[Your Master] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000090,"className":"Event_Adventure_Reward_Seed_5","name":"[Event] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000091,"className":"Event_Goddess_Statue_Team_5","name":"[Event] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000093,"className":"Event_repairPotion_5","name":"[Event] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000112,"className":"Event_repairPotion_6","name":"[Full Moon] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000113,"className":"Event_Adventure_Reward_Seed_6","name":"[Full Moon] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000114,"className":"Event_Goddess_Statue_Team_6","name":"[Full Moon] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000124,"className":"Drug_RedApple20_Event_1","name":"[Full Moon] Small Elixir of HP Recovery","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":100,"sellPrice":20,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100HP_Dot","numArg1":20,"numArg2":11000}},{"itemId":10000125,"className":"Drug_BlueApple20_Event_1","name":"[Full Moon] Small Elixir of SP Recovery","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":100,"sellPrice":20,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100SP_Dot","numArg1":20,"numArg2":11000}},{"itemId":10000129,"className":"Event_2009_Chursok_Rice_Cake","name":"[Full Moon] Moon Rice Cake","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":160,"sellPrice":32,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Event_2009_Chursok_Rice_Cake"}},{"itemId":10000136,"className":"Event_repairPotion_200","name":"[Halloween] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000140,"className":"Event_repairPotion_7","name":"[Growth Support] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000141,"className":"Drug_RedApple20_Event_2","name":"[Growth Support] Small Elixir of HP Recovery","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":100,"sellPrice":20,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100HP_Dot","numArg1":20,"numArg2":11000}},{"itemId":10000142,"className":"Drug_BlueApple20_Event_2","name":"[Growth Support] Small Elixir of SP Recovery","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":100,"sellPrice":20,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100SP_Dot","numArg1":20,"numArg2":11000}},{"itemId":10000143,"className":"Event_Adventure_Reward_Seed_7","name":"[Growth Support] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000144,"className":"Event_Goddess_Statue_Team_8","name":"[Growth Support] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000150,"className":"EVENT_Coupon_Reagent_Bottle_Expup_100_4","name":"[Growth Support] Pamoka Solution EXP 2x Voucher","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"ITEM_Reagent_Bottle_Expup_100","numArg2":14400000}},{"itemId":10000154,"className":"Event_repairPotion_8","name":"[Attendance] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000157,"className":"Event_Drug_Looting_Potion_500_4","name":"[Attendance] Looting Chance : 500","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_LOOTINGCHANCE_POTION","numArg1":500,"numArg2":3600000}},{"itemId":10000159,"className":"EVENT_Coupon_Reagent_Bottle_Expup_100_5","name":"[Attendance] Pamoka Solution EXP 2x Voucher","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"ITEM_Reagent_Bottle_Expup_100","numArg2":14400000}},{"itemId":10000165,"className":"Drug_RedApple20_Event_3","name":"[Giltine] Small Elixir of HP Recovery","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":100,"sellPrice":20,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100HP_Dot","numArg1":20,"numArg2":11000}},{"itemId":10000166,"className":"Drug_BlueApple20_Event_3","name":"[Giltine] Small Elixir of SP Recovery","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":100,"sellPrice":20,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100SP_Dot","numArg1":20,"numArg2":11000}},{"itemId":10000169,"className":"Event_repairPotion_9","name":"[5th Anniversary] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000170,"className":"Event_Stone_500_4","name":"[5th Anniversary] Attribute Points 500","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":500}},{"itemId":10000171,"className":"Drug_RedApple20_Event_4","name":"[5th Anniversary] Small Elixir of HP Recovery","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":100,"sellPrice":20,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100HP_Dot","numArg1":20,"numArg2":11000}},{"itemId":10000172,"className":"Drug_BlueApple20_Event_4","name":"[5th Anniversary] Small Elixir of SP Recovery","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":100,"sellPrice":20,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100SP_Dot","numArg1":20,"numArg2":11000}},{"itemId":10000173,"className":"Event_gemExpStone09_6","name":"[5th Anniversary] 7-Star Gem Abrasive","type":"Etc","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000176,"className":"Event_Ability_Point_Stone_10000_14","name":"[5th Anniversary] Attribute Points 10,000","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000177,"className":"Event_Ability_Point_Stone_1000_10","name":"[5th Anniversary] Attribute Points 1,000","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000178,"className":"Event_Adventure_Reward_Seed_8","name":"[5th Anniversary] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000179,"className":"Event_Goddess_Statue_Team_9","name":"[5th Anniversary] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000183,"className":"Event_Drug_Looting_Potion_500_5","name":"[Fishing] Looting Chance: 500","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_LOOTINGCHANCE_POTION","numArg1":500,"numArg2":3600000}},{"itemId":10000186,"className":"misc_gemExpStone10_Ev","name":"[5th Anniversary] 8-Star Gem Abrasive","type":"Etc","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000188,"className":"Event_repairPotion_201","name":"[Attendance] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000191,"className":"Event_Drug_Looting_Potion_500_201","name":"[Attendance] Looting Chance : 500","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_LOOTINGCHANCE_POTION","numArg1":500,"numArg2":3600000}},{"itemId":10000194,"className":"Event_Harvest_seed","name":"[Event] Blessed Seed","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_THANKSGIVINGDAY"}},{"itemId":10000198,"className":"Event_repairPotion_202","name":"[1st Anniversary] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000210,"className":"Event_repairPotion_10","name":"[Yak Mambo] Urgent Repair Kit ","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000211,"className":"Event_Adventure_Reward_Seed_9","name":"[Yak Mambo] Miracle Seeds ","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000212,"className":"Event_Goddess_Statue_Team_10","name":"[Yak Mambo] Goddess Sculpture ","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000224,"className":"Event_repairPotion_11","name":"[Supply] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000225,"className":"Event_Adventure_Reward_Seed_10","name":"[Supply] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000226,"className":"Event_Goddess_Statue_Team_11","name":"[Supply] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000227,"className":"Event_Ability_Point_Stone_10000_17","name":"[Supply] Attribute Points 10,000","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000228,"className":"Event_Ability_Point_Stone_1000_13","name":"[Supply] Attribute Points 1,000","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000231,"className":"Event_gemExpStone09_8","name":"[Supply] 7-Star Gem Abrasive","type":"Etc","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000232,"className":"misc_gemExpStone10_Ev3","name":"[Supply] 8-Star Gem Abrasive","type":"Etc","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000233,"className":"Drug_RedApple20_Event_5","name":"[Supply] Small Elixir of HP Recovery","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":100,"sellPrice":20,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100HP_Dot","numArg1":20,"numArg2":11000}},{"itemId":10000234,"className":"Drug_BlueApple20_Event_5","name":"[Supply] Small Elixir of SP Recovery","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":100,"sellPrice":20,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100SP_Dot","numArg1":20,"numArg2":11000}},{"itemId":10000240,"className":"Event_Ability_Point_Stone_1000_14","name":"[2021] Attribute Points 1,000","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000241,"className":"Event_Ability_Point_Stone_10000_18","name":"[2021] Attribute Points 10,000","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000244,"className":"Event_gemExpStone09_9","name":"[2021] 7-Star Gem Abrasive","type":"Etc","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000245,"className":"Event_repairPotion_12","name":"[2021] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000246,"className":"EVENT_Coupon_Reagent_Bottle_Expup_100_7","name":"[2021] Pamoka Solution EXP 2x Voucher","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"ITEM_Reagent_Bottle_Expup_100","numArg2":14400000}},{"itemId":10000249,"className":"Event_Ability_Point_Stone_100_2","name":"[2021] Attribute Points 100","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":100}},{"itemId":10000254,"className":"Event_Ability_Point_Stone_10000_19","name":"[Seollal] Attribute Points 10,000","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000258,"className":"Event_Stone_500_6","name":"[Lovey Dovey] Attribute Points 500","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":500}},{"itemId":10000259,"className":"Event_repairPotion_13","name":"[Lovey Dovey] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000260,"className":"Event_Adventure_Reward_Seed_11","name":"[Lovey Dovey] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000262,"className":"Event_Goddess_Statue_Team_12","name":"[Lovey Dovey] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000263,"className":"Event_Ability_Point_Stone_1000_15","name":"[Lovey Dovey] Attribute Points 1,000","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000264,"className":"Drug_RedApple20_Event_6","name":"[Lovey Dovey] Small Elixir of HP Recovery","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":100,"sellPrice":20,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100HP_Dot","numArg1":20,"numArg2":11000}},{"itemId":10000265,"className":"Drug_BlueApple20_Event_6","name":"[Lovey Dovey] Small Elixir of SP Recovery","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":100,"sellPrice":20,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100SP_Dot","numArg1":20,"numArg2":11000}},{"itemId":10000280,"className":"Event_Ability_Point_Stone_1000_16","name":"[Goddess Statue] Attribute Points 1,000","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000281,"className":"Event_Ability_Point_Stone_10000_20","name":"[Goddess Statue] Attribute Points 10,000","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000283,"className":"Event_gemExpStone09_10","name":"[Goddess Statue] 7-Star Gem Abrasive","type":"Etc","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000284,"className":"Event_repairPotion_14","name":"[Goddess Statue] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000285,"className":"EVENT_Coupon_Reagent_Bottle_Expup_100_8","name":"[Goddess Statue] Pamoka Solution EXP 2x Voucher","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"ITEM_Reagent_Bottle_Expup_100","numArg2":14400000}},{"itemId":10000286,"className":"Event_Ability_Point_Stone_10_1","name":"[2021] Attribute Points 100","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":100}},{"itemId":10000293,"className":"Event_Ability_Point_Stone_10000_21","name":"[Arbor Day] Attribute Points 10,000","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000295,"className":"Event_repairPotion_15","name":"[Arbor Day] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000296,"className":"Event_Adventure_Reward_Seed_12","name":"[Arbor Day] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000297,"className":"Event_Goddess_Statue_Team_13","name":"[Arbor Day] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000298,"className":"Event_Ability_Point_Stone_1000_17","name":"[Arbor Day] Attribute Points 1,000","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000299,"className":"Drug_RedApple20_Event_7","name":"[Arbor Day] Small Elixir of HP Recovery","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":100,"sellPrice":20,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100HP_Dot","numArg1":20,"numArg2":11000}},{"itemId":10000300,"className":"Drug_BlueApple20_Event_7","name":"[Arbor Day] Small Elixir of SP Recovery","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":100,"sellPrice":20,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100SP_Dot","numArg1":20,"numArg2":11000}},{"itemId":10000303,"className":"EVENT_Coupon_Reagent_Bottle_Expup_100_9","name":"[Arbor Day] Pamoka Solution EXP 2x Voucher","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"ITEM_Reagent_Bottle_Expup_100","numArg2":14400000}},{"itemId":10000304,"className":"Event_gemExpStone09_11","name":"[Arbor Day] 7-Star Gem Abrasive","type":"Etc","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000312,"className":"Event_Adventure_Reward_Seed_13","name":"[Theif] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000313,"className":"Event_Goddess_Statue_Team_14","name":"[Theif] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000314,"className":"Event_repairPotion_16","name":"[Theif] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000346,"className":"Event_Ability_Point_Stone_1000_20","name":"[Campfire] Attribute Points 1,000","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000347,"className":"Event_Adventure_Reward_Seed_16","name":"[Campfire] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000348,"className":"Event_Goddess_Statue_Team_17","name":"[Campfire] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000349,"className":"Event_Ability_Point_Stone_10000_23","name":"[Campfire] Attribute Points 10,000","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000353,"className":"misc_gemExpStone12_Ev3","name":"[Campfire] Shining LV 10 Gem Abrasive","type":"Etc","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000366,"className":"Event_Adventure_Reward_Seed_17","name":"[21Summer] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000367,"className":"Event_Goddess_Statue_Team_18","name":"[21Summer] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000368,"className":"EVENT_Coupon_Reagent_Bottle_Expup_100_10","name":"[21Summer] Pamoka Solution EXP 2x Voucher","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"ITEM_Reagent_Bottle_Expup_100","numArg2":14400000}},{"itemId":10000369,"className":"Event_Ability_Point_Stone_10000_25","name":"[21Summer] Attribute Points 10,000","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000371,"className":"Event_Ability_Point_Stone_1000_21","name":"[21Summer] Attribute Points 1,000","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000372,"className":"Drug_RedApple20_Event_9","name":"[21Summer] Small Elixir of HP Recovery","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":100,"sellPrice":20,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100HP_Dot","numArg1":20,"numArg2":11000}},{"itemId":10000373,"className":"Drug_BlueApple20_Event_9","name":"[21Summer] Small Elixir of SP Recovery","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":100,"sellPrice":20,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff_Time","strArg":"Drug_Heal100SP_Dot","numArg1":20,"numArg2":11000}},{"itemId":10000379,"className":"Event_repairPotion_18","name":"[Goddess Mask] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000380,"className":"Event_Goddess_Statue_Team_19","name":"[Goddess Mask] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000381,"className":"Event_Adventure_Reward_Seed_18","name":"[Goddess Mask] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000383,"className":"Event_Ability_Point_Stone_1000_22","name":"[FLEX BOX] Attribute Point 1,000","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000387,"className":"Event_Goddess_Statue_Team_20","name":"[FLEX BOX] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000388,"className":"Event_Adventure_Reward_Seed_19","name":"[FLEX BOX] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000390,"className":"Event_repairPotion_19","name":"[FLEX BOX] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000393,"className":"Event_repairPotion_205","name":"[Attendance] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000396,"className":"Event_Drug_Looting_Potion_500_205","name":"[Attendance] Looting Chance : 500","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_LOOTINGCHANCE_POTION","numArg1":500,"numArg2":3600000}},{"itemId":10000399,"className":"EVENT_Coupon_Reagent_Bottle_Expup_100_205","name":"[Attendance] Pamoka Solution EXP 2x Voucher","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"ITEM_Reagent_Bottle_Expup_100","numArg2":14400000}},{"itemId":10000400,"className":"Event_Ability_Point_Stone_1000_25","name":"[Renewed] Attribute Points 1,000","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000401,"className":"Event_repairPotion_25","name":"[Renewed] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":10000402,"className":"Event_Goddess_Statue_Team_25","name":"[Renewed] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000403,"className":"Event_Adventure_Reward_Seed_25","name":"[Renewed] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000415,"className":"Event_Adventure_Reward_Seed_30","name":"[Event] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000440,"className":"Event_Ability_Point_Stone_1000_28","name":"[Gold Fishing] Attribute Points 1,000","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000441,"className":"Event_Goddess_Statue_Team_32","name":"[Relic] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000442,"className":"Event_Adventure_Reward_Seed_32","name":"[Relic] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000453,"className":"Event_2109_Wish_Sanjeok","name":"[Rabbit] Meat Veggy Skewer","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":160,"sellPrice":32,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Event_2109_Wish_Sanjeok"}},{"itemId":10000460,"className":"Event_Ability_Point_Stone_1000_33","name":"[Rabbit] Attribute Points 1,000","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000464,"className":"Event_Goddess_Statue_Team_33","name":"[Rabbit] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000465,"className":"Event_Adventure_Reward_Seed_33","name":"[Rabbit] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000487,"className":"Event_Goddess_Statue_Team_34","name":"[Halloween] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000488,"className":"Event_Adventure_Reward_Seed_34","name":"[Halloween] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000493,"className":"Event_2111_KoKuMa","name":"[Toasty] Sweet Potato","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":160,"sellPrice":32,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Event_2111_KoKuMa"}},{"itemId":10000494,"className":"Event_2111_Grilled_KoKuMa","name":"[Toasty] Baked Sweet Potato","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":160,"sellPrice":32,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Event_2111_Grilled_KoKuMa"}},{"itemId":10000502,"className":"Event_Goddess_Statue_Team_37","name":"[Toasty] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000503,"className":"Event_Adventure_Reward_Seed_37","name":"[Toasty] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000509,"className":"Achieve_Ability_Point_Stone_1000_Team","name":"[Achievement] Attribute Points 1,000","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000511,"className":"Achieve_Drug_Looting_Potion_500_1","name":"[Event] Looting Chance: 500","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_LOOTINGCHANCE_POTION","numArg1":500,"numArg2":3600000}},{"itemId":10000514,"className":"Goddess_Statue_Team_Achieve_1","name":"[Event] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000515,"className":"Adventure_Reward_Seed_Achieve_1","name":"[Event] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000517,"className":"Event_Goddess_Statue_Team_38","name":"[Stamp] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000518,"className":"Event_Adventure_Reward_Seed_38","name":"[Stamp] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000526,"className":"Event_Goddess_Statue_Team_39","name":"[6th] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000527,"className":"Event_Adventure_Reward_Seed_39","name":"[6th] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000530,"className":"Event_Ability_Point_Stone_1000_39","name":"[6th] Attribute Points 1,000","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000568,"className":"Event_Goddess_Statue_Team_41","name":"[Berk's Visit] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000569,"className":"Event_Adventure_Reward_Seed_41","name":"[Berk's Visit] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000572,"className":"Event_Ability_Point_Stone_1000_41","name":"[Berk's Visit] Attribute Points 1,000","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000584,"className":"Event_Enchantchip_limit","name":"[Rabbit] Enchant Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10000590,"className":"Moru_Ruby_limit","name":"[Rabbit] Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10000591,"className":"Moru_Gold_limit","name":"[Rabbit] Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10000599,"className":"Event_Goddess_Statue_Team_limit","name":"[Rabbit] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10000600,"className":"Event_Adventure_Reward_Seed_limit","name":"[Rabbit] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10000619,"className":"Event_2210_Stew1","name":"[Halloween] Spicy Pumpkin Stew","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":160,"sellPrice":32,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_BUFF_EVENT_2110_KLAPEDA_GHOST","strArg":"Event_2210_Stew1"}},{"itemId":10000620,"className":"Event_2210_Stew2","name":"[Halloween] Sweet Pumpkin Stew","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":160,"sellPrice":32,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_BUFF_EVENT_2110_KLAPEDA_GHOST","strArg":"Event_2210_Stew2"}},{"itemId":10000621,"className":"Event_2210_Stew3","name":"[Halloween] Healthy Pumpkin Stew","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":160,"sellPrice":32,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_BUFF_EVENT_2110_KLAPEDA_GHOST","strArg":"Event_2210_Stew3"}},{"itemId":10000625,"className":"LegendCard_Move_Scroll","name":"Legend Card Level Transfer Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10002006,"className":"Event_Enchantchip_limit_1","name":"[New Year] Enchant Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10002012,"className":"Moru_Ruby_limit_1","name":"[New Year] Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10002013,"className":"Moru_Gold_limit_1","name":"[New Year] Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10002021,"className":"Event_Goddess_Statue_Team_limit_1","name":"[New Year] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10002022,"className":"Event_Adventure_Reward_Seed_limit_1","name":"[New Year] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10003000,"className":"EVENT_2003_GUILD_QUEST_MEDAL","name":"Symbol of Guild Membership","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_2003_GUILD_QUEST_MEDAL"}},{"itemId":10003001,"className":"EVENT_2003_GUILD_CARD_LV4","name":"Guild Lv 4 EXP Card","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_1805_GUILD_CARD_LV4","strArg":"EVENT_1805_NEWUSER_ACHIEVE"}},{"itemId":10003002,"className":"EVENT_2003_GUILD_01","name":"Title - Gather Together Better TOS","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2003_GUILD_01"}},{"itemId":10003006,"className":"Event_2003_WhiteDay_Candy_1","name":"Strawberry Candy","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_WhiteDay_Candy_1","numArg2":300000}},{"itemId":10003007,"className":"Event_2003_WhiteDay_Candy_2","name":"Soda Candy","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_WhiteDay_Candy_2","numArg2":300000}},{"itemId":10003008,"className":"Event_2003_WhiteDay_Candy_3","name":"Lemon Candy","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_WhiteDay_Candy_4","numArg2":300000}},{"itemId":10003009,"className":"Event_2003_WhiteDay_Candy_4","name":"Tutti Frutti Candy","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHPSP_Dot","numArg1":500}},{"itemId":10003010,"className":"EVENT_2003_Arbor_Day_Title","name":"Title-Treasuring Nature","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2003_Arbor_Day"}},{"itemId":10003015,"className":"EVENT_Blessed_Fruit","name":"Blessed Fruit","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_2004_FRUIT","numArg2":1800000}},{"itemId":10003026,"className":"Event_2004_Stamp_Title","name":"Title - Stamp Tour","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2004_Stamp"}},{"itemId":10003037,"className":"EVENT_2005_bonfire","name":"[Event] Bonfire of the Expedition","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_EVENT_2005_BONFIRE"}},{"itemId":10003040,"className":"Event_Sweet_Zongzi","name":"[Event] Sweet Rice Dumpling","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_EVENT_2006_DRAGON_BOAT_USE_SWEET_ZONGZI","strArg":"EVENT_2006_SALTY_ZONGZI","numArg2":1800000}},{"itemId":10003041,"className":"Event_Salty_Zongzi","name":"[Event] Savoury Rice Dumpling (14 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"EVENT_2006_SALTY_ZONGZI","numArg2":3600000}},{"itemId":10003046,"className":"EVENT_2006_SUMMER_brochette","name":"[Event] BBQ Prawn Skewers","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_EVENT_2006_SUMMER","strArg":"brochette"}},{"itemId":10003047,"className":"EVENT_2006_SUMMER_mojito","name":"[Event] Blue Lemonade","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_EVENT_2006_SUMMER","strArg":"mojito"}},{"itemId":10003048,"className":"EVENT_2006_SUMMER_coconut","name":"[Event] Fresh Coconut Water","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_EVENT_2006_SUMMER","strArg":"coconut"}},{"itemId":10003049,"className":"EVENT_2006_SUMMER_bingsu","name":"[Event] Sweet Fruity Ice Flake","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_EVENT_2006_SUMMER","strArg":"bingsu"}},{"itemId":10003050,"className":"EVENT_2006_SUMMER_softice","name":"[Event] Creamy Soft Ice Cream","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_EVENT_2006_SUMMER","strArg":"softice"}},{"itemId":10003056,"className":"EVENT_2007_Tecance","name":"Title - A Midsummer's TOSventure","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2007_Tecance"}},{"itemId":10003100,"className":"EVENT_2007_MATSURI_takoyaki","name":"[Summer Matsuri] Takoyaki","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_EVENT_2006_SUMMER","strArg":"mojito"}},{"itemId":10003111,"className":"EVENT_2007_MATSURI_ringoame","name":"[Summer Matsuri] Lingoame","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_EVENT_2006_SUMMER","strArg":"coconut"}},{"itemId":10003112,"className":"EVENT_2007_MATSURI_kakigori","name":"[Summer Matsuri] Kakigoori","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_EVENT_2006_SUMMER","strArg":"bingsu"}},{"itemId":10003113,"className":"EVENT_2007_MATSURI_okonomiyaki","name":"[Summer Matsuri] Okonomiyaki","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_EVENT_2006_SUMMER","strArg":"softice"}},{"itemId":10003176,"className":"Event_SeasonNewWorld_Achieve1","name":"[Event] Title - Immigrant from Season Server","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"Event_SeasonNewWorld_Achieve1"}},{"itemId":10003226,"className":"Event_SandraGlass_Box","name":"[5th Anniversary] Sandra's Magnifier Box","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Sandra_Glass_7/5;Event_Sandra_Glass_1line_11/5;"}},{"itemId":10003253,"className":"EVENT_2012_Blessed_Fruit","name":"[EP.13] Golden Apple of EXP","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_2012_FRUIT","numArg2":14400000}},{"itemId":10003273,"className":"TUTO_TOS_School_Graduate","name":"Title-TOS Academy Graduate","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"TOS_School_Graduate"}},{"itemId":10003303,"className":"card_Xpupkit10_Event_4","name":"[Supply] Lv. 10 Enhancement Card","type":"Etc","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10003309,"className":"EVENT_2101_MORU_BOX","name":"[Supply] Advanced Anvil Box","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Ruby_event_16/2;Moru_Event_Gold_10/5;"}},{"itemId":10003311,"className":"EVENT_2101_Extract_kit_Box","name":"[Supply] Ichor Extraction Kit Box","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Extract_kit_Gold_Team_12/5;Extract_kit_Sliver_Team_10/5;"}},{"itemId":10003312,"className":"EVENT_2101_MORU_BOX_1","name":"[2021] Special Anvil Box","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Ruby_event_17/10;Moru_Event_Gold_11/30;"}},{"itemId":10003325,"className":"EVENT_Title_1","name":"Unknown Event Title Box","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_Title_2101_1"}},{"itemId":10003326,"className":"EVENT_Title_2","name":"Unknown Event Title Box","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_Title_2101_2"}},{"itemId":10003340,"className":"EVENT_2102_Title_01","name":"Title - Friend of Rozalija","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2102_Title_01"}},{"itemId":10003341,"className":"EVENT_2102_Title_02","name":"Title - Friend of Boruble","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2102_Title_02"}},{"itemId":10003352,"className":"card_Xpupkit10_Event_6","name":"[Lovey Dovey] Lv. 10 Enhancement Card","type":"Etc","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10003359,"className":"EVENT_2103_Title_npc_RUN_masterEv","name":"Title- Friend of Shelly","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2103_Title_01"}},{"itemId":10003360,"className":"EVENT_2103_Title_npc_MIKO_masterEv","name":"Title- Friend of Hitomiko","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2103_Title_02"}},{"itemId":10003361,"className":"EVENT_2103_Title_npc_sculptor","name":"Title- Friend of Tesla","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2103_Title_03"}},{"itemId":10003362,"className":"EVENT_2103_Title_npc_MasterMatross","name":"Title- Friend of Pauline","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2103_Title_04"}},{"itemId":10003363,"className":"EVENT_2103_Title_npc_MEI_master","name":"Title- Friend of May","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2103_Title_05"}},{"itemId":10003364,"className":"EVENT_2103_Title_npc_MUR_master","name":"Title- Friend of Phelixia","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2103_Title_06"}},{"itemId":10003365,"className":"EVENT_2103_Title_npc_SHM_masterEv","name":"Title- Friend of Eclipse","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2103_Title_07"}},{"itemId":10003366,"className":"EVENT_2103_Title_npc_FNC_master","name":"Title- Friend of Sorscha","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2103_Title_08"}},{"itemId":10003367,"className":"EVENT_2103_Title_npc_SCT_master","name":"Title- Friend of Recon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2103_Title_09"}},{"itemId":10003368,"className":"EVENT_2103_Title_npc_FAL_master","name":"Title- Friend of Genklas","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2103_Title_10"}},{"itemId":10003369,"className":"EVENT_2103_MORU_BOX","name":"[Arbor Day] Advanced Anvil Box","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Ruby_event_21/5;Moru_Event_Gold_14/10;"}},{"itemId":10003370,"className":"EVENT_2103_Relic_Gem","name":"[Event] Prism Coal Large Box","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_Relic_Gem/3000;"}},{"itemId":10003380,"className":"JPN_Event_Blessed_Fruit","name":"[Event] Golden Apple of EXP (14 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_2012_FRUIT","numArg2":14400000}},{"itemId":10003387,"className":"SUPPLY_TITLE_GIVE_ITEM","name":"Event Title Selection Box","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_SUPPLY_TITLE_GIVE_ITEM"}},{"itemId":10003391,"className":"EVENT_Best_Painter","name":"Title- Best Painter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_Best_Painter"}},{"itemId":10003392,"className":"EVENT_2103_Title_npc_WUG_master","name":"Title- Friend of Wor Pat","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2103_Title_11"}},{"itemId":10003393,"className":"EVENT_2103_Title_npc_DRU_master","name":"Title- Friend of Gina","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2103_Title_12"}},{"itemId":10003394,"className":"EVENT_2103_Title_peltasta","name":"Title- Friend of Maria","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2103_Title_13"}},{"itemId":10003395,"className":"EVENT_2103_Title_npc_SCH_master","name":"Title- Friend of Warsis","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2103_Title_14"}},{"itemId":10003396,"className":"EVENT_2103_Title_npc_DAO_master","name":"Title- Friend of GeHong","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2103_Title_15"}},{"itemId":10003413,"className":"card_Xpupkit10_Event_7","name":"[Campfire] Lv 10 Enhancement Card","type":"Etc","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10003414,"className":"GLOBAL_Blessed_Fruit","name":"Golden Apple of EXP (14 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_2012_FRUIT","numArg2":14400000}},{"itemId":10003423,"className":"Event_2106_title_1","name":"Title - Golden Watermelon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2106_Title_1"}},{"itemId":10003424,"className":"Event_2106_title_2","name":"Title - Silver Watermelon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2106_Title_2"}},{"itemId":10003425,"className":"Event_2106_title_3","name":"Title - Bronze Watermelon","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2106_Title_3"}},{"itemId":10003430,"className":"EVENT_FLEX_MORU_BOX","name":"[FLEX BOX] Advanced Anvil Box","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Ruby_event_25/5;Moru_Event_Gold_18/10;"}},{"itemId":10003471,"className":"Event_2107_EP_Clear_Box_9","name":"[Event] Quest Clear Scroll Package","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_QuestClearScroll_EP_1/1;Premium_QuestClearScroll_EP_2/1;Premium_QuestClearScroll_EP_3/1;Premium_QuestClearScroll_EP_4/1;Premium_QuestClearScroll_EP_5/1;Premium_QuestClearScroll_EP_6/1;Premium_QuestClearScroll_EP_7/1;Premium_QuestClearScroll_EP_8/1;Premium_QuestClearScroll_EP_9/1;Premium_QuestClearScroll_EP_10/1;Premium_QuestClearScroll_EP_11/1;"}},{"itemId":10003472,"className":"Event_2107_Next_Box","name":"[Renewed] Pioneer's Box","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_EVENT_2107_NEXT_RANDOM_BOX_TX"}},{"itemId":10003475,"className":"EVENT_2017_Fruit","name":"[Renewed] Apple of EXP","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_2017_FRUIT1","numArg2":3600000}},{"itemId":10003476,"className":"EVENT_2017_Blessed_Fruit","name":"[Renewed] Golden Apple of EXP","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_2017_FRUIT2","numArg2":3600000}},{"itemId":10003484,"className":"EVENT_Best_Painter_3rd","name":"Title- 3rd Best Painter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_Best_Painter_3rd"}},{"itemId":10003505,"className":"TITLE_Event_2108_Relic_A","name":"Title - Gold Jack Pot!","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"TITLE_Event_2108_Relic_A"}},{"itemId":10003506,"className":"TITLE_Event_2108_Relic_B","name":"Title - Silver Jack Pot!","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"TITLE_Event_2108_Relic_B"}},{"itemId":10003507,"className":"TITLE_Event_2108_Relic_C","name":"Title - Bronze Jack Pot!","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"TITLE_Event_2108_Relic_C"}},{"itemId":10003508,"className":"TITLE_Event_2108_Relic_D","name":"Title - Honorary Archaeological Society Member","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"TITLE_Event_2108_Relic_D"}},{"itemId":10003522,"className":"EVENT_Prank_Title","name":"Title - Apolonija's Prank","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_Prank_Title"}},{"itemId":10003551,"className":"EVENT_2112_Blessed_Fruit","name":"[6th] Golden Apple of EXP","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_2017_FRUIT2"}},{"itemId":10003556,"className":"EVENT_Best_Painter_4th","name":"Title- 4th Best Painter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_Best_Painter_4th"}},{"itemId":10003557,"className":"EVENT_2202_Title_01","name":"Title - Best Friend of Rozalija","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2202_Title_01"}},{"itemId":10003558,"className":"EVENT_2202_Title_02","name":"Title - Best Friend of Boruble","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_2202_Title_02"}},{"itemId":10003559,"className":"EVENT_HocusPocus_Title","name":"Title - Hocus Pocus","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_HocusPocus_Title"}},{"itemId":10003565,"className":"Event_2203_ARBOR_DAY_Seed","name":"[Event] Arbor Day Seed","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_202203_EVENT_SEED","strArg":"Event_2203_ARBOR_DAY_BUFF"}},{"itemId":10003583,"className":"EVENT_SEASON2022_Title","name":"Title - SEASON 2022","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_SEASON2022_Title"}},{"itemId":10003598,"className":"EVENT_The_Conqueror_Title","name":"Title - The Conqueror","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_The_Conqueror_Title"}},{"itemId":10003613,"className":"EVENT_5th_Best_Painter_Title","name":"Title- 5th Best Painter","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_5th_Best_Painter_Title"}},{"itemId":10003626,"className":"EVENT_Belle_Of_The_Ball_Title","name":"Title - Belle of the Ball","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ACHIEVE_BOX","strArg":"EVENT_Belle_Of_The_Ball_Title"}},{"itemId":10004006,"className":"Event_Enchantchip_limit_2","name":"[Arbor Day] Enchant Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10004012,"className":"Moru_Ruby_limit_2","name":"[Arbor Day] Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10004013,"className":"Moru_Gold_limit_2","name":"[Arbor Day] Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10004021,"className":"Event_Goddess_Statue_Team_limit_2","name":"[Arbor Day] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10004022,"className":"Event_Adventure_Reward_Seed_limit_2","name":"[Arbor Day] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10008000,"className":"bamboo_whiteday","name":"Bamboo Spear","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":100,"sellPrice":20,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_ANIM_WITH_EMOT","strArg":"POSE;bamboo;I_emoticon005","numArg1":5000}},{"itemId":10010018,"className":"Moru_Event_Gold_3","name":"[Your Master] Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010048,"className":"Moru_Ruby_event_12","name":"[5th Anniversary] Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010049,"className":"Moru_Event_Gold_8","name":"[5th Anniversary] Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010050,"className":"Extract_kit_Gold_Team_9","name":"[5th Anniversary] Golden Ichor Extraction Kit","type":"Etc","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":10010051,"className":"Old_Socket_Gold_Event_5","name":"[5th Anniversary] Ancient Golden Socket","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"OLD_GOLD_SOCKET","numArg1":3,"numArg2":3}},{"itemId":10010067,"className":"Moru_Event_Gold_10","name":"[Supply] Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010068,"className":"Moru_Ruby_event_16","name":"[Supply] Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010069,"className":"Extract_kit_Gold_Team_12","name":"[Supply] Golden Ichor Extraction Kit","type":"Etc","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":10010070,"className":"Extract_kit_Sliver_Team_10","name":"[Supply] Silver Ichor Extraction Kit","type":"Etc","group":"Drug","weight":4,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Sliver"}},{"itemId":10010071,"className":"Moru_Event_Gold_11","name":"[2021] Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010072,"className":"Moru_Ruby_event_17","name":"[2021] Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010073,"className":"Extract_kit_Gold_Team_13","name":"[2021] Golden Ichor Extraction Kit","type":"Etc","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":10010074,"className":"Extract_kit_Sliver_Team_11","name":"[2021] Silver Ichor Extraction Kit","type":"Etc","group":"Drug","weight":4,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Sliver"}},{"itemId":10010075,"className":"Moru_Ruby_event_18","name":"[Seollal] Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010076,"className":"Moru_Ruby_event_19","name":"[Lovey Dovey] Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010077,"className":"Moru_Event_Gold_12","name":"[Lovey Dovey] Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010078,"className":"Extract_kit_Gold_Team_14","name":"[Lovey Dovey] Golden Ichor Extraction Kit","type":"Etc","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":10010079,"className":"Moru_Event_Gold_13","name":"[Goddess Statue] Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010080,"className":"Moru_Ruby_event_20","name":"[Goddess Statue] Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010081,"className":"Extract_kit_Gold_Team_15","name":"[Goddess Statue] Golden Ichor Extraction Kit","type":"Etc","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":10010082,"className":"Extract_kit_Sliver_Team_12","name":"[Goddess Statue] Silver Ichor Extraction Kit","type":"Etc","group":"Drug","weight":4,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Sliver"}},{"itemId":10010084,"className":"Moru_Ruby_event_21","name":"[Arbor Day] Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010085,"className":"Moru_Event_Gold_14","name":"[Arbor Day] Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010086,"className":"Extract_kit_Gold_Team_16","name":"[Arbor Day] Golden Ichor Extraction Kit","type":"Etc","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":10010087,"className":"Moru_Ruby_event_22","name":"[Theif] Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010088,"className":"Moru_Event_Gold_15","name":"[Theif] Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010095,"className":"Moru_Ruby_event_24","name":"[Campfire] Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010096,"className":"Moru_Event_Gold_17","name":"[Campfire] Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010097,"className":"Extract_kit_Gold_Team_19","name":"[Campfire] Golden Ichor Extraction Kit","type":"Etc","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":10010098,"className":"Old_Socket_Gold_Event_7","name":"[Campfire] Ancient Golden Socket","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"OLD_GOLD_SOCKET","numArg1":3,"numArg2":3}},{"itemId":10010099,"className":"Moru_Ruby_event_blessed","name":"[21Summer] Blessed Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"blessed_ruby_Moru","numArg1":3,"numArg2":3}},{"itemId":10010100,"className":"Moru_Event_Gold_blessed","name":"[21Summer] Blessed Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"blessed_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010101,"className":"Moru_Ruby_event_25","name":"[FLEX BOX] Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010102,"className":"Moru_Event_Gold_18","name":"[FLEX BOX] Gold Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010103,"className":"Extract_kit_Sliver_Team_14","name":"[FLEX BOX] Silver Ichor Extraction Kit","type":"Etc","group":"Drug","weight":4,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Sliver"}},{"itemId":10010104,"className":"Extract_kit_Gold_Team_20","name":"[FLEX BOX] Golden Ichor Extraction Kit","type":"Etc","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":10010112,"className":"Moru_Ruby_event_28","name":"[Gold Fishing] Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010113,"className":"Moru_Event_Gold_28","name":"[Gold Fishing] Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010117,"className":"Moru_Ruby_event_32","name":"[Relic] Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010118,"className":"Moru_Event_Gold_32","name":"[Relic] Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010119,"className":"Moru_Ruby_event_blessed_100","name":"[Watermelon Fishing] Blessed Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"blessed_ruby_Moru","numArg1":3,"numArg2":3}},{"itemId":10010120,"className":"Moru_Event_Gold_blessed_100","name":"[Watermelon Fishing] Blessed Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"blessed_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010121,"className":"Moru_Ruby_event_207","name":"[Eve] Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010122,"className":"Moru_Event_Gold_207","name":"[Eve] Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010126,"className":"Moru_Ruby_event_33","name":"[Rabbit] Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010127,"className":"Moru_Event_Gold_33","name":"[Rabbit] Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010128,"className":"Moru_Event_Gold_34","name":"[Event] Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010132,"className":"Moru_Ruby_event_35","name":"[Halloween] Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010133,"className":"Moru_Event_Gold_35","name":"[Halloween] Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010134,"className":"Moru_Ruby_event_37","name":"[Toasty] Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010135,"className":"Moru_Event_Gold_37","name":"[Toasty] Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010139,"className":"Moru_Ruby_Achieve_1","name":"[Event] Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010140,"className":"Moru_Achieve_Gold_1","name":"[Event] Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010144,"className":"Moru_Ruby_event_39","name":"[6th] Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010145,"className":"Moru_Event_Gold_39","name":"[6th] Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010149,"className":"Moru_Ruby_event_41","name":"[Seollal] Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010150,"className":"Moru_Event_Gold_41","name":"[Berk's Visit] Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10020000,"className":"Legend_Enchant_Jewel_450","name":"[Lv. 450] Legend Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"strArg":"EnchantJewell","numArg1":450}},{"itemId":10020001,"className":"event_Unique_Enchant_Jewel_450","name":"[Event][Lv.450] Unique Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":10,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"strArg":"EnchantJewell","numArg1":450}},{"itemId":10020002,"className":"Event_Legend_Enchant_Jewel_450_1","name":"[Lv. 450] Legend Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"strArg":"EnchantJewell","numArg1":450}},{"itemId":10020003,"className":"event_Unique_Enchant_Jewel_440","name":"[Event][LV. 440] Unique Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":10,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"strArg":"EnchantJewell","numArg1":440}},{"itemId":10020004,"className":"Event_Legend_Enchant_Jewel_450_2","name":"[Event] 440.LV Legend Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"strArg":"EnchantJewell","numArg1":440}},{"itemId":10020005,"className":"event_Unique_Enchant_Jewel_440_1","name":"[Event] 440.LV Unique Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":10,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"strArg":"EnchantJewell","numArg1":440}},{"itemId":10020006,"className":"Event_Legend_Enchant_Jewel_450_200","name":"[Event] 440.LV Legend Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"strArg":"EnchantJewell","numArg1":440}},{"itemId":10020007,"className":"event_Unique_Enchant_Jewel_440_200","name":"[Event] 440.LV Unique Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":10,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"strArg":"EnchantJewell","numArg1":440}},{"itemId":10020008,"className":"event_Unique_Enchant_Jewel_450_1","name":"[Lv.450] Unique Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":10,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"strArg":"EnchantJewell","numArg1":450}},{"itemId":10020009,"className":"Event_Legend_Enchant_Jewel_460_1","name":"[Lv.460] Legend Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":99999,"price":10,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"strArg":"EnchantJewell","numArg1":460}},{"itemId":10600066,"className":"Event_Master_Glass_9","name":"[5th Anniversary] Artisan Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":10600072,"className":"Event_Sandra_Glass_1line_12","name":"[5th Anniversary] Sandra's Detailed Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600089,"className":"Event_Mystic_Glass_10","name":"[Supply] Mysterious Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass"}},{"itemId":10600090,"className":"Event_Master_Glass_10","name":"[Supply] Artisan Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":10600091,"className":"Event_repairPotion_Lv.2_Team","name":"[Supply] Superior Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":1000000}},{"itemId":10600092,"className":"Event_Sandra_Glass_1line_15","name":"[Supply] Sandra's Detailed Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600093,"className":"Event_Enchantchip_9","name":"[Supply] Enchant Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10600094,"className":"Event_awakeningStone_10","name":"[Supply] Premium Awakening Stone","type":"Etc","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10600095,"className":"Event_Sandra_Glass_9","name":"[Supply] Sandra's Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":10600096,"className":"Event_Master_Glass_11","name":"[2021] Artisan Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":10600097,"className":"Event_Enchantchip_10","name":"[2021] Enchant Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10600098,"className":"Event_awakeningStone_11","name":"[2021] Premium Awakening Stone","type":"Etc","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10600099,"className":"Event_Sandra_Glass_10","name":"[2021] Sandra's Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":10600100,"className":"Event_Sandra_Glass_1line_16","name":"[2021] Sandra's Detailed Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600103,"className":"Event_Enchantchip_11","name":"[Lovey Dovey] Enchant Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10600104,"className":"Event_awakeningStone_12","name":"[Lovey Dovey] Premium Awakening Stone","type":"Etc","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10600105,"className":"Event_Sandra_Glass_11","name":"[Lovey Dovey] Sandra's Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":10600106,"className":"Event_repairPotion_Lv.2_Team_2","name":"[Lovey Dovey] Superior Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":1000000}},{"itemId":10600107,"className":"Event_Mystic_Glass_13","name":"[Lovey Dovey] Mysterious Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass"}},{"itemId":10600108,"className":"Event_Master_Glass_13","name":"[Lovey Dovey] Artisan Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":10600109,"className":"Event_Master_Glass_12","name":"[Goddess Statue] Artisan Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":10600110,"className":"Event_Enchantchip_12","name":"[Goddess Statue] Enchant Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10600111,"className":"Event_awakeningStone_13","name":"[Goddess Statue] Premium Awakening Stone","type":"Etc","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10600112,"className":"Event_Master_Glass_14","name":"[Arbor Day] Artisan Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":10600113,"className":"Event_Mystic_Glass_14","name":"[Arbor Day] Mysterious Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass"}},{"itemId":10600114,"className":"Event_awakeningStone_14","name":"[Arbor Day] Premium Awakening Stone","type":"Etc","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10600115,"className":"Event_Sandra_Glass_1line_17","name":"[Arbor Day] Sandra's Detailed Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600116,"className":"Event_Sandra_Glass_12","name":"[Arbor Day] Sandra's Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":10600117,"className":"Event_Enchantchip_13","name":"[Arbor Day] Enchant Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10600118,"className":"Event_Master_Glass_15","name":"[Theif] Artisan Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":10600119,"className":"Event_Mystic_Glass_15","name":"[Theif] Mysterious Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass"}},{"itemId":10600120,"className":"Event_awakeningStone_15","name":"[Theif] Premium Awakening Stone","type":"Etc","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10600121,"className":"Event_Sandra_Glass_1line_18","name":"[Theif] Sandra's Detailed Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600122,"className":"Event_Sandra_Glass_13","name":"[Theif] Sandra's Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":10600135,"className":"Event_Master_Glass_18","name":"[Campfire] Artisan Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":10600136,"className":"Event_Mystic_Glass_18","name":"[Campfire] Mysterious Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass"}},{"itemId":10600137,"className":"Event_awakeningStone_18","name":"[Campfire] Premium Awakening Stone","type":"Etc","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10600138,"className":"Event_Sandra_Glass_1line_21","name":"[Campfire] Sandra's Detailed Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600139,"className":"Event_Sandra_Glass_17","name":"[Campfire] Sandra's Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":10600140,"className":"Event_Enchantchip_16","name":"[Campfire] Enchant Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10600142,"className":"Event_Enchantchip_17","name":"[21Summer] Enchant Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10600143,"className":"Event_Master_Glass_19","name":"[21Summer] Artisan Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":10600144,"className":"Event_Mystic_Glass_19","name":"[21Summer] Mysterious Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass"}},{"itemId":10600145,"className":"Event_awakeningStone_19","name":"[21Summer] Premium Awakening Stone","type":"Etc","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10600146,"className":"Event_Sandra_Glass_18","name":"[21Summer] Sandra's Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":10600149,"className":"Event_Enchantchip_18","name":"[FLEX BOX] Enchant Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10600150,"className":"Event_Master_Glass_21","name":"[FLEX BOX] Artisan Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":10600151,"className":"Event_Mystic_Glass_21","name":"[FLEX BOX] Mysterious Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass"}},{"itemId":10600152,"className":"Event_awakeningStone_20","name":"[FLEX BOX] Premium Awakening Stone","type":"Etc","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10600153,"className":"Event_Sandra_Glass_19","name":"[FLEX BOX] Sandra's Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":10600154,"className":"Event_Sandra_Glass_1line_22","name":"[FLEX BOX] Sandra's Detailed Magnifier","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600168,"className":"Event_Enchantchip_206","name":"[Watermelon Fishing] Enchant Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10600182,"className":"Event_Enchantchip_33","name":"[Rabbit] Enchant Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10600208,"className":"Event_Enchantchip_39","name":"[6th] Enchant Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10820004,"className":"Event_Goddess_Statue_Team_limit_renew","name":"[TOS] Goddess Sculpture","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GODDESS_STATUE","numArg1":10000}},{"itemId":10820006,"className":"Event_Adventure_Reward_Seed_limit_renew","name":"[TOS] Miracle Seeds","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_161215EVENT_SEED"}},{"itemId":10820021,"className":"Moru_Ruby_limit_renew","name":"[TOS] Ruby Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10820022,"className":"Event_Enchantchip_limit_renew","name":"[TOS] Enchant Scroll","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10820023,"className":"Moru_Gold_limit_renew","name":"[TOS] Golden Anvil","type":"Consume","group":"Drug","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":11030015,"className":"Unique_Enchant_Jewel_450","name":"[Lv.450] Unique Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"EnchantJewell","numArg1":450}},{"itemId":11030016,"className":"Legend_Enchant_Jewel_500","name":"[Lv.500] Legend Enchant Jewel","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"EnchantJewell","numArg1":500}},{"itemId":11030081,"className":"Challenge_RepeatHealPotion_solo","name":"[Challenge Mode] Improved Kedoran Special Potion","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Challenge_RepeatHealPotion_solo"}},{"itemId":11030132,"className":"CONTENTS_TOTAL_10_POINT_COUPON","name":"Contents Point +10","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"CONTENTS_TOTAL_POINT","numArg1":10}},{"itemId":11030133,"className":"Legend_Giltine_Raid_Entrance_Ticket","name":"Demonic Sanctuary: Legend One Entry Voucher","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Giltine_Raid_Entrance_Ticket"}},{"itemId":11030171,"className":"Legend_Giltine_Raid_Entrance_Ticket_NoTrade","name":"Demonic Sanctuary: Legend One Entry Voucher (7 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Giltine_Raid_Entrance_Ticket"}},{"itemId":11030216,"className":"Ticket_TOSHero_Enter_7d","name":"Heroic Tale One Entry Voucher (7 Days)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_TOSHero_Ticket","strArg":"TOSHero_Ticket","numArg1":817}},{"itemId":11030230,"className":"UnknownSantuary_Potion","name":"[Unknown Sanctuary] Potion of Holy Protection","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnknownSantuary_Potion"}},{"itemId":11030232,"className":"QuestReward_repairPotion_460","name":"[Lv.460] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"GODDESS_REPAIR","numArg1":1000,"numArg2":460}},{"itemId":11030233,"className":"selectbox_Seal_Boruta","name":"Boruta Seal Selection Box","type":"Consume","group":"Drug","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":2}},{"itemId":11030251,"className":"Ticket_TOSHero_Enter","name":"Heroic Tale One Entry Voucher","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_TOSHero_Ticket","strArg":"TOSHero_Ticket","numArg1":817}},{"itemId":11030258,"className":"sklgem_selectbox","name":"Skill Gem Selection Box","type":"Consume","group":"Drug","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":2}},{"itemId":11030265,"className":"Reputation_ResetCoupon_Day_1","name":"Daily Reputation Quest Reset Voucher","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Reputation_ResetCoupon","strArg":"DAY"}},{"itemId":11030267,"className":"Item_Achieve_Highlander","name":"Title - Highlander","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_1"}},{"itemId":11030268,"className":"Item_Achieve_Peltasta","name":"Title - Peltasta","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_2"}},{"itemId":11030269,"className":"Item_Achieve_Hoplite","name":"Title - Hoplite","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_3"}},{"itemId":11030270,"className":"Item_Achieve_Barbarian","name":"Title - Barbarian","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_4"}},{"itemId":11030271,"className":"Item_Achieve_Cataphract","name":"Title - Cataphract","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_5"}},{"itemId":11030272,"className":"Item_Achieve_Doppelsoeldner","name":"Title - Doppelsoeldner","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_6"}},{"itemId":11030273,"className":"Item_Achieve_Rodelero","name":"Title - Rodelero","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_7"}},{"itemId":11030274,"className":"Item_Achieve_Murmillo","name":"Title - Murmillo","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_8"}},{"itemId":11030275,"className":"Item_Achieve_Fencer","name":"Title - Fencer","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_9"}},{"itemId":11030276,"className":"Item_Achieve_Dragoon","name":"Title - Dragoon","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_10"}},{"itemId":11030277,"className":"Item_Achieve_Templar","name":"Title - Templar","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_11"}},{"itemId":11030278,"className":"Item_Achieve_Lancer","name":"Title - Lancer","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_12"}},{"itemId":11030279,"className":"Item_Achieve_Matador","name":"Title - Matador","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_13"}},{"itemId":11030280,"className":"Item_Achieve_Nak Muay","name":"Title - Nak Muay","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_14"}},{"itemId":11030281,"className":"Item_Achieve_Retiarii","name":"Title - Retiarius","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_15"}},{"itemId":11030282,"className":"Item_Achieve_Hackapell","name":"Title - Hackapell","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_16"}},{"itemId":11030283,"className":"Item_Achieve_Blossom Blader","name":"Title - Blossom Blader","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_17"}},{"itemId":11030284,"className":"Item_Achieve_Pyromancer","name":"Title - Pyromancer","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_18"}},{"itemId":11030285,"className":"Item_Achieve_Cryomancer","name":"Title - Cryomancer","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_19"}},{"itemId":11030286,"className":"Item_Achieve_Psychokino","name":"Title - Psychokino","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_20"}},{"itemId":11030287,"className":"Item_Achieve_Alchemist","name":"Title - Alchemist","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_21"}},{"itemId":11030288,"className":"Item_Achieve_Sorcerer","name":"Title - Sorcerer","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_22"}},{"itemId":11030289,"className":"Item_Achieve_Chronomancer","name":"Title - Chronomancer","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_23"}},{"itemId":11030290,"className":"Item_Achieve_Necromancer","name":"Title - Necromancer","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_24"}},{"itemId":11030291,"className":"Item_Achieve_Elementalist","name":"Title - Elementalist","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_25"}},{"itemId":11030292,"className":"Item_Achieve_Sage","name":"Title - Sage","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_26"}},{"itemId":11030293,"className":"Item_Achieve_Warlock","name":"Title - Warlock","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_27"}},{"itemId":11030294,"className":"Item_Achieve_Featherfoot","name":"Title - Featherfoot","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_28"}},{"itemId":11030295,"className":"Item_Achieve_Rune Caster","name":"Title - Rune Caster","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_29"}},{"itemId":11030296,"className":"Item_Achieve_Shadowmancer","name":"Title - Shadowmancer","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_30"}},{"itemId":11030297,"className":"Item_Achieve_Onmyoji","name":"Title - Onmyoji","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_31"}},{"itemId":11030298,"className":"Item_Achieve_Taoist","name":"Title - Taoist","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_32"}},{"itemId":11030299,"className":"Item_Achieve_Bokor","name":"Title - Bokor","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_33"}},{"itemId":11030300,"className":"Item_Achieve_Terramancer","name":"Title - Terramancer","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_34"}},{"itemId":11030301,"className":"Item_Achieve_Hunter","name":"Title - Hunter","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_35"}},{"itemId":11030302,"className":"Item_Achieve_Quarrel Shooter","name":"Title - Quarrel Shooter","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_36"}},{"itemId":11030303,"className":"Item_Achieve_Ranger","name":"Title - Ranger","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_37"}},{"itemId":11030304,"className":"Item_Achieve_Sapper","name":"Title - Sapper","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_38"}},{"itemId":11030305,"className":"Item_Achieve_Wugushi","name":"Title - Wugushi","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_39"}},{"itemId":11030306,"className":"Item_Achieve_Fletcher","name":"Title - Fletcher","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_40"}},{"itemId":11030307,"className":"Item_Achieve_Pied Piper","name":"Title - Pied Piper","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_41"}},{"itemId":11030308,"className":"Item_Achieve_Appraiser","name":"Title - Appraiser","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_42"}},{"itemId":11030309,"className":"Item_Achieve_Falconer","name":"Title - Falconer","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_43"}},{"itemId":11030310,"className":"Item_Achieve_Cannoneer","name":"Title - Cannoneer","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_44"}},{"itemId":11030311,"className":"Item_Achieve_Musketeer","name":"Title - Musketeer","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_45"}},{"itemId":11030312,"className":"Item_Achieve_Mergen","name":"Title - Mergen","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_46"}},{"itemId":11030313,"className":"Item_Achieve_Matross","name":"Title - Matross","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_47"}},{"itemId":11030314,"className":"Item_Achieve_Tiger Hunter","name":"Title - Tiger Hunter","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_48"}},{"itemId":11030315,"className":"Item_Achieve_Arbalester","name":"Title - Arbalester","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_49"}},{"itemId":11030316,"className":"Item_Achieve_Arquebusier","name":"Title - Arquebusier","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_50"}},{"itemId":11030317,"className":"Item_Achieve_Priest","name":"Title - Priest","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_51"}},{"itemId":11030334,"className":"Item_Achieve_Krivis","name":"Title - Krivis","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_52"}},{"itemId":11030335,"className":"Item_Achieve_Druid","name":"Title - Druid","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_53"}},{"itemId":11030336,"className":"Item_Achieve_Sadhu","name":"Title - Sadhu","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_54"}},{"itemId":11030337,"className":"Item_Achieve_Dievdirbys","name":"Title - Dievdirbys","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_55"}},{"itemId":11030338,"className":"Item_Achieve_Oracle","name":"Title - Oracle","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_56"}},{"itemId":11030339,"className":"Item_Achieve_Monk","name":"Title - Monk","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_57"}},{"itemId":11030340,"className":"Item_Achieve_Pardoner","name":"Title - Pardoner","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_58"}},{"itemId":11030341,"className":"Item_Achieve_Paladin","name":"Title - Paladin","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_59"}},{"itemId":11030342,"className":"Item_Achieve_Chaplain","name":"Title - Chaplain","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_60"}},{"itemId":11030343,"className":"Item_Achieve_Plague Doctor","name":"Title - Plague Doctor","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_61"}},{"itemId":11030344,"className":"Item_Achieve_Kabbalist","name":"Title - Kabbalist","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_62"}},{"itemId":11030345,"className":"Item_Achieve_Inquisitor","name":"Title - Inquisitor","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_63"}},{"itemId":11030346,"className":"Item_Achieve_Miko","name":"Title - Miko (Kannushi)","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_64"}},{"itemId":11030348,"className":"Item_Achieve_Zealot","name":"Title - Zealot","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_66"}},{"itemId":11030349,"className":"Item_Achieve_Exorcist","name":"Title - Exorcist","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_67"}},{"itemId":11030350,"className":"Item_Achieve_Crusader","name":"Title - Crusader","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_68"}},{"itemId":11030351,"className":"Item_Achieve_Scout","name":"Title - Scout","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_69"}},{"itemId":11030352,"className":"Item_Achieve_Assassin","name":"Title - Assassin","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_70"}},{"itemId":11030353,"className":"Item_Achieve_Outlaw","name":"Title - Outlaw","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_71"}},{"itemId":11030354,"className":"Item_Achieve_Squire","name":"Title - Squire","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_72"}},{"itemId":11030355,"className":"Item_Achieve_Corsair","name":"Title - Corsair","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_73"}},{"itemId":11030356,"className":"Item_Achieve_Shinobi","name":"Title - Shinobi","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_74"}},{"itemId":11030357,"className":"Item_Achieve_Thaumaturge","name":"Title - Thaumaturge","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_75"}},{"itemId":11030358,"className":"Item_Achieve_Enchanter","name":"Title - Enchanter","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_76"}},{"itemId":11030359,"className":"Item_Achieve_Linker","name":"Title - Linker","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_77"}},{"itemId":11030360,"className":"Item_Achieve_Rogue","name":"Title - Rogue","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_78"}},{"itemId":11030361,"className":"Item_Achieve_Schwarzer Reiter","name":"Title - Schwarzer Reiter","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_79"}},{"itemId":11030362,"className":"Item_Achieve_Bullet Marker","name":"Title - Bullet Marker","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_80"}},{"itemId":11030363,"className":"Item_Achieve_Arditi","name":"Title - Ardito","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_81"}},{"itemId":11030364,"className":"Item_Achieve_Sheriff","name":"Title - Sheriff","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_82"}},{"itemId":11030365,"className":"Item_Achieve_Rangda","name":"Title - Rangda","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_83"}},{"itemId":11030366,"className":"Item_Achieve_Clown","name":"Title - Clown","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_84"}},{"itemId":11030367,"className":"Item_Achieve_Warrior","name":"Title - Swordsman","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_85"}},{"itemId":11030368,"className":"Item_Achieve_Archer","name":"Title - Archer","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_86"}},{"itemId":11030369,"className":"Item_Achieve_Cleric","name":"Title - Cleric","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_87"}},{"itemId":11030370,"className":"Item_Achieve_Wizard","name":"Title - Wizard","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_88"}},{"itemId":11030389,"className":"Item_Achieve_Relic_Lv10","name":"Title - Relic Trailblazer","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"Relic_Lv10"}},{"itemId":11030390,"className":"Item_Achieve_Relic_First","name":"Title - The Ruler of Relic","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"Relic_First"}},{"itemId":11030395,"className":"Item_Achieve_Luchador","name":"Title - Luchador","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_89"}},{"itemId":11030423,"className":"Item_Achieve_Hwarang","name":"Title - Hwarang","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_90"}},{"itemId":11030431,"className":"QuestReward_repairPotion_470","name":"[Lv.470] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"GODDESS_REPAIR","numArg1":1000,"numArg2":470}},{"itemId":11030436,"className":"Item_Achieve_Hakkapeliter","name":"Title - Hakkapeliter","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_91"}},{"itemId":11030443,"className":"Item_Achieve_Keraunos","name":"Title - Keraunos","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_92"}},{"itemId":11030452,"className":"Item_Achieve_Lama","name":"Title - Lama","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_93"}},{"itemId":11030474,"className":"Item_Achieve_Jaguar","name":"Title - Jaguar","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_94"}},{"itemId":11030490,"className":"Item_Achieve_SpearMaster","name":"Title - Shenji","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_95"}},{"itemId":11030491,"className":"Item_Achieve_Enginner","name":"Title - Engineer","type":"Consume","group":"Drug","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ACHIEVE_WEEKLY_RANK_STRING","strArg":"WeeklyRankClass_96"}},{"itemId":11035357,"className":"UnknownSantuaryDEFpotion","name":"Shining Unknown Sanctuary Aegis Potion Lv.1","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnknownSantuary_Protect_Potion"}},{"itemId":11035358,"className":"BerniceDEFpotion","name":"Shining Remnants of Bernice Aegis Potion Lv.1","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Bernice_Protect_Potion"}},{"itemId":11035359,"className":"VasilissaAutoSoloHEALpotion","name":"Shining Saint's Sacellum (Auto/Solo) Recovery Potion Lv.1","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_VasilissaAutoSolo_Heal_Potion"}},{"itemId":11035671,"className":"SEASONLETICIA_BerniceDEFpotion","name":"Shining Remnants of Bernice Aegis Potion Lv.1","type":"Consume","group":"Drug","weight":5,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Bernice_Protect_Potion"}},{"itemId":11200035,"className":"secret_medicine_str_470","name":"[Lv.470] Arcanum of STR","type":"Consume","group":"Drug","weight":10,"maxStack":99999,"price":160,"sellPrice":32,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_secret_medicine_str_470","strArg":"secret_medicine_str_470","numArg1":470,"numArg2":1000}},{"itemId":11200036,"className":"secret_medicine_int_470","name":"[Lv.470] Arcanum of INT","type":"Consume","group":"Drug","weight":10,"maxStack":99999,"price":160,"sellPrice":32,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_secret_medicine_int_470","strArg":"secret_medicine_int_470","numArg1":470,"numArg2":1000}},{"itemId":11200037,"className":"secret_medicine_con_470","name":"[Lv.470] Arcanum of CON","type":"Consume","group":"Drug","weight":10,"maxStack":99999,"price":160,"sellPrice":32,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_secret_medicine_con_470","strArg":"secret_medicine_con_470","numArg1":470,"numArg2":500}},{"itemId":11200038,"className":"secret_medicine_mspd_470","name":"[Lv.470] Arcanum of Wind","type":"Consume","group":"Drug","weight":10,"maxStack":99999,"price":160,"sellPrice":32,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_secret_medicine_mspd_470","strArg":"secret_medicine_mspd_470","numArg1":470,"numArg2":10}},{"itemId":11200039,"className":"secret_medicine_rsp_470","name":"[Lv.470] Arcanum of Mana","type":"Consume","group":"Drug","weight":10,"maxStack":99999,"price":160,"sellPrice":32,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_secret_medicine_rsp_470","strArg":"secret_medicine_rsp_470","numArg1":470,"numArg2":10000}},{"itemId":11200040,"className":"secret_medicine_holy_470","name":"[Lv.470] Sacred Power","type":"Consume","group":"Drug","weight":10,"maxStack":99999,"price":160,"sellPrice":32,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_secret_medicine_holy_470","strArg":"secret_medicine_holy_470","numArg1":470,"numArg2":1}},{"itemId":11200041,"className":"secret_medicine_energy_470","name":"[Lv.470] Gabija's Aura","type":"Consume","group":"Drug","weight":10,"maxStack":99999,"price":160,"sellPrice":32,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_secret_medicine_energy_470","strArg":"secret_medicine_energy_470","numArg1":470,"numArg2":1}},{"itemId":11200079,"className":"archeology_compass","name":"Relic Compass","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ARCHEOLOGY_COMPASS"}},{"itemId":11200080,"className":"secret_medicine_mspd2_470","name":"[Lv.470] Arcanum of Wind II","type":"Consume","group":"Drug","weight":10,"maxStack":99999,"price":160,"sellPrice":32,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_secret_medicine_mspd2_470","strArg":"secret_medicine_mspd2_470","numArg1":470,"numArg2":10}},{"itemId":11200081,"className":"Enrichment_HP_470","name":"[Lv.470] Highly Condensed HP Potion","type":"Consume","group":"Drug","weight":10,"maxStack":99999,"price":1,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Enrichment_HP_470","numArg1":300000}},{"itemId":11200099,"className":"gem_extract_free_coupon_1d","name":"Skill Gem Extract Penalty Remove Voucher (1 Day)","type":"Consume","group":"Drug","weight":10,"maxStack":1,"price":160,"sellPrice":32,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GEM_EXTRACT_FREE","strArg":"GEM_EXTRACT_FREE_BUFF","numArg1":900000}},{"itemId":11200150,"className":"SEASONLETICIA_secret_medicine_str_470","name":"[Lv.470] Arcanum of STR","type":"Consume","group":"Drug","weight":10,"maxStack":99999,"price":160,"sellPrice":32,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_secret_medicine_str_470","strArg":"secret_medicine_str_470","numArg1":470,"numArg2":1000}},{"itemId":11200151,"className":"SEASONLETICIA_secret_medicine_int_470","name":"[Lv.470] Arcanum of INT","type":"Consume","group":"Drug","weight":10,"maxStack":99999,"price":160,"sellPrice":32,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_secret_medicine_int_470","strArg":"secret_medicine_int_470","numArg1":470,"numArg2":1000}},{"itemId":11200162,"className":"QuestReward_repairPotion_480","name":"[Lv.480] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"GODDESS_REPAIR","numArg1":1000,"numArg2":480}},{"itemId":11200243,"className":"QuestReward_repairPotion_490","name":"[Lv.490] Urgent Repair Kit","type":"Consume","group":"Drug","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"GODDESS_REPAIR","numArg1":1000,"numArg2":490}},{"itemId":11100001,"className":"EP13_GabijaEarring","name":"Fire Flame Earring","type":"Equip","group":"Earring","weight":25,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Earring","minLevel":470,"script":{"strArg":"piece_GabijaEarring"}},{"itemId":11100014,"className":"EP13_SampleGabijaEarring","name":"Fire Flame Earring","type":"Equip","group":"Earring","weight":25,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Earring","minLevel":470},{"itemId":11100062,"className":"NoTrade_EP13_GabijaEarring","name":"[Event] Fire Flame Earring","type":"Equip","group":"Earring","weight":25,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Earring","minLevel":470,"script":{"strArg":"piece_GabijaEarring"}},{"itemId":10000175,"className":"Event_dungeoncount_11","name":"[5th Anniversary] Instanced Dungeon Multiply Token","type":"Etc","group":"Entrance_Ticket","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000182,"className":"Event_ChallengeModeReset_13","name":"[5th Anniversary] Challenge Mode One Entry Voucher","type":"Consume","group":"Entrance_Ticket","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000229,"className":"Event_ChallengeModeReset_16","name":"[Supply] Challenge Mode One Entry Voucher","type":"Consume","group":"Entrance_Ticket","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000242,"className":"Event_ChallengeModeReset_17","name":"[2021] Challenge Mode One Entry Voucher","type":"Consume","group":"Entrance_Ticket","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000261,"className":"Event_ChallengeModeReset_18","name":"[Lovey Dovey] Challenge Mode One Entry Voucher","type":"Consume","group":"Entrance_Ticket","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000282,"className":"Event_ChallengeModeReset_19","name":"[Goddess Statue] Challenge Mode One Entry Voucher","type":"Consume","group":"Entrance_Ticket","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000292,"className":"Event_ChallengeModeReset_20","name":"[Arbor Day] Challenge Mode One Entry Voucher","type":"Consume","group":"Entrance_Ticket","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000315,"className":"Event_ChallengeModeReset_21","name":"[Theif] Challenge Mode One Entry Voucher","type":"Consume","group":"Entrance_Ticket","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000350,"className":"Event_ChallengeModeReset_23","name":"[Campfire] Challenge Mode One Entry Voucher","type":"Consume","group":"Entrance_Ticket","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000370,"className":"Event_ChallengeModeReset_25","name":"[21Summer] Challenge Mode One Entry Voucher","type":"Consume","group":"Entrance_Ticket","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000386,"className":"Event_ChallengeModeReset_26","name":"[FLEX BOX] Challenge Mode One Entry Voucher","type":"Consume","group":"Entrance_Ticket","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000406,"className":"Event_ChallengeModeReset_27","name":"[Renewed] Challenge Mode One Entry Voucher","type":"Consume","group":"Entrance_Ticket","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000416,"className":"Event_ChallengeModeReset_30","name":"[Event] Challenge Mode One Entry Voucher","type":"Consume","group":"Entrance_Ticket","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000420,"className":"Event_ChallengeModeReset_206","name":"[Watermelon Fishing] Challenge Mode One Entry Voucher","type":"Consume","group":"Entrance_Ticket","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000461,"className":"Event_ChallengeModeReset_33","name":"[Rabbit] Challenge Mode One Entry Voucher","type":"Consume","group":"Entrance_Ticket","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000484,"className":"Event_ChallengeModeReset_34","name":"[Halloween] Challenge Mode One Entry Voucher","type":"Consume","group":"Entrance_Ticket","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000499,"className":"Event_ChallengeModeReset_37","name":"[Toasty] Challenge Mode One Entry Voucher","type":"Consume","group":"Entrance_Ticket","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000523,"className":"Event_ChallengeModeReset_39","name":"[6th] Challenge Mode One Entry Voucher","type":"Consume","group":"Entrance_Ticket","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000565,"className":"Event_ChallengeModeReset_41","name":"[Berk's Visit] Challenge Mode One Entry Voucher","type":"Consume","group":"Entrance_Ticket","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10600065,"className":"SoloRaidCntReset_Team_Event_1","name":"[Event] Sole Hunt One Entry Voucher(14 Days)","type":"Consume","group":"Entrance_Ticket","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_FreeDungeon_Solo_Raid_Cnt","strArg":"SoloRaidCntReset_Team","numArg1":1}},{"itemId":10600087,"className":"SoloRaidCntReset_Team_Event_2","name":"[Event] Sole Hunt One Entry Voucher(14 Days)","type":"Consume","group":"Entrance_Ticket","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_FreeDungeon_Solo_Raid_Cnt","strArg":"SoloRaidCntReset_Team","numArg1":1}},{"itemId":10600184,"className":"SoloRaidCntReset_Team_Event_4","name":"[Event] Sole Hunt One Entry Voucher","type":"Consume","group":"Entrance_Ticket","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_FreeDungeon_Solo_Raid_Cnt","strArg":"SoloRaidCntReset_Team","numArg1":1}},{"itemId":10600215,"className":"SoloRaidCntReset_Team_Event_5","name":"[Toasty] Sole Hunt One Entry Voucher","type":"Consume","group":"Entrance_Ticket","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_FreeDungeon_Solo_Raid_Cnt","strArg":"SoloRaidCntReset_Team","numArg1":1}},{"itemId":490048,"className":"Premium_indunReset_14d","name":"Instanced Dungeon Reset Voucher: 14 Days","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490049,"className":"Premium_boostToken_14d","name":"EXP Tome: 14 Days","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Premium_boostToken","numArg1":3600000,"numArg2":30}},{"itemId":490052,"className":"Premium_boostToken_14d_test","name":"EXP Tome: 1 Minute","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":3600000}},{"itemId":490061,"className":"Premium_awakeningStone14","name":"Premium Awakening Stone (14 Days)","type":"Etc","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490074,"className":"Jemina_Present","name":"Zemyna Necklace Box","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_JEMINA","strArg":"Normal"}},{"itemId":490075,"className":"Event_gem1","name":"Red Gem Box","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_EVENTGEM1","strArg":"Normal"}},{"itemId":490076,"className":"Event_gem2","name":"Blue Gem Box","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_EVENTGEM2","strArg":"Normal"}},{"itemId":490077,"className":"Event_gem3","name":"Purple Gem Box","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_EVENTGEM3","strArg":"Normal"}},{"itemId":490078,"className":"Event_gem4","name":"Green Gem Box","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_EVENTGEM4","strArg":"Normal"}},{"itemId":490079,"className":"Event_gem5","name":"Golden Gem Box","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_EVENTGEM5","strArg":"Normal"}},{"itemId":490080,"className":"160609Event_Potion1","name":"Keistas Potion Box","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_EVENTPOTIONBOX1","strArg":"Normal"}},{"itemId":490081,"className":"160609Event_Potion2","name":"Keistas Potion Box","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_EVENTPOTIONBOX2","strArg":"Normal"}},{"itemId":490082,"className":"160609Event_Potion3","name":"Keistas Potion Box","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_EVENTPOTIONBOX3","strArg":"Normal"}},{"itemId":490083,"className":"160609Event_box1","name":"Lord Hamondale's Box","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_LORD","strArg":"Normal"}},{"itemId":490084,"className":"160609Event_box2","name":"Knight Commander Uska's Box","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_KNIGHT","strArg":"Normal"}},{"itemId":490112,"className":"Premium_boostToken_10m","name":"EXP Tome: 10 Minutes","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":3600000}},{"itemId":490124,"className":"Premium_boostToken_test1min","name":"EXP Tome (Effect for a Minute)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":60000}},{"itemId":490129,"className":"Premium_indunReset_1h","name":"Instanced Dungeon Reset Voucher (1 Hour) ","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490165,"className":"Ability_Point_Stone","name":"Attribute Points 1,000 Ticket","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":490174,"className":"Ability_Point_Stone_500","name":"500 Attribute Points","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":500}},{"itemId":490251,"className":"Point_Stone_100","name":"Attribute Points: 100","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":100}},{"itemId":490259,"className":"Ability_Point_Stone_Quest100","name":"Attribute Points: 100","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":100}},{"itemId":490261,"className":"Ability_Point_Stone_50","name":"50 Attribute Points","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ABILITY_STONE_UP","numArg1":50}},{"itemId":490311,"className":"Ability_Point_Stone_10000","name":"Attribute Points 10,000 Ticket","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":490312,"className":"Ability_Point_Stone_30000","name":"Attribute Points 30,000 Ticket","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":30000}},{"itemId":490313,"className":"Ability_Point_Stone_100000","name":"Attribute Points 100,000 Ticket","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":100000}},{"itemId":490324,"className":"Ability_Point_Scroll_1000","name":"Attribute Point Scroll","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":490390,"className":"Premium_Mystic_Glass_Event","name":"[Event] Mysterious Magnifier","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Mystic_Glass"}},{"itemId":490391,"className":"Premium_Master_Glass_Event","name":"[Event] Artisan Magnifier","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":494079,"className":"Event_Ability_Point_Stone_10000_team","name":"Attribute Points: 10,000 (14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":494132,"className":"Premium_Mystic_Glass_Event_14d","name":"[Event] Mysterious Magnifier (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Mystic_Glass"}},{"itemId":494133,"className":"Premium_Master_Glass_Event_14d","name":"[Event] Artisan Magnifier (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":494340,"className":"UnlockQuest_Ability_Point_Stone","name":"[Master's Request] Attribute Points 1,000","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":494373,"className":"SEASONLETICIA_Ability_Point_Stone","name":"Attribute Points 1,000 Ticket","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":495001,"className":"160714Event_box1","name":"Path of the Powerful Day 1 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT01","strArg":"Normal"}},{"itemId":495002,"className":"160714Event_box2","name":"Path of the Powerful Day 2 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT02","strArg":"Normal"}},{"itemId":495003,"className":"160714Event_box3","name":"Path of the Powerful Day 3 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT03","strArg":"Normal"}},{"itemId":495004,"className":"160714Event_box4","name":"Path of the Powerful Day 4 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT04","strArg":"Normal"}},{"itemId":495005,"className":"160714Event_box5","name":"Path of the Powerful Day 5 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT05","strArg":"Normal"}},{"itemId":495006,"className":"160714Event_box6","name":"Path of the Powerful Day 6 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT06","strArg":"Normal"}},{"itemId":495007,"className":"160714Event_box7","name":"Path of the Powerful Day 7 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT07","strArg":"Normal"}},{"itemId":495008,"className":"160714Event_box8","name":"Path of the Powerful Day 8 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT08","strArg":"Normal"}},{"itemId":495009,"className":"160714Event_box9","name":"Path of the Powerful Day 9 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT09","strArg":"Normal"}},{"itemId":495010,"className":"160714Event_box10","name":"Path of the Powerful Day 10 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT10","strArg":"Normal"}},{"itemId":495011,"className":"160714Event_box11","name":"Leticia's Gift Day 1 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT11","strArg":"Normal"}},{"itemId":495012,"className":"160714Event_box12","name":"Leticia's Gift Day 2 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT12","strArg":"Normal"}},{"itemId":495013,"className":"160714Event_box13","name":"Leticia's Gift Day 3 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT13","strArg":"Normal"}},{"itemId":495014,"className":"160714Event_box14","name":"Leticia's Gift Day 4 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT14","strArg":"Normal"}},{"itemId":495015,"className":"160714Event_box15","name":"Leticia's Gift Day 5 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT15","strArg":"Normal"}},{"itemId":495016,"className":"160714Event_box16","name":"Leticia's Gift Day 6 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT16","strArg":"Normal"}},{"itemId":495017,"className":"160714Event_box17","name":"Leticia's Gift Day 7 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT17","strArg":"Normal"}},{"itemId":495018,"className":"160714Event_box18","name":"Leticia's Gift Day 8 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT18","strArg":"Normal"}},{"itemId":495019,"className":"160714Event_box19","name":"Leticia's Gift Day 9 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT19","strArg":"Normal"}},{"itemId":495020,"className":"160714Event_box20","name":"Leticia's Gift Day 10 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT20","strArg":"Normal"}},{"itemId":495021,"className":"160714Event_box21","name":"One More Time Day 1 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT21","strArg":"Normal"}},{"itemId":495022,"className":"160714Event_box22","name":"One More Time Day 2 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT22","strArg":"Normal"}},{"itemId":495023,"className":"160714Event_box23","name":"One More Time Day 3 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT23","strArg":"Normal"}},{"itemId":495024,"className":"160714Event_box24","name":"One More Time Day 4 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT24","strArg":"Normal"}},{"itemId":495025,"className":"160714Event_box25","name":"One More Time Day 5 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT25","strArg":"Normal"}},{"itemId":495026,"className":"160714Event_box26","name":"One More Time Day 6 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT26","strArg":"Normal"}},{"itemId":495027,"className":"160714Event_box27","name":"One More Time Day 7 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT27","strArg":"Normal"}},{"itemId":495028,"className":"160714Event_box28","name":"One More Time Day 8 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT28","strArg":"Normal"}},{"itemId":495029,"className":"160714Event_box29","name":"One More Time Day 9 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT29","strArg":"Normal"}},{"itemId":495030,"className":"160714Event_box30","name":"One More Time Day 10 Box (7 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_160714EVENT30","strArg":"Normal"}},{"itemId":495032,"className":"Event_DefenceMission02","name":"Defense Mission Reward Box","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"ID_boss_Flammidus"}},{"itemId":495033,"className":"Event_Weaponbox01","name":"Weapon Support Box","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_WEAPONBOX01","strArg":"Normal"}},{"itemId":495034,"className":"Promotion_Set01_160728","name":"Battlebird Companion Package","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PROMOTION_SET01_COMPANION","strArg":"Normal"}},{"itemId":495035,"className":"Promotion_Set02_160728","name":"Jurate Starter Package","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PROMOTION_SET02","strArg":"Normal"}},{"itemId":495036,"className":"Promotion_Set03_160728","name":"Swimwear Package - Swordsman (Male)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PROMOTION_SET03","strArg":"Normal"}},{"itemId":495037,"className":"Promotion_Set04_160728","name":"Swimwear Package - Swordsman (Female)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PROMOTION_SET04","strArg":"Normal"}},{"itemId":495038,"className":"Promotion_Set05_160728","name":"Swimwear Package - Wizard (Male)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PROMOTION_SET05","strArg":"Normal"}},{"itemId":495039,"className":"Promotion_Set06_160728","name":"Swimwear Package - Wizard (Female)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PROMOTION_SET06","strArg":"Normal"}},{"itemId":495040,"className":"Promotion_Set07_160728","name":"Swimwear Package - Archer (Male)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PROMOTION_SET07","strArg":"Normal"}},{"itemId":495041,"className":"Promotion_Set08_160728","name":"Swimwear Package - Archer (Female)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PROMOTION_SET08","strArg":"Normal"}},{"itemId":495042,"className":"Promotion_Set09_160728","name":"Swimwear Package - Cleric (Male)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PROMOTION_SET09","strArg":"Normal"}},{"itemId":495043,"className":"Promotion_Set10_160728","name":"Swimwear Package - Cleric (Female)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PROMOTION_SET10","strArg":"Normal"}},{"itemId":495044,"className":"Penguin_Pack_2016","name":"Penguin Package","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PENGUINPACK_2016","strArg":"Normal"}},{"itemId":495045,"className":"Adventurer_Pack_2016","name":"Adventurer Package","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ADVENTURERPACK_2016","strArg":"Normal"}},{"itemId":495046,"className":"Premium_eventTpBox_65_1","name":"65 TP","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","strArg":"AddTPitem","numArg1":65}},{"itemId":495060,"className":"Promotion_Set01_160825","name":"Wonderland Package - Swordsman (Male)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PROMOTION_SET11","strArg":"Normal"}},{"itemId":495061,"className":"Promotion_Set02_160825","name":"Wonderland Package - Swordsman (Female)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PROMOTION_SET12","strArg":"Normal"}},{"itemId":495062,"className":"Promotion_Set03_160825","name":"Wonderland Package - Wizard (Male)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PROMOTION_SET13","strArg":"Normal"}},{"itemId":495063,"className":"Promotion_Set04_160825","name":"Wonderland Package - Wizard (Female)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PROMOTION_SET14","strArg":"Normal"}},{"itemId":495064,"className":"Promotion_Set05_160825","name":"Wonderland Package - Archer (Male)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PROMOTION_SET15","strArg":"Normal"}},{"itemId":495065,"className":"Promotion_Set06_160825","name":"Wonderland Package - Archer (Female)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PROMOTION_SET16","strArg":"Normal"}},{"itemId":495066,"className":"Promotion_Set07_160825","name":"Wonderland Package - Cleric (Male)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PROMOTION_SET17","strArg":"Normal"}},{"itemId":495067,"className":"Promotion_Set08_160825","name":"Wonderland Package - Cleric (Female)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PROMOTION_SET18","strArg":"Normal"}},{"itemId":495068,"className":"Promotion_Set01_160906","name":"EXP Boost Pack","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PROMOTION_HANGAWUI1D","strArg":"Normal"}},{"itemId":495069,"className":"Promotion_Set02_160906","name":"EXP Boost Pack - Weekend","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PROMOTION_HANGAWUI2D","strArg":"Normal"}},{"itemId":495070,"className":"Promotion_Set03_160906","name":"EXP Boost Pack - Season","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PROMOTION_HANGAWUI3D","strArg":"Normal"}},{"itemId":495071,"className":"Promotion_Mainternancereward1","name":"Maintenance Compensation Package","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_MAINTERNANCEREWARD1","strArg":"Normal"}},{"itemId":495072,"className":"Promotion_Mainternancereward2","name":"Major Bug Report Appreciation Package","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_MAINTERNANCEREWARD2","strArg":"Normal"}},{"itemId":495073,"className":"Promotion_Mainternancereward3","name":"Bug Report Appreciation Package","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_MAINTERNANCEREWARD3","strArg":"Normal"}},{"itemId":495074,"className":"Promotion_Mainternancereward4","name":"Reparations Package","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_MAINTERNANCEREWARD4","strArg":"Normal"}},{"itemId":495075,"className":"Promotion_Mainternancereward5","name":"Delay Compensation Package","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_MAINTERNANCEREWARD5","strArg":"Normal"}},{"itemId":495077,"className":"AliceHairBox_2016","name":"Hair Accessory Selection Box - Wonderland","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ALICEHAIRBOX_2016","strArg":"Normal"}},{"itemId":495078,"className":"Taiwan100Day_Pack","name":"100 Day Celebration Package","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_TAIWAN100DAY_PACK","strArg":"Normal"}},{"itemId":495079,"className":"HairPack_20161012_idn","name":"October Accessory Package","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HAIRPACK_20161012","strArg":"Normal"}},{"itemId":495080,"className":"Promotion_Set01_161025","name":"Pumpkin 100 TP Package","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_161027PUMPKINPROMOTION01","strArg":"Normal"}},{"itemId":495081,"className":"Promotion_Set02_161025","name":"Pumpkin 200 TP Package","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_161027PUMPKINPROMOTION02","strArg":"Normal"}},{"itemId":495082,"className":"Promotion_Set03_161025","name":"Pumpkin 300 TP Package","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_161027PUMPKINPROMOTION03","strArg":"Normal"}},{"itemId":495083,"className":"Promotion_Set04_161025","name":"Pumpkin 500 TP Package","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_161027PUMPKINPROMOTION04","strArg":"Normal"}},{"itemId":495084,"className":"Premium_indunPack","name":"Premium Instanced Dungeon Package","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_INDUMPACK","strArg":"Normal"}},{"itemId":495085,"className":"Kupole_TestServer_Pack","name":"Kupole Server Savior Package","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_KUPOLE_TESTSERVER_PACK","strArg":"Normal"}},{"itemId":495121,"className":"Premium_Enchantchip14_Team","name":"Enchant Scroll (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":495125,"className":"Ability_Point_Stone_5_Team","name":"deleted","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":5}},{"itemId":495130,"className":"Ability_Point_Stone_5_Team_Event","name":"Attribute Points: 5","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":5}},{"itemId":495132,"className":"Beauty_HairCoupon_90_14d","name":"[Event] Hair 90% OFF (14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hair_Discount","numArg1":90}},{"itemId":495133,"className":"Beauty_DyeCoupon_90_14d","name":"[Event] Dye 90% OFF (14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dye_Discount","numArg1":90}},{"itemId":640452,"className":"KUPOLE_SEBI_WEAPON_SELECT","name":"[Kupole] Savinose Weapon Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":640454,"className":"God_Potion_ATK","name":"Goddess' Support Box: Punishment","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":640455,"className":"God_Potion_DEF","name":"Goddess' Support Box: Protection","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":640456,"className":"Hero_Potion_ATK","name":"Hero's Support Box: Punishment","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":640457,"className":"Hero_Potion_DEF","name":"Hero's Support Box: Protection","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":640530,"className":"God_Potion_ATK_NoTrade","name":"Goddess' Support Box: Punishment (Untradable)","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":640531,"className":"God_Potion_DEF_NoTrade","name":"Goddess' Support Box: Protection (Untradable)","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":640532,"className":"God_Potion_BOX_NoTrade","name":"Goddess' Support Box (Untradable)","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"God_Potion_ATK_NoTrade/1;God_Potion_DEF_NoTrade/1;"}},{"itemId":640533,"className":"elixerHPSP_BOX_NoTrade","name":"[Event] Elixir Box","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Event_Drug_RedApple20/10;Event_Drug_BlueApple20/10;"}},{"itemId":641955,"className":"ChallengeModeReset_14d","name":"Challenge Mode One Entry Voucher (14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":641986,"className":"PREMIUM_CHALLENG_PORTAL_Daily","name":"Challenge Portal Scroll (14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":10,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1712_SECOND_CHALLENG"}},{"itemId":643023,"className":"Transcend_Scroll_Event_90d","name":"[Event] Transcendence Stage 5 Scroll (90 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"transcend_Set","numArg1":5,"numArg2":100}},{"itemId":643027,"className":"Transcend_Scroll_5_Event","name":"[Event] Transcendence Stage 5 Scroll","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"transcend_Set","numArg1":5,"numArg2":100}},{"itemId":643046,"className":"Extract_kit_Gold_Team","name":"[Event] Golden Ichor Extraction Kit","type":"Etc","group":"Event","weight":4,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":643060,"className":"Extract_kit_Gold_Team_nonEvent","name":"Golden Ichor Extraction Kit","type":"Etc","group":"Event","weight":4,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":650857,"className":"Event_1710_Thanksgiving_Coin_Sub","name":"Pitch-pot Coin","type":"Quest","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Event_1710_Thanksgiving_Coin_Sub"}},{"itemId":650858,"className":"Event_1806_Soccer_Ball","name":"Soccer Ball","type":"Quest","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Event_1806_Soccer_Ball"}},{"itemId":661220,"className":"E_Balloon_beach","name":"TOS Beach Ball","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_E_Balloon","strArg":"beach"}},{"itemId":699007,"className":"Event_Rare_Enchant_Jewel","name":"[Event] Rare Enchant Jewel","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"EnchantJewell"}},{"itemId":699008,"className":"Event_Unique_Enchant_Jewel","name":"[Event] Unique Enchant Jewel","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"EnchantJewell"}},{"itemId":699009,"className":"Event_Legend_Enchant_Jewel","name":"[Event] Legend Enchant Jewel","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"EnchantJewell"}},{"itemId":699019,"className":"Rare_Enchant_Jewel_Team","name":"Rare Enchant Jewel","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"EnchantJewell"}},{"itemId":699020,"className":"Legend_Enchant_Jewel_Team","name":"Legend Enchant Jewel","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"EnchantJewell"}},{"itemId":900101,"className":"Event_160421","name":"T Ticket","type":"Etc","group":"Event","weight":0,"maxStack":200000000,"price":0,"sellPrice":1,"minLevel":1},{"itemId":900102,"className":"Event_160609","name":"Golden Key","type":"Etc","group":"Event","weight":0,"maxStack":200000000,"price":0,"sellPrice":1,"minLevel":1},{"itemId":900110,"className":"Event_160714_poporion","name":"Popolion Lottery Ticket","type":"Etc","group":"Event","weight":0,"maxStack":200000000,"price":0,"sellPrice":1,"minLevel":1},{"itemId":900138,"className":"Event_161027_1","name":"Halloween Cube","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"Event_161027_1"}},{"itemId":900139,"className":"Event_161025_poporion","name":"Popolion Doll Raffle Ticket","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1},{"itemId":900143,"className":"Event_161109_Cube","name":"Kepa Cube","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_KEPACUBE"}},{"itemId":900202,"className":"161215Event_NexonCash_1","name":"N/A","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1,"script":{"strArg":"icon_item_event_50000cash_2","numArg1":500,"numArg2":500}},{"itemId":900203,"className":"161215Event_NexonCash_2","name":"N/A","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1},{"itemId":900206,"className":"Event_Ability_Coupon_1","name":"Attribute Discount Coupon","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1},{"itemId":900207,"className":"Event_Ability_Coupon_2","name":"Attribute Discount Coupon 2","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1},{"itemId":900208,"className":"Event_Ability_Coupon_3","name":"Attribute Discount Coupon 3","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1},{"itemId":900209,"className":"Event_Ability_Coupon_4","name":"Attribute Discount Coupon 4","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1},{"itemId":900210,"className":"Event_Ability_Coupon_5","name":"Attribute Discount Coupon 5","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1},{"itemId":900211,"className":"Event_Ability_Coupon_6","name":"Attribute Discount Coupon 6","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1},{"itemId":900241,"className":"Event_ArborDay_Costume_Box","name":"Simple Costume Box","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Event_ArborDay_Costume_Box"}},{"itemId":900264,"className":"Event_1704_Invitation","name":"Lada's Invitation","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1,"script":{"strArg":"icon_item_event_invitation","numArg1":500,"numArg2":500}},{"itemId":900265,"className":"Event_1704_Cash_1000","name":"N/A","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1,"script":{"strArg":"icon_item_event_1000cash_2","numArg1":500,"numArg2":500}},{"itemId":900266,"className":"Event_1704_Cash_5000","name":"N/A","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1,"script":{"strArg":"icon_item_event_5000cash_2","numArg1":500,"numArg2":500}},{"itemId":900267,"className":"Event_1704_Cash_10000","name":"N/A","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1,"script":{"strArg":"icon_item_event_10000cash_2","numArg1":500,"numArg2":500}},{"itemId":900268,"className":"Event_1704_Cash_50000","name":"N/A","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1,"script":{"strArg":"icon_item_event_50000cash_2","numArg1":500,"numArg2":500}},{"itemId":900269,"className":"Event_1704_Cash_100000","name":"N/A","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1,"script":{"strArg":"icon_item_event_100000cash_2","numArg1":500,"numArg2":500}},{"itemId":900271,"className":"Event_1704_WeddingBox","name":"Event Wedding Costume Box","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Event_1704_WeddingBox"}},{"itemId":900272,"className":"Event_1704_LvUpBox","name":"Goddess' Level Up Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":15,"script":{"function":"SCR_USE_Event_1704_LvUpBox"}},{"itemId":900274,"className":"Event_1704_LvUp_Lv40","name":"Lv 40 Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":40,"script":{"function":"SCR_USE_Event_1704_LvUp_Lv40"}},{"itemId":900275,"className":"Event_1704_LvUp_Lv50","name":"Lv 50 Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":50,"script":{"function":"SCR_USE_Event_1704_LvUp_Lv50"}},{"itemId":900276,"className":"Event_1704_LvUp_Lv75","name":"Lv 75 Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":75,"script":{"function":"SCR_USE_Event_1704_LvUp_Lv75"}},{"itemId":900277,"className":"Event_1704_LvUp_Lv85","name":"Lv 85 Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":85,"script":{"function":"SCR_USE_Event_1704_LvUp_Lv85"}},{"itemId":900278,"className":"Event_1704_LvUp_Lv100","name":"Lv 100 Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_USE_Event_1704_LvUp_Lv100"}},{"itemId":900279,"className":"Event_1704_LvUp_Lv125","name":"Lv 125 Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":125,"script":{"function":"SCR_USE_Event_1704_LvUp_Lv125"}},{"itemId":900280,"className":"Event_1704_LvUp_Lv140","name":"Lv 140 Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":140,"script":{"function":"SCR_USE_Event_1704_LvUp_Lv140"}},{"itemId":900281,"className":"Event_1704_LvUp_Lv175","name":"Lv 175 Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":175,"script":{"function":"SCR_USE_Event_1704_LvUp_Lv175"}},{"itemId":900282,"className":"Event_1704_LvUp_Lv190","name":"Lv 190 Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":190,"script":{"function":"SCR_USE_Event_1704_LvUp_Lv190"}},{"itemId":900283,"className":"Event_1704_LvUp_Lv200","name":"Lv 200 Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":200,"script":{"function":"SCR_USE_Event_1704_LvUp_Lv200"}},{"itemId":900284,"className":"Event_1704_LvUp_Lv225","name":"Lv 225 Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":225,"script":{"function":"SCR_USE_Event_1704_LvUp_Lv225"}},{"itemId":900285,"className":"Event_1704_LvUp_Lv300","name":"Lv 300 Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":300,"script":{"function":"SCR_USE_Event_1704_LvUp_Lv300"}},{"itemId":900286,"className":"Event_1704_LvUpBox_Old","name":"Honored Level Up Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":15,"script":{"function":"SCR_USE_Event_1704_LvUpBox_Old"}},{"itemId":900287,"className":"Event_1704_LvUp_Old_Lv40","name":"Honored Lv 40 Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":40,"script":{"function":"SCR_USE_Event_1704_LvUp_Old_Lv40"}},{"itemId":900288,"className":"Event_1704_LvUp_Old_Lv50","name":"Honored Lv 50 Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":50,"script":{"function":"SCR_USE_Event_1704_LvUp_Old_Lv50"}},{"itemId":900289,"className":"Event_1704_LvUp_Old_Lv75","name":"Honored Lv 75 Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":75,"script":{"function":"SCR_USE_Event_1704_LvUp_Old_Lv75"}},{"itemId":900290,"className":"Event_1704_LvUp_Old_Lv85","name":"Honored Lv 85 Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":85,"script":{"function":"SCR_USE_Event_1704_LvUp_Old_Lv85"}},{"itemId":900291,"className":"Event_1704_LvUp_Old_Lv100","name":"Honored Lv 100 Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_USE_Event_1704_LvUp_Old_Lv100"}},{"itemId":900292,"className":"Event_1704_LvUp_Old_Lv125","name":"Honored Lv 125 Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":125,"script":{"function":"SCR_USE_Event_1704_LvUp_Old_Lv125"}},{"itemId":900293,"className":"Event_1704_LvUp_Old_Lv140","name":"Honored Lv 140 Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":140,"script":{"function":"SCR_USE_Event_1704_LvUp_Old_Lv140"}},{"itemId":900294,"className":"Event_1704_LvUp_Old_Lv175","name":"Honored Lv 175 Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":175,"script":{"function":"SCR_USE_Event_1704_LvUp_Old_Lv175"}},{"itemId":900295,"className":"Event_1704_LvUp_Old_Lv190","name":"Honored Lv 190 Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":190,"script":{"function":"SCR_USE_Event_1704_LvUp_Old_Lv190"}},{"itemId":900296,"className":"Event_1704_LvUp_Old_Lv200","name":"Honored Lv 200 Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":200,"script":{"function":"SCR_USE_Event_1704_LvUp_Old_Lv200"}},{"itemId":900297,"className":"Event_1704_LvUp_Old_Lv225","name":"Honored Lv 225 Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":225,"script":{"function":"SCR_USE_Event_1704_LvUp_Old_Lv225"}},{"itemId":900298,"className":"Event_1704_LvUp_Old_Lv300","name":"Honored Lv 300 Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":300,"script":{"function":"SCR_USE_Event_1704_LvUp_Old_Lv300"}},{"itemId":900310,"className":"Event_1705_Corsair_Wood","name":"Wood Board","type":"Etc","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1},{"itemId":900311,"className":"Event_1705_Corsair_Potion","name":"Pirates Potion","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_1705_Corsair_Potion_Buff","numArg2":3600000}},{"itemId":900312,"className":"Event_Donnes_Item","name":"Donnes Badge","type":"Etc","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900313,"className":"Event_1705_Schwarzereiter_Paper","name":"Request Complete Certificate","type":"Etc","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1},{"itemId":900314,"className":"Event_1705_Schwarzereiter_Potion","name":"Golden Note Potion","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_1705_Schwarzereiter_Potion_Buff","numArg2":3600000}},{"itemId":900315,"className":"Event_1706_Monk_Potion","name":"Believer's Potion","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_1706_Monk_Potion_Buff","numArg2":3600000}},{"itemId":900316,"className":"Event_1705_ReturnUserScroll","name":"Welcome Back Gift Box (15 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_RETURNQUEST_1705"}},{"itemId":900338,"className":"Event_1706_Doppelsoeldner1","name":"Mercenary Badge","type":"Etc","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1},{"itemId":900339,"className":"Event_1706_Doppelsoeldner_Potion","name":"Pledge of the Blade Potion","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_1706_Doppelsoeldner_Potion_Buff","numArg2":3600000}},{"itemId":900343,"className":"Event_Umbrella_Box_1","name":"Purple Drop","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_ITEM_RAIN_BOX_1","numArg1":100000}},{"itemId":900344,"className":"Event_Umbrella_Box_2","name":"Red Drop","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_ITEM_RAIN_BOX_2","numArg1":100000}},{"itemId":900345,"className":"Event_Umbrella_Box_3","name":"Blue Drop","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_ITEM_RAIN_BOX_3","numArg1":100000}},{"itemId":900346,"className":"Event_Umbrella_Box_4","name":"Green Drop","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_ITEM_RAIN_BOX_4","numArg1":100000}},{"itemId":900347,"className":"Event_Umbrella_Box_5","name":"Yellow Drop","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_ITEM_RAIN_BOX_5","numArg1":100000}},{"itemId":900348,"className":"Event_Golden_Whale_Box","name":"Stone Whale Treasure","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_GOLDEN_WHALE_CUBE","numArg1":100000}},{"itemId":900349,"className":"Event_Number_Ticket","name":"Daily Guess Ticket","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_STEAM_EVENT_TODAY_TICKET","numArg1":30,"numArg2":20000}},{"itemId":900352,"className":"Event_Nru2_Box_1","name":"Boost Pack","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":5,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_1","numArg1":100000}},{"itemId":900353,"className":"Event_Nru2_Box_2","name":"Boost Pack","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":10,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_2","numArg1":100000}},{"itemId":900354,"className":"Event_Nru2_Box_3","name":"Boost Pack","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":15,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_3","numArg1":100000}},{"itemId":900355,"className":"Event_Nru2_Box_4","name":"Boost Pack","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":30,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_4","numArg1":100000}},{"itemId":900356,"className":"Event_Nru2_Box_5","name":"Boost Pack","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":50,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_5","numArg1":100000}},{"itemId":900357,"className":"Event_Nru2_Box_6","name":"Boost Pack","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":80,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_6","numArg1":100000}},{"itemId":900358,"className":"Event_Nru2_Box_7","name":"Boost Pack","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_7","numArg1":100000}},{"itemId":900359,"className":"Event_Nru2_Box_8","name":"Boost Pack","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":110,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_8","numArg1":100000}},{"itemId":900360,"className":"Event_Nru2_Box_9","name":"Boost Pack","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":120,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_9","numArg1":100000}},{"itemId":900361,"className":"Event_Nru2_Box_10","name":"Boost Pack","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":140,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_10","numArg1":100000}},{"itemId":900362,"className":"Event_Nru2_Box_11","name":"Boost Pack","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":150,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_11","numArg1":100000}},{"itemId":900363,"className":"Event_Nru2_Box_12","name":"Boost Pack","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":170,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_12","numArg1":100000}},{"itemId":900364,"className":"Event_Nru2_Box_13","name":"Boost Pack","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":190,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_13","numArg1":100000}},{"itemId":900365,"className":"Event_Nru2_Box_14","name":"Boost Pack","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":200,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_14","numArg1":100000}},{"itemId":900366,"className":"Event_Nru2_Box_15","name":"Boost Pack","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":210,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_15","numArg1":100000}},{"itemId":900367,"className":"Event_Nru2_Box_16","name":"Boost Pack","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":230,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_16","numArg1":100000}},{"itemId":900368,"className":"Event_Nru2_Box_17","name":"Boost Pack","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":240,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_17","numArg1":100000}},{"itemId":900369,"className":"Event_Nru2_Box_18","name":"Boost Pack","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":260,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_18","numArg1":100000}},{"itemId":900370,"className":"Event_Nru2_Box_19","name":"Boost Pack","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":290,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_19","numArg1":100000}},{"itemId":900371,"className":"Event_Sol_BOX_1","name":"Savior's Weapon Voucher (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","numArg1":100000}},{"itemId":900372,"className":"Event_Sol_BOX_2","name":"Savior's Top Voucher (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","numArg1":100000}},{"itemId":900373,"className":"Event_Sol_BOX_3","name":"Savior's Bottom Voucher (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","numArg1":100000}},{"itemId":900374,"className":"Event_Sol_BOX_4","name":"Savior's Boots Voucher (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","numArg1":100000}},{"itemId":900375,"className":"Event_Sol_BOX_5","name":"Savior's Gloves Voucher (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","numArg1":100000}},{"itemId":900376,"className":"Event_Sol_BOX_6","name":"Savior's Accessory Voucher (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","numArg1":100000}},{"itemId":900377,"className":"Event_CB_Ticket","name":"Returning Player Badge","type":"Etc","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":100000}},{"itemId":900378,"className":"Event_Kepa2_Ticket","name":"Kepa Fragment","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":100000}},{"itemId":900379,"className":"Event_Reinforce_100000coupon","name":"Enhancement Coupon: 100,000 Silver","type":"Etc","group":"Event","weight":0,"maxStack":999999,"price":0,"sellPrice":1,"minLevel":1,"script":{"strArg":"Reinforce_100000coupon","numArg1":100000}},{"itemId":900381,"className":"Event_Steam_YC_1","name":"[Klaipeda] Goddess Sculpture Head","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900382,"className":"Event_Steam_YC_2","name":"[All cities] Goddess Sculpture Wings","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900383,"className":"Event_Steam_YC_3","name":"[Orsha] Goddess Sculpture Torso","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900384,"className":"Event_Steam_YC_4","name":"[Fedimian] Goddess Sculpture Legs","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900385,"className":"Event_Steam_YC_5","name":"[Event] Restored Goddess Sculpture","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":900386,"className":"Event_Steam_YC_6","name":"[Event] Golden Chest of Grace","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":100,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_GOLDEN_BOX_CUBE","numArg1":100000}},{"itemId":900388,"className":"Event_Steam_Master_Cube","name":"Master Cube","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":50,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_MASTER_CUBE"}},{"itemId":900389,"className":"Event_Steam_Master_Item","name":"Master Badge","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900390,"className":"Event_G9_BOX","name":"Earth's Happy Chest","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_G9_BOX"}},{"itemId":900391,"className":"EVENT_1710_NEWCHARACTER_BOX_1","name":"[Event] Level Up Chest (Lv. 15)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":15,"script":{"function":"SCR_USE_EVENT_1710_NEWCHARACTER_BOX_1"}},{"itemId":900392,"className":"EVENT_1710_NEWCHARACTER_BOX_2","name":"[Event] Level Up Chest (Lv. 40)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":40,"script":{"function":"SCR_USE_EVENT_1710_NEWCHARACTER_BOX_2"}},{"itemId":900393,"className":"EVENT_1710_NEWCHARACTER_BOX_3","name":"[Event] Level Up chest (Lv. 50)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":50,"script":{"function":"SCR_USE_EVENT_1710_NEWCHARACTER_BOX_3"}},{"itemId":900394,"className":"EVENT_1710_NEWCHARACTER_BOX_4","name":"[Event] Level Up Chest (Lv. 75)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":75,"script":{"function":"SCR_USE_EVENT_1710_NEWCHARACTER_BOX_4"}},{"itemId":900395,"className":"EVENT_1710_NEWCHARACTER_BOX_5","name":"[Event] Level Up Chest (Lv. 85)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":85,"script":{"function":"SCR_USE_EVENT_1710_NEWCHARACTER_BOX_5"}},{"itemId":900396,"className":"EVENT_1710_NEWCHARACTER_BOX_6","name":"[Event] Level Up Chest (Lv. 100)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":100,"script":{"function":"SCR_USE_EVENT_1710_NEWCHARACTER_BOX_6"}},{"itemId":900397,"className":"EVENT_1710_NEWCHARACTER_BOX_7","name":"[Event] Level Up Chest (Lv. 120)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":120,"script":{"function":"SCR_USE_EVENT_1710_NEWCHARACTER_BOX_7"}},{"itemId":900398,"className":"EVENT_1710_NEWCHARACTER_BOX_8","name":"[Event] Level Up Chest (Lv. 140)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":140,"script":{"function":"SCR_USE_EVENT_1710_NEWCHARACTER_BOX_8"}},{"itemId":900399,"className":"EVENT_1710_NEWCHARACTER_BOX_9","name":"[Event] Level Up Chest (Lv. 170)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":170,"script":{"function":"SCR_USE_EVENT_1710_NEWCHARACTER_BOX_9"}},{"itemId":900400,"className":"EVENT_1710_NEWCHARACTER_BOX_10","name":"[Event] Level Up Chest (Lv. 180)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":180,"script":{"function":"SCR_USE_EVENT_1710_NEWCHARACTER_BOX_10"}},{"itemId":900401,"className":"EVENT_1710_NEWCHARACTER_BOX_11","name":"[Event] Level Up Chest (Lv. 200)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":200,"script":{"function":"SCR_USE_EVENT_1710_NEWCHARACTER_BOX_11"}},{"itemId":900402,"className":"EVENT_1710_NEWCHARACTER_BOX_12","name":"[Event] Level Up Chest (Lv. 220)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":220,"script":{"function":"SCR_USE_EVENT_1710_NEWCHARACTER_BOX_12"}},{"itemId":900403,"className":"EVENT_1710_NEWCHARACTER_BOX_13","name":"[Event] Level Up Chest (Lv. 230)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":230,"script":{"function":"SCR_USE_EVENT_1710_NEWCHARACTER_BOX_13"}},{"itemId":900404,"className":"EVENT_1710_NEWCHARACTER_BOX_14","name":"[Event] Level Up Chest (Lv. 270)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":270,"script":{"function":"SCR_USE_EVENT_1710_NEWCHARACTER_BOX_14"}},{"itemId":900405,"className":"EVENT_1710_NEWCHARACTER_BOX_15","name":"[Event] Level Up Chest (Lv. 315)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":315,"script":{"function":"SCR_USE_EVENT_1710_NEWCHARACTER_BOX_15"}},{"itemId":900406,"className":"EVENT_1710_NEWCHARACTER_BOX_16","name":"[Event] Level Up Chest (Lv. 330)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":330,"script":{"function":"SCR_USE_EVENT_1710_NEWCHARACTER_BOX_16"}},{"itemId":900407,"className":"EVENT_1710_NEWCHARACTER_TPBOX","name":"7th Day TP box","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":330,"script":{"function":"SCR_USE_EVENT_1710_NEWCHARACTER_TPBOX"}},{"itemId":900410,"className":"EVENT_1710_NEWCHARACTER_BOX_17","name":"[Event] Level Up Chest (Lv. 350)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":350,"script":{"function":"SCR_USE_EVENT_1710_NEWCHARACTER_BOX_17"}},{"itemId":900412,"className":"EVENT_1803_NEWCHARACTER_JUMPING","name":"Jumping Character Exchange Ticket","type":"Etc","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1},{"itemId":900413,"className":"EVENT_1803_NEWCHARACTER_JUMPING_BOX","name":"Jumping Package Box","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1803_NEWCHARACTER_JUMPING_BOX"}},{"itemId":900414,"className":"Event_expCard_300Lv","name":"EXP Card (Lv.300)","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Event_expCard_300Lv"}},{"itemId":900415,"className":"Event_Ability_Point_Stone_1000","name":"1000 Attribute Points","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":900416,"className":"EVENT_1803_NEWCHARACTER_ABILITY_BOX","name":"[Event] Daily Attribute Points Box","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1803_NEWCHARACTER_ABILITY_BOX"}},{"itemId":900418,"className":"EVENT_1805_NEWCHARACTER_WEAPON","name":"Weapon Exchange Voucher","type":"Etc","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1},{"itemId":900420,"className":"EVENT_1710_NEWCHARACTER_BOX_18","name":"[Event] Level Up Chest (Lv. 380)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":380,"script":{"function":"SCR_USE_EVENT_1710_NEWCHARACTER_BOX_18"}},{"itemId":900421,"className":"EVENT_1803_NEWCHARACTER_Ability_Point_Stone_1000","name":"[Event] Attribute Points 1,000","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":900422,"className":"Event_Ability_Point_Stone_10000_14d","name":"Attribute Points: 10,000 (14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":900423,"className":"EVENT_1811_NEWCHARACTER_BARRACK_SLOT","name":"Character Slot Voucher","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1811_NEWCHARACTER_BARRACK_SLOT"}},{"itemId":900426,"className":"Event_1704_Cash_500000","name":"N/A","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1,"script":{"strArg":"icon_item_event_500000cash_2","numArg1":500,"numArg2":500}},{"itemId":902002,"className":"Event_1709_NewField_Cube","name":"Invitation Cube","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_1709_NewField_Cube"}},{"itemId":902003,"className":"Event_1709_NewField_Potion","name":"Invitation Potion","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_1709_NewField_Potion_Buff","numArg2":1800000}},{"itemId":902005,"className":"Event_JP_Offline_Cube","name":"ITEM_20230424_028508","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_JP_OFFLINE_CUBE"}},{"itemId":902006,"className":"Event_Special_Blueorb","name":"Special Blue Orb","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_SPECIAL_BLUEORB"}},{"itemId":902007,"className":"Event_Special_Trap","name":"Special Monster Trapper","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_SPECIAL_TRAP"}},{"itemId":902008,"className":"Event_1709_NewField_Box","name":"The Invited One Costume Box","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GIVE_ITEM_COSTUME_BOX","strArg":"Event_1709_NewField_Box","numArg1":10}},{"itemId":902016,"className":"Armor_270_EventBox","name":"Event Armor Box (Lv.270)","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":100000}},{"itemId":902017,"className":"Weapon_315_EventBox","name":"Event Weapon Box (Lv. 315)","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":100000}},{"itemId":902018,"className":"Event_Fedimian_Cube","name":"Fedimian's Hero Cube","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"Event_Fedimian_Cube"}},{"itemId":902020,"className":"Event_JP_Offline_Cube_2","name":"ITEM_20230424_028510","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_JP_OFFLINE_EVENT_CUBE_2"}},{"itemId":902021,"className":"Event_Special_Etcitem2","name":"Blue Fragment","type":"Etc","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902023,"className":"AGARIO_CANDY_REWARD","name":"Odd Candy","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1},{"itemId":902024,"className":"EVENT_1706_FREE_RANKRESET_REWARD_6RANKBOX","name":"Level Up Chest","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1706_FREE_RANKRESET_REWARD_6RANKBOX"}},{"itemId":902025,"className":"Event_expCard_180Lv","name":"EXP Card (Lv 180)","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Event_expCard_180Lv"}},{"itemId":902026,"className":"Event_Nru_Buff_Item","name":"New Savior's Tome (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddTeamBuff","strArg":"Event_Nru_Buff_Item","numArg2":3600000}},{"itemId":902027,"className":"Event_Cb_Buff_Item","name":"Returning Savior's Book (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddTeamBuff","strArg":"Event_Cb_Buff_Item","numArg2":3600000}},{"itemId":902028,"className":"Event_Cb_Buff_Potion","name":"Returning Savior's Potion (30 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddTeamBuff","strArg":"Event_Cb_Buff_Potion","numArg2":3600000}},{"itemId":902029,"className":"Event_Goddess_Medal","name":"Goddess' Medal","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902030,"className":"Event_Lv315_Ore_Box","name":"Lv315 Crafter's Ore Chest (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"Event_LV315_Ore_Box"}},{"itemId":902036,"className":"EVENT_1712_SECOND_MIN_ITEM","name":"2nd Anniversary Seeds","type":"Etc","group":"Event","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1},{"itemId":902038,"className":"Event_Steam_Christmas_Reward_Box","name":"Gift Box","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","numArg1":100000}},{"itemId":902039,"className":"EVENT_1712_SECOND_CHALLENG_14d","name":"Challenge Portal Scroll (14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":10,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1712_SECOND_CHALLENG"}},{"itemId":902040,"className":"Event_Steam_Christmas_Box","name":"Present","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_STEAM_CHRISTMAS_GUIDE"}},{"itemId":902045,"className":"EVENT_1712_XMAS_CUBE","name":"Christmas Gift Key","type":"Etc","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902047,"className":"EVENT_1712_NEWYEAR_CARD","name":"New Year's Card","type":"Etc","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"strArg":"icon_item_newyearcard","numArg1":500,"numArg2":500}},{"itemId":902049,"className":"EVENT_STEAM_RETURN_BOX","name":"Homecoming Gift (14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_RETURN_BOX","strArg":"Normal"}},{"itemId":902052,"className":"Ability_Point_Stone_500_14d","name":"Attribute Points: 500 (14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":500}},{"itemId":902054,"className":"Event_LvupBuffPowder","name":"Buff Level-up Powder","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902055,"className":"Event_LvupBuff_Quest","name":"Monster Duty Instructions","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_LVUPBUFF_QUEST"}},{"itemId":902056,"className":"Event_LvupBuffPowder2","name":"Hunter Badge","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902059,"className":"Event_Steam_Happy_New_Year_Key","name":"Lucky Key","type":"Etc","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902064,"className":"Event_Steam_Night_Market_Gold","name":"Golden Coin","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902066,"className":"Event_Steam_Night_Market_EquipBox1","name":"Lv 315 Unique Top Selection Box (14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902067,"className":"Event_Steam_Night_Market_EquipBox2","name":"Lv 315 Unique Bottom Selection Box (14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902068,"className":"Event_Steam_Night_Market_EquipBox3","name":"Lv 315 Unique Gloves Selection Box (14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902069,"className":"Event_Steam_Night_Market_EquipBox4","name":"Lv 315 Unique Boots Selection Box (14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":902070,"className":"Event_Steam_Night_Market_RecipeBox1","name":"Secret Recipe Selection Box (14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":902079,"className":"RequestEnterCount_1add","name":"Mercenary Post One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_RequestEnterCount_1add"}},{"itemId":902080,"className":"GuildQuestEnterCount_1add","name":"Guild Quest One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GuildQuestEnterCount_1add"}},{"itemId":902081,"className":"Guild_RESET_GUILD_ABILITY","name":"Guild Attribute Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_RESET_GUILD_ABILITY"}},{"itemId":902088,"className":"Event_Nru2_Box_1_re","name":"Boost Pack(14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_1_RE","numArg1":100000}},{"itemId":902089,"className":"Event_Nru2_Box_2_re","name":"Chr Lv 1 Boost Pack (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_2_RE","numArg1":100000}},{"itemId":902090,"className":"Event_Nru2_Box_3_re","name":"Chr Lv 50 Boost Pack (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":50,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_3_RE","numArg1":100000}},{"itemId":902091,"className":"Event_Nru2_Box_4_re","name":"Chr Lv 170 Boost Pack (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":170,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_4_RE","numArg1":100000}},{"itemId":902092,"className":"Event_Nru2_Box_5_re","name":"Chr Lv 220 Boost Pack (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":220,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_5_RE","numArg1":100000}},{"itemId":902093,"className":"Event_Nru2_Box_6_re","name":"Team Lv 2 Boost Pack (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_6_RE","numArg1":100000}},{"itemId":902094,"className":"Event_Nru2_Box_7_re","name":"Team Lv 3 Boost Pack (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_NRU2_BOX_7_RE","numArg1":100000}},{"itemId":902096,"className":"Event_Steam_Last_Winter_Key","name":"Winter Key","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902097,"className":"Event_Steam_Last_Winter_Icicle","name":"Icicle (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_STEAM_LAST_WINTER_ICICLE"}},{"itemId":902098,"className":"Event_Steam_Server_Material_1","name":"Lena Token","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902099,"className":"Event_Steam_Server_Material_2","name":"Rosia Token","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902100,"className":"Event_Steam_Server_Material_3","name":"Vaivora Token","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902101,"className":"Event_Flower_item_1","name":"Flower Petal","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902102,"className":"Event_Steam_2Years_Master_List","name":"List of Invited Masters","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_STEAM_2YEARS_GUIDE"}},{"itemId":902103,"className":"Event_Steam_2Years_Master_DLC","name":"Start 2nd Anniversary Event","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_STEAM_2YEARS_WARP"}},{"itemId":902106,"className":"Event_Steam_Magazine_Num1","name":"[Event] Crystal Mine Revelation","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902115,"className":"Class_Solution_Select_Box_Steam_Event","name":"[Event] Unlock Voucher Selection Box","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":100000}},{"itemId":902116,"className":"Steam_Event_350_Weapon_Select_Box","name":"[Event] Lv 350 Enhanced/Transcended Weapon Selection Box","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":100000}},{"itemId":902117,"className":"Steam_Event_Weapon_Select_Box_14day","name":"[Event] Enhanced/Transcended Weapon Selection Box (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":100000}},{"itemId":902120,"className":"Event_Steam_Store_Call_14d","name":"Combat Support Shop Voucher (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_STEAM_STORE_CALL"}},{"itemId":902121,"className":"Event_Steam_Store_Call","name":"Combat Support Shop Voucher","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_STEAM_STORE_CALL"}},{"itemId":902123,"className":"EVENT_JP_Contest_2018","name":"ITEM_20230424_028515","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"EVENT_JP_Contest_2018"}},{"itemId":902124,"className":"Event_Fedimian_Cube_2018","name":"ITEM_20230424_028516","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"Event_Fedimian_Cube_2018"}},{"itemId":902126,"className":"Event_Steam_Fishing_Talt","name":"Unique Talt","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902127,"className":"Event_Steam_Fishing_BOX1","name":"Unique Unidentified Two-handed Weapon Box","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902128,"className":"Event_Steam_Fishing_BOX2","name":"Unique Unidentified One-handed Weapon Box","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902129,"className":"Event_Steam_Fishing_BOX3","name":"Unique Unidentified Top Armor Box","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902130,"className":"Event_Steam_Fishing_BOX4","name":"Unique Unidentified Bottom Armor Box","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902131,"className":"Event_Steam_Fishing_BOX5","name":"Unique Unidentified Gloves Box","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902132,"className":"Event_Steam_Fishing_BOX6","name":"Unique Unidentified Boots Box","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902144,"className":"Event_Returner_Box_JP","name":"ITEM_20230424_028522","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Event_Returner_Box_JP"}},{"itemId":902145,"className":"Event_2019_Web_Box_JP","name":"ITEM_20230424_028524","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"Event_2019_Web_Box_JP"}},{"itemId":902159,"className":"Event_JP_FLOWER_SELECT_BOX","name":"Frill Ornament Fairy Selection Box","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902168,"className":"Event_TWN_3YEARS_PET_FOOD","name":"[Event] Chupacabra Food","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902174,"className":"GLOBAL_EVENT_MISSION_TRY_PIECE","name":"Victory Cube Fragment","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902175,"className":"GLOBAL_EVENT_MISSION_TRY_INFO","name":"Victory Dungeon Journal","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_GLOBAL_MISSION_TRY_GUIDE"}},{"itemId":902178,"className":"GLOBAL_EVENT_MISSION_TRY_WARP_SCROLL","name":"Victory Warp Scroll","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_GLOBAL_MISSION_TRY_WARP_SCROLL"}},{"itemId":904043,"className":"EVENT_1805_WEDDING2_COSTUME_BOX","name":"Fairy Costume Box","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1805_WEDDING2_COSTUME_BOX"}},{"itemId":904050,"className":"EVENT_1807_STORY_2_COSTUME_BOX","name":"Astral Tower Hero Costume Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1807_STORY_2_COSTUME_BOX"}},{"itemId":904100,"className":"Ability_Point_Stone_1000_14d_Team","name":"Attribute Points: 1000 (14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":904104,"className":"Ability_Point_Stone_100_14d_Team","name":"Attribute Points: 100 (14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":100}},{"itemId":904105,"className":"Ability_Point_Stone_500_14d_Team","name":"Attribute Points: 500 (14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":500}},{"itemId":904114,"className":"EVENT_1812_GILTINE_REWARD_BOX","name":"Giltine's Gift Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1812_GILTINE_REWARD_BOX"}},{"itemId":904126,"className":"EVENT_1712_SECOND_CHALLENG_14d_Team","name":"Challenge Portal Scroll (14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":10,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1712_SECOND_CHALLENG"}},{"itemId":904128,"className":"EVENT_1812_DAYCHECK_BALLOONBOX","name":"3rd Anniversary Balloon Bundle","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1812_DAYCHECK_BALLOONBOX"}},{"itemId":904133,"className":"EVENT_190110_3DAY_BOX","name":"[Event] Three Day Trial Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_190110_3DAY_BOX"}},{"itemId":904134,"className":"EVENT_190110_GOLDPIG_BOX","name":"[Event] Golden Pig Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_190110_GOLDPIG_BOX"}},{"itemId":904135,"className":"EVENT_190110_RankReset_Point_Lv1","name":"Class Change Voucher Lv. 1 (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"EVENT_190110_RankReset_Point_Lv1","numArg1":100}},{"itemId":904137,"className":"EVENT_190124_RankReset_Point_Lv2","name":"[Event] Class Change Voucher Lv. 2 (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"EVENT_190124_RankReset_Point_Lv2","numArg1":500}},{"itemId":904140,"className":"Class_Solution_Select_Box_Event","name":"[Event] Unlock Voucher Selection Box","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":100000}},{"itemId":904141,"className":"EVENT_1902_FISHBOX","name":"[Event] Hidden Treasure Chest","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1902_FISHINGBOX_BOX"}},{"itemId":904148,"className":"EVENT_1811_NEWCHARACTER_BARRACK_SLOT2","name":"[Event] Character Slot Voucher","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1811_NEWCHARACTER_BARRACK_SLOT"}},{"itemId":904149,"className":"Event_Reinforce_100000coupon_Event","name":"[Event] Enhancement Coupon: 100,000 Silver","type":"Etc","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1,"script":{"strArg":"Reinforce_100000coupon","numArg1":100000}},{"itemId":904151,"className":"EVENT_1710_NEWCHARACTER_BOX_19","name":"[Event] Level Up Chest (Lv. 400)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":400,"script":{"function":"SCR_USE_EVENT_1710_NEWCHARACTER_BOX_19"}},{"itemId":904163,"className":"EVENT_1906_EQUIPITEM_BOX","name":"[Event] Savinose Weapon Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904168,"className":"EVENT_1906_EQUIPITEM_BOX_ARMOR","name":"[Event] Savinose Armor Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904170,"className":"Event1907_SUMMER_FESTA_GACHA_1","name":"[Summer Festa] Red Reward Box","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1907_ICESHOP_GBOX","strArg":"Event1907_SUMMER_FESTA_GACHA_1"}},{"itemId":904171,"className":"Event1907_SUMMER_FESTA_GACHA_2","name":"[Summer Festa] Blue Reward Box","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1907_ICESHOP_GBOX","strArg":"Event1907_SUMMER_FESTA_GACHA_2"}},{"itemId":904172,"className":"Event1907_SUMMER_FESTA_GACHA_3","name":"[Summer Festa] Black Reward Box","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1907_ICESHOP_GBOX","strArg":"Event1907_SUMMER_FESTA_GACHA_3"}},{"itemId":904173,"className":"CARE_RankReset_Point_Lv1","name":"[Compensation] Class Change Voucher Lv.1","type":"Consume","group":"Event","weight":0,"maxStack":100,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"EVENT_RankReset_Point_Lv1","numArg1":100}},{"itemId":904174,"className":"CARE_RankReset_Point_Lv2","name":"[Compensation] Class Change Voucher Lv.2","type":"Consume","group":"Event","weight":0,"maxStack":100,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"EVENT_RankReset_Point_Lv2","numArg1":500}},{"itemId":904175,"className":"CARE_RankReset_Point_Lv3","name":"[Compensation] Class Change Voucher Lv.3","type":"Consume","group":"Event","weight":0,"maxStack":100,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"EVENT_RankReset_Point_Lv3","numArg1":1000}},{"itemId":904176,"className":"CARE_RankReset_Point_Lv4","name":"[Compensation] Class Change Voucher Lv.4","type":"Consume","group":"Event","weight":0,"maxStack":100,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"EVENT_RankReset_Point_Lv4","numArg1":3000}},{"itemId":904177,"className":"Event190808_RankReset_Point_Lv3","name":"[The ARTS] Class Change Voucher Lv.3 (1 Day)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"EVENT_RankReset_Point_Lv3","numArg1":1000}},{"itemId":904192,"className":"event1909_Ability_Point_Stone_500_Team","name":"[Event] Attribute Points 500","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":500}},{"itemId":904193,"className":"event1909_Ability_Point_Stone_1000_Team","name":"[Event] Attribute Points 1,000","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":904194,"className":"event1909_Ability_Point_Stone_10000_Team","name":"[Event] Attribute Points 10,000","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":904198,"className":"event1909_EQUIPITEM_BOX","name":"[Event] Savinose Weapon Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904199,"className":"Event_expCard_400Lv","name":"EXP Card (Lv.400)","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Event_expCard_400Lv","strArg":"400lvupCard_MSG"}},{"itemId":904201,"className":"Event_Reissue_Costume_Box","name":"Reissue Cafe T-shirt Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Event_Reissue_Costume_Box"}},{"itemId":904203,"className":"Event_Grimoire_Daily_CardBox","name":"[Event] Grimoire Card Album Box","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Event_Grimoire"}},{"itemId":904204,"className":"Event_Grimoire_Armor_Box","name":"[Event] Ignas Armor Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904205,"className":"Event_Grimoire_Weapon_Box","name":"[Event] Unique Weapon Selection Box (Asio, Wastrel)","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904206,"className":"Event_Grimoire_Weapon_Box_Asio","name":"[Event] Asio Unique Weapon Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904207,"className":"Event_Grimoire_Weapon_Box_Wei","name":"[Event] Wastrel Unique Weapon Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904210,"className":"Event_Reinforce_100000coupon_14d","name":"[Event] Enhancement Coupon: 100,000 Silver (14 Days)","type":"Etc","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":1,"minLevel":1,"script":{"strArg":"Reinforce_100000coupon","numArg1":100000}},{"itemId":904219,"className":"Event_Sevinose_EquipArmor_Box","name":"[Event] Savinose Armor Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904222,"className":"Event_indunReset_Team_14d","name":"Instanced Dungeon Reset Voucher: 14 Days","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904229,"className":"Arts_Ability_Coupon","name":"Attribute Point Voucher for Arts","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":36000}},{"itemId":904230,"className":"Ability_Point_Stone_10000_NoTrade","name":"Attribute Points 10,000 Ticket","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":904232,"className":"PersonalHousing_PointGacha_1","name":"[Personal Housing] House Setup Support: Lvl 1","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_P_HOUSING_POINTSHOP_GACHA","strArg":"Personal_Housing_PointShop_Gacha_1"}},{"itemId":904233,"className":"PersonalHousing_PointGacha_2","name":"[Personal Housing] House Setup Support: Lvl 2","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_P_HOUSING_POINTSHOP_GACHA","strArg":"Personal_Housing_PointShop_Gacha_2"}},{"itemId":904234,"className":"PersonalHousing_PointGacha_3","name":"[Personal Housing] House Setup Support: Lvl 3","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_P_HOUSING_POINTSHOP_GACHA","strArg":"Personal_Housing_PointShop_Gacha_3"}},{"itemId":904235,"className":"Ability_Point_Stone_10000_Team_NoDate","name":"[Event] Attribute Point 10,000","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":904247,"className":"TP_1912_EQUIPITEM_BOX_ARMOR","name":"[4ever] 11 ENH 10 TRA Savinose Armor Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904248,"className":"TP_1912_EQUIPITEM_BOX","name":"[4ever] 11 ENH 10 TRA Savinose Weapon Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904249,"className":"EVENT_1710_NEWCHARACTER_BOX_20","name":"[Event] Level Up Chest (Lv. 420)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":420,"script":{"function":"SCR_USE_EVENT_1710_NEWCHARACTER_BOX_20"}},{"itemId":904250,"className":"EVENT_EP12NEWCLASS_COSBOX","name":"[Event] New Class Premium Costume Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904251,"className":"Event_expCard_400Lv_NO420","name":"[Event] EXP Card (Lv.400)","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Event_expCard_400Lv","strArg":"400lvupCard_MSG"}},{"itemId":904254,"className":"2020_AbillityArts_Box_1_d7","name":"[Event]Arts Reset Potion Profession Selection Box(7 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904255,"className":"2020_AbillityArts_Box_2_d7","name":"Swordsman Tree Arts Reset Potion Selection Box(7 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904256,"className":"2020_AbillityArts_Box_3_d7","name":"Scout Tree Arts Reset Potion Selection Box(7 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904257,"className":"2020_AbillityArts_Box_4_d7","name":"Cleric Tree Arts Reset Potion Selection Box(7 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904258,"className":"2020_AbillityArts_Box_5_d7","name":"Archer Tree Arts Reset Potion Selection Box(7 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904259,"className":"2020_AbillityArts_Box_6_d7","name":"Wizard Tree Arts Reset Potion Selection Box(7 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904260,"className":"Achieve_LV400_MISSION_ACHIEVE01","name":"Title - Indomitable Spirit (Lv.400 Dungeon)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_LV400_MISSION_ACHIEVE01","strArg":"LV400_MISSION_ACHIEVE01"}},{"itemId":904261,"className":"Achieve_LV400_MISSION_ACHIEVE02","name":"Title - Valiancy (Lv.400 Dungeon)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_LV400_MISSION_ACHIEVE02","strArg":"LV400_MISSION_ACHIEVE02"}},{"itemId":904262,"className":"Event_Ability_Point_Stone_10000_14d_2","name":"[Event] 10,000 Attribute Points (14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":904265,"className":"event1909_Ability_Point_Stone_1000_Team_14d","name":"[Event]1000 Attribute Point(14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":904272,"className":"2020NewYear_EQUIPITEM_BOX_ARMOR","name":"[Blossom Pack] Savinose Armor Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904273,"className":"2020NewYear_EQUIPITEM_BOX","name":"[Blossom Pack] Savinose Weapon Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904280,"className":"EVENT_SEASON_NewWorld_Rewards_evt1","name":"[Event] Growth Support Package","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"EVENT_SEASON_NewWorld_EVT_Daily_Rewards"}},{"itemId":904281,"className":"EVENT_SEASON_NewWorld_Rewards_evt2_1","name":"[Event] Daily Support Box","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_SEASON_NewWorld_EVT2","numArg1":100}},{"itemId":904282,"className":"EVENT_SEASON_NewWorld_Rewards_evt2_2","name":"[Event] Weekly Support Box","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_SEASON_NewWorld_EVT2","numArg1":200}},{"itemId":904283,"className":"EVENT_SEASON_NewWorld_Rewards_evt2_3","name":"[Event] Monthly Support Box","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_SEASON_NewWorld_EVT2","numArg1":300}},{"itemId":904285,"className":"Event_expCard_430Lv","name":"EXP Card (Lv.431)","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Event_expCard_430Lv","strArg":"430lvupCard_MSG"}},{"itemId":904334,"className":"Event_expCard18_x10_Box","name":"Lv17 EXP Card (x10) Box","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":440,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"expCard18_x10/162;"}},{"itemId":904336,"className":"Relic_Reinforce_100000coupon","name":"Res Sacrae Discount Coupon: 100,000 Silver","type":"Etc","group":"Event","weight":0,"maxStack":999999,"price":0,"sellPrice":1,"minLevel":1,"script":{"strArg":"Relic_Reinforce_100000coupon","numArg1":100000}},{"itemId":904337,"className":"AbillityArts_Box_2_d1","name":"Swordsman Tree Arts Reset Potion Selection Box (1 Day)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904338,"className":"AbillityArts_Box_3_d1","name":"Scout Tree Arts Reset Potion Selection Box (1 Day)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904339,"className":"AbillityArts_Box_4_d1","name":"Cleric Tree Arts Reset Potion Selection Box (1 Day)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904340,"className":"AbillityArts_Box_5_d1","name":"Archer Tree Arts Reset Potion Selection Box (1 Day)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904341,"className":"AbillityArts_Box_6_d1","name":"Wizard Tree Arts Reset Potion Selection Box (1 Day)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":1300001,"className":"EPISODE_11_REWARD_WEAPON_BOX","name":"[EP11] 11EHN 10TRA Savinose Weapon Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":1300002,"className":"EPISODE_11_REWARD_EQUIP_BOX","name":"[EP11] 11EHN 10TRA Savinose Armor Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":10000003,"className":"event2003_Ability_Point_Stone_1000_Team_14d","name":"[Event]1000 Attribute Point(14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000004,"className":"event2003Ability_Point_Stone_500_14d","name":"Attribute Points: 500 (14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":500}},{"itemId":10000013,"className":"Event_free_ap_return","name":"[Event] Attribute Point Free Extraction Voucher","type":"Etc","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000029,"className":"Event_Ability_Point_Stone_10000_1","name":"[TOSventure] Attribute Point 10,000","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000030,"className":"Event_Ability_Point_Stone_10000_2","name":"[FLEX BOX] Attribute Point 10,000","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000031,"className":"Event_Ability_Point_Stone_10000_3","name":"[Stamp Tour] Attribute Points 10,000","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000032,"className":"EVENT_SECOND_CHALLENG_1","name":"[TOSventure] Challenge Portal Scroll","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":10,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_1712_SECOND_CHALLENG"}},{"itemId":10000033,"className":"EVENT_SECOND_CHALLENG_2","name":"[FLEX BOX] Challenge Portal Scroll","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":10,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_1712_SECOND_CHALLENG"}},{"itemId":10000034,"className":"EVENT_SECOND_CHALLENG_3","name":"[Goddess' Roulette] Challenge Portal Scroll","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":10,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_1712_SECOND_CHALLENG"}},{"itemId":10000037,"className":"Event_ChallengeModeReset_3","name":"[Goddess' Roulette] Challenge Mode One Entry Voucher","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000055,"className":"Event_Ability_Point_Stone_1000_1","name":"[FLEX BOX] Attribute Point 1,000","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000056,"className":"Event_Ability_Point_Stone_1000_2","name":"[Lucky Ticket] Attribute Point 1,000","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000057,"className":"Event_Ability_Point_Stone_1000_3","name":"[Goddess' Roulette] Attribute Points 1,000","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000061,"className":"Event_indunReset_Team_1","name":"[FLEX BOX] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000062,"className":"Event_indunReset_Team_2","name":"[Lucky Ticket] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000063,"className":"Event_indunReset_Team_3","name":"[Stamp Tour] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000067,"className":"test_Stone_500_14d","name":"Attribute Points: 500 (14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":500}},{"itemId":10000068,"className":"EVENT_SECOND_CHALLENG_4","name":"[Stamp Tour] Challenge Portal Scroll","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":10,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_1712_SECOND_CHALLENG"}},{"itemId":10000069,"className":"EVENT_SECOND_CHALLENG_5","name":"[Your Master] Challenge Portal Scroll","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":10,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_1712_SECOND_CHALLENG"}},{"itemId":10000070,"className":"EVENT_SECOND_CHALLENG_6","name":"[Event] Challenge Portal Scroll","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":10,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_1712_SECOND_CHALLENG"}},{"itemId":10000073,"className":"Event_ChallengeModeReset_6","name":"[Event] Challenge Mode One Entry Voucher","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000078,"className":"Event_indunReset_Team_5","name":"[Your Master] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000079,"className":"Event_indunReset_Team_6","name":"[Event] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000083,"className":"Event_Ability_Point_Stone_10000_4","name":"[Goddess' Roulette] Attribute Points 10,000","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000084,"className":"Event_Ability_Point_Stone_10000_5","name":"[Your Master] Attribute Points 10,000","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000085,"className":"Event_Ability_Point_Stone_10000_6","name":"[Event] Attribute Points 10,000","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000089,"className":"Event_Ability_Point_Stone_1000_4","name":"[Your Master] Attribute Points 1,000","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000092,"className":"Event_Ability_Point_Stone_10000_7","name":"[Event] Attribute Points 10,000","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000094,"className":"Event_ChallengeModeReset_7","name":"[Event] Challenge Mode One Entry Voucher","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000095,"className":"EVENT_SECOND_CHALLENG_7","name":"[Event] Challenge Portal Scroll","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":10,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_1712_SECOND_CHALLENG"}},{"itemId":10000096,"className":"Event_dungeoncount_7","name":"[Event] Instanced Dungeon Multiply Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000097,"className":"Event_indunReset_Team_7","name":"[Event] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000098,"className":"Event_Stone_500_1","name":"[Event] Attribute Points 500","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":500}},{"itemId":10000111,"className":"Event_Ability_Point_Stone_1000_5","name":"[Event] Attribute Points 1,000","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000115,"className":"Event_Stone_500_2","name":"[Full Moon] Attribute Points 500","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":500}},{"itemId":10000116,"className":"Event_dungeoncount_8","name":"[Full Moon] Instanced Dungeon Multiply Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000117,"className":"Event_indunReset_Team_8","name":"[Full Moon] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000118,"className":"Event_gemExpStone09_4","name":"[Full Moon] 7-Star Gem Abrasive","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000119,"className":"card_Xpupkit01_event_1","name":"[Full Moon] Old Enhancement Card","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":100,"sellPrice":1000,"equipType1":"None","minLevel":1},{"itemId":10000120,"className":"Event_Ability_Point_Stone_1000_6","name":"[Full Moon] Attribute Points 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000121,"className":"Event_Ability_Point_Stone_10000_8","name":"[Full Moon] Attribute Points 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000122,"className":"Event_ChallengeModeReset_8","name":"[Full Moon] Challenge Mode One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000123,"className":"EVENT_SECOND_CHALLENG_8","name":"[Full Moon] Challenge Portal Scroll","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":10,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_1712_SECOND_CHALLENG"}},{"itemId":10000127,"className":"Event_ChallengeModeReset_9","name":"[Harvest] Challenge Mode One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000128,"className":"Event_Ability_Point_Stone_10000_9","name":"[Harvest] Attribute Points 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000130,"className":"Event_Ability_Point_Stone_10000_10","name":"[EP12-2] Attribute Points 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ABILITY_STONE_UP","numArg1":10000}},{"itemId":10000131,"className":"Event_Ability_Point_Stone_1000_200","name":"[Halloween] Attribute Point 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000132,"className":"Event_Ability_Point_Stone_10000_200","name":"[Halloween] Attribute Point 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000133,"className":"Event_ChallengeModeReset_200","name":"[Halloween] Challenge Mode One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000138,"className":"Event_Ability_Point_Stone_10000_11","name":"[Growth Support] Attribute Points 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000139,"className":"Event_Ability_Point_Stone_1000_7","name":"[Growth Support] Attribute Points 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000145,"className":"Event_Stone_500_3","name":"[Growth Support] Attribute Points 500","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":500}},{"itemId":10000146,"className":"Event_ChallengeModeReset_10","name":"[Growth Support] Challenge Mode One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000147,"className":"Event_dungeoncount_9","name":"[Growth Support] Instanced Dungeon Multiply Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000149,"className":"Event_indunReset_Team_9","name":"[Growth Support] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000151,"className":"EVENT_Arts_Ability_Coupon_1","name":"[Growth Support] Attribute Point Voucher for Arts","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":36000}},{"itemId":10000153,"className":"Event_Ability_Point_Stone_1000_8","name":"[Attendance] Attribute Points 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000155,"className":"Event_ChallengeModeReset_11","name":"[Attendance] Challenge Mode One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000156,"className":"Event_Ability_Point_Stone_10000_12","name":"[Attendance] Attribute Points 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000158,"className":"Event_gemExpStone09_5","name":"[Attendance] 7-Star Gem Abrasive","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000160,"className":"Event_indunReset_Team_10","name":"[Attendance] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000161,"className":"Event_ChallengeModeReset_12","name":"[Guild Event] Challenge Mode One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000162,"className":"EVENT_SECOND_CHALLENG_11","name":"[Guild Event] Challenge Portal Scroll","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":10,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_1712_SECOND_CHALLENG"}},{"itemId":10000163,"className":"Event_Ability_Point_Stone_10000_13","name":"[Giltine] Attribute Points 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000164,"className":"Event_Ability_Point_Stone_1000_9","name":"[Giltine] Attribute Points 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000167,"className":"Event_indunReset_Team_11","name":"[Guild Event] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000168,"className":"Event_dungeoncount_10","name":"[Guild Event] Instanced Dungeon Multiply Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000174,"className":"EVENT_Coupon_Reagent_Bottle_Expup_100_6","name":"[5th Anniversary] Pamoka Solution EXP 2x Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"ITEM_Reagent_Bottle_Expup_100","numArg2":14400000}},{"itemId":10000180,"className":"Event_2011_TOS_Coin","name":"[Event] TOS Coin","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000181,"className":"Event_2011_5th_Coin","name":"[Event] 5th Anniversary Coin","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000184,"className":"Event_ChallengeModeReset_14","name":"[Fishing] Challenge Mode One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000185,"className":"Event_Ability_Point_Stone_1000_11","name":"[Fishing] Attribute Points 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000187,"className":"Event_Ability_Point_Stone_1000_201","name":"[Attendance] Attribute Points 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ABILITY_STONE_UP","numArg1":1000}},{"itemId":10000189,"className":"Event_ChallengeModeReset_201","name":"[Attendance] Challenge Mode One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000190,"className":"Event_Ability_Point_Stone_10000_201","name":"[Attendance] Attribute Points 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ABILITY_STONE_UP","numArg1":10000}},{"itemId":10000192,"className":"Event_gemExpStone09_201","name":"[Attendance] 7-Star Gem Abrasive","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000193,"className":"Event_Ability_Point_Stone_10000_15","name":"[EP.13] Attribute Point 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000195,"className":"Event_Ability_Point_Stone_1000_202","name":"[Harvest] Attribute Points 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000196,"className":"Event_Ability_Point_Stone_10000_202","name":"[Harvest] Attribute Points 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000197,"className":"Event_ChallengeModeReset_202","name":"[Harvest] Challenge Mode One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000199,"className":"Event_ChallengeModeReset_203","name":"[1st Anniversary] Challenge Mode One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000200,"className":"Event_Ability_Point_Stone_10000_203","name":"[1st Anniversary] Attribute Points 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ABILITY_STONE_UP","numArg1":10000}},{"itemId":10000206,"className":"Event_Ability_Point_Stone_10000_16","name":"[Yak Mambo] Attribute Point 10,000 ","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000207,"className":"Event_Ability_Point_Stone_1000_12","name":"[Yak Mambo] Attribute Point 1,000 ","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000208,"className":"Event_Ability_Point_Stone_100_1","name":"[Yak Mambo] Attribute Point 100 ","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":100}},{"itemId":10000209,"className":"Event_Ability_Point_Stone_5_1","name":"[Yak Mambo] Attribute Point 5 ","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":5}},{"itemId":10000213,"className":"Event_dungeoncount_12","name":"[Yak Mambo] Instanced Dungeon Multiply Token ","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000214,"className":"Event_gemExpStone09_7","name":"[Yak Mambo] 7-Star Gem Abrasive ","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000216,"className":"Event_ChallengeModeReset_15","name":"[Yak Mambo] Challenge Mode One Entry Voucher ","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000218,"className":"Event_2012_Key","name":"[Yak Mambo] Snowflake Key","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000219,"className":"Event_2012_Key_2","name":"[Yak Mambo] Golden Snowflake Key","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000220,"className":"Event_free_ap_return2","name":"[Yak Mambo] Attribute Point 1 Time Free Retrieval Voucher ","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000221,"className":"Event_ChallengeModeReset_204","name":"[Maru] Challenge Mode One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000222,"className":"Event_Ability_Point_Stone_10000_204","name":"[Maru] Attribute Points 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000223,"className":"Event_Stone_500_5","name":"[Supply] Attribute Points 500","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":500}},{"itemId":10000230,"className":"EVENT_SECOND_CHALLENG_9","name":"[Supply] Challenge Portal Scroll","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":10,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_1712_SECOND_CHALLENG"}},{"itemId":10000235,"className":"EVENT_Coupon_CONTENTS_TOTAL_POINT_BOOST_1","name":"[Supply] Contents Point Acquisition x2 Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"ITEM_Coupon_CONTENTS_TOTAL_POINT_BOOST","numArg2":7200000}},{"itemId":10000236,"className":"Event_2101_Ticket","name":"[Event] Kingdom Reconstruction Supply Voucher","type":"Etc","group":"Event","weight":0,"maxStack":999999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000237,"className":"Event_2101_NK1","name":"[Event] Necklace of Orsha's Refugee 1","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"Event_2101_SUPPLY_BUFF","numArg2":3600000}},{"itemId":10000238,"className":"Event_2101_NK2","name":"[Event] Necklace of Orsha's Refugee 2","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000239,"className":"Event_2101_NK3","name":"[Event] Necklace of Orsha's Refugee 3","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000243,"className":"EVENT_SECOND_CHALLENG_10","name":"[2021] Challenge Portal Scroll","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":10,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_1712_SECOND_CHALLENG"}},{"itemId":10000247,"className":"Event_dungeoncount_13","name":"[2021] Instanced Dungeon Multiply Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000248,"className":"Event_indunReset_Team_12","name":"[2021] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000250,"className":"Event_2101_lucky_Coin","name":"[Event] Lucky Coin","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000251,"className":"Event_2101_new_year_ticket","name":"[Event] New Years Ticket","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000252,"className":"Event_dungeoncount_14","name":"[Attendance] Instanced Dungeon Multiply Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000253,"className":"Event_indunReset_Team_13","name":"[Attendance] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000255,"className":"Event_2101_Buff_Item","name":"[Seollal] Sweet Crispy Yugwa","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"EVENT_2101_SEOLLAL_BUFF2","numArg2":1800000}},{"itemId":10000256,"className":"Event_Vibora_Ticket","name":"[Event] Vaivora Combine Voucher","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000257,"className":"EVENT_2102_CHOCO","name":"[Valentine] Sweet Chocolate","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"EVENT_2102_CHOCO_BUFF","numArg2":1800000}},{"itemId":10000287,"className":"Event_2102_Statue_repairkit","name":"[Event] Goddess Statue Repair Kit","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000288,"className":"reputation_relief_ep13_Event","name":"[Event] Reputation Coupon : 5","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000289,"className":"Event_2103_WhiteDay_Candy","name":"[Event] Lovey Dovey Candy","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000290,"className":"Event_2103_WhiteDay_Candy_SET","name":"[Event] Lovey Dovey Candy Basket","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000291,"className":"Event_LuckyBreak_AbilPoint_10k","name":"[Lucky Break] Attribute Points 1,000","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000294,"className":"Relic_exp_refine_conversion_Event","name":"[Event] Breath of Power Purifier","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000301,"className":"Event_Stone_500_7","name":"[Arbor Day] Attribute Points 500","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":500}},{"itemId":10000302,"className":"Event_dungeoncount_15","name":"[Arbor Day] Instanced Dungeon Multiply Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000305,"className":"Event_2103_ARBOR_DAY_coin1","name":"[Event] Arbor Day Sprout","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000306,"className":"Event_2103_ARBOR_DAY_coin2","name":"[Event] Essence - Leaf","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000307,"className":"Event_2103_ARBOR_DAY_coin3","name":"[Event] Essence - Twig","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000308,"className":"Event_2103_ARBOR_DAY_coin4","name":"[Event] Essence of Growth","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000309,"className":"Event_indunReset_Team_14","name":"[Arbor Day] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000310,"className":"EVENT_Arts_Ability_Coupon_2","name":"[Arbor Day] Attribute Point Voucher for Arts","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":36000}},{"itemId":10000311,"className":"Event_Stone_500_8","name":"[Theif] Attribute Points 500","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":500}},{"itemId":10000316,"className":"Event_2103_Buff_Item_jp","name":"[Theif] Case Note","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"EVENT_2103_POLICE_BUFF","numArg2":1800000}},{"itemId":10000317,"className":"Event_2103_jp_coin","name":"[Event] Stolen Belonging","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000351,"className":"Event_indunReset_Team_17","name":"[Campfire] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000352,"className":"Event_dungeoncount_18","name":"[Campfire] Instanced Dungeon Multiply Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000354,"className":"Event_2103_Camping_Note","name":"[Event] Traveler's Notebook","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000355,"className":"Event_2103_Camping_Coin1","name":"[Event] Stone of Fire","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000356,"className":"Event_2103_Camping_Coin2","name":"[Event] Fragment of Fire","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000357,"className":"Event_2103_Camping_Coin3","name":"[Event] High-quality Firewood","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000358,"className":"Event_2103_Camping_Quest","name":"[Event] Firewood Asked For","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000359,"className":"Event_2103_Camping_Coin4","name":"[Event] Spray","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000360,"className":"Event_2103_Camping_Campfire","name":"[Event] Bonfire","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1,"script":{"function":"SCR_EVENT_2105_CAMPING_CAMPFIRE_CREATE"}},{"itemId":10000363,"className":"Event_Stone_500_10","name":"[21Summer] Attribute Points 500","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":500}},{"itemId":10000364,"className":"Event_dungeoncount_19","name":"[21Summer] Instanced Dungeon Multiply Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000365,"className":"Event_indunReset_Team_18","name":"[21Summer] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000374,"className":"Event_2106_Coin","name":"[Event] Watermelon Coin","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000376,"className":"Event_2106_Medeina_Badge","name":"[Goddess Mask] Medeina Badge","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000377,"className":"Event_2106_Mask_Ticket","name":"[Goddess Mask] Mask Exchange Voucher","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000378,"className":"Event_Stone_500_11","name":"[Goddess Mask] Attribute Points 500","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":500}},{"itemId":10000384,"className":"Event_dungeoncount_20","name":"[FLEX BOX] Instanced Dungeon Multiply Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000385,"className":"Event_indunReset_Team_19","name":"[FLEX BOX] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000391,"className":"Event_Ability_Point_Stone_10000_26","name":"[FLEX BOX] Attribute Point 10,000","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000392,"className":"Event_Ability_Point_Stone_1000_205","name":"[Attendance] Attribute Points 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000394,"className":"Event_ChallengeModeReset_205","name":"[Attendance] Challenge Mode One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000395,"className":"Event_Ability_Point_Stone_10000_205","name":"[Attendance] Attribute Points 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000397,"className":"Event_indunReset_Team_205","name":"[Attendance] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000404,"className":"Event_dungeoncount_25","name":"[Renewed] Instanced Dungeon Multiply Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000405,"className":"Event_indunReset_Team_25","name":"[Renewed] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000407,"className":"Event_Ability_Point_Stone_10000_27","name":"[Renewed] Attribute Points 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000408,"className":"EVENT_Arts_Ability_Coupon_25","name":"[Renewed] Attribute Point Voucher for Arts","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":36000}},{"itemId":10000409,"className":"EVENT_2107_coin","name":"[Event] Renewed Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000410,"className":"Event_2107_Next_Key","name":"[Renewed] Pioneer's Key","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000413,"className":"Event_Stone_500_25","name":"[Renewed] Attribute Points 500","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":500}},{"itemId":10000414,"className":"Event_Ability_Point_Stone_5_25","name":"[Renewed] Attribute Points 5","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":5}},{"itemId":10000417,"className":"Event_dungeoncount_30","name":"[Event] Instanced Dungeon Multiply Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000418,"className":"Event_indunReset_Team_30","name":"[Event] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000419,"className":"Event_Ability_Point_Stone_10000_206","name":"[Watermelon Fishing] Attribute Points 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000421,"className":"Event_2107_coin_jp","name":"[Event] Angler Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000422,"className":"Event_2108_Compass","name":"[Event] Mysterious Compass","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1,"script":{"function":"SCR_EVENT_2108_ARCHEOLOGY_SEARCH"}},{"itemId":10000423,"className":"Event_2108_Box_S","name":"[Event] Unidentified Relic Box S","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000424,"className":"Event_2108_Box_A","name":"[Event] Unidentified Relic Box A","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000425,"className":"Event_2108_Relic_A_1","name":"[Event] Flawless Golden Goddess Statue S","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000426,"className":"Event_2108_Relic_A_2","name":"[Event] Cracked Golden Goddess Statue A","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000427,"className":"Event_2108_Relic_A_3","name":"[Event] Broken Golden Goddess Statue B","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000428,"className":"Event_2108_Relic_A_4","name":"[Event] Golden Goddess Statue Piece C","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000429,"className":"Event_2108_Relic_B_1","name":"[Event] Flawless Silver Goddess Statue S","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000430,"className":"Event_2108_Relic_B_2","name":"[Event] Cracked Silver Goddess Statue A","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000431,"className":"Event_2108_Relic_B_3","name":"[Event] Broken Silver Goddess Statue B","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000432,"className":"Event_2108_Relic_B_4","name":"[Event] Silver Goddess Statue Piece C","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000433,"className":"Event_2108_Relic_C_1","name":"[Event] Flawless Bronze Goddess Statue S","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000434,"className":"Event_2108_Relic_C_2","name":"[Event] Cracked Bronze Goddess Statue A","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000435,"className":"Event_2108_Relic_C_3","name":"[Event] Broken Bronze Goddess Statue B","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000436,"className":"Event_2108_Relic_C_4","name":"[Event] Bronze Goddess Statue Piece C","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000437,"className":"Event_2108_Ticket","name":"[Event] Archaeological Society Voucher","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000438,"className":"Event_dungeoncount_31","name":"[Gold Fishing] Instanced Dungeon Multiply Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000439,"className":"Event_indunReset_Team_31","name":"[Gold Fishing] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000443,"className":"Event_dungeoncount_32","name":"[Relic] Instanced Dungeon Multiply Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000444,"className":"Event_indunReset_Team_32","name":"[Relic] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000445,"className":"Event_Stone_500_32","name":"[Relic] Attribute Points 500","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":500}},{"itemId":10000448,"className":"Event_Ability_Point_Stone_10000_207","name":"[Eve] Attribute Points 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000451,"className":"Event_2109_coin","name":"[Event] Full Moon Coin","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000452,"className":"Event_2109_Gold_coin","name":"Moon Rabbit Achievement Coin","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000459,"className":"Event_Ability_Point_Stone_10000_33","name":"[Rabbit] Attribute Points 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000462,"className":"Event_dungeoncount_33","name":"[Rabbit] Instanced Dungeon Multiply Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000463,"className":"Event_indunReset_Team_33","name":"[Rabbit] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000466,"className":"Event_Ability_Point_Stone_5_33","name":"[Rabbit] Attribute Points 5","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":5}},{"itemId":10000477,"className":"Event_2111_Stew_Ingredient","name":"[Event] Cooking Material Box","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000478,"className":"Event_2111_Stew_Pumpkin1","name":"[Event] Sloppy Pumpkin Stew {img star_mark 20 20}","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000479,"className":"Event_2111_Stew_Pumpkin2","name":"[Event] Pumpkin Stew {img star_mark 20 20}{img star_mark 20 20}","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000480,"className":"Event_2111_Stew_Pumpkin3","name":"[Event] Perfect Pumpkin Stew {img star_mark 20 20}{img star_mark 20 20}{img star_mark 20 20}","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_BUFF_EVENT_2110_KLAPEDA_GHOST"}},{"itemId":10000481,"className":"Event_2111_Pumpkin_candy","name":"[Event] Halloween Treat Basket","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000485,"className":"Event_dungeoncount_34","name":"[Halloween] Instanced Dungeon Multiply Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000486,"className":"Event_indunReset_Team_34","name":"[Halloween] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000489,"className":"Event_Ability_Point_Stone_5_34","name":"[Halloween] Attribute Point 5","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":5}},{"itemId":10000490,"className":"Event_Stone_500_34","name":"[Halloween] Attribute Point 500","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":500}},{"itemId":10000492,"className":"Event_Ability_Point_Stone_10000_34","name":"[Halloween] Attribute Point 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000495,"className":"Event_2111_Steamed_buns","name":"[Event] Steamed Bun","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_BUFF_EVENT_2111_STEAMED_BUNS"}},{"itemId":10000496,"className":"Event_2111_Grilled_Steamed_buns","name":"[Event] Roasted Bun","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_BUFF_EVENT_2111_GRILLED_STEAMED_BUNS"}},{"itemId":10000500,"className":"Event_dungeoncount_37","name":"[Toasty] Instanced Dungeon Multiply Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000501,"className":"Event_indunReset_Team_37","name":"[Toasty] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000504,"className":"Event_Ability_Point_Stone_5_37","name":"[Toasty] Attribute Point 5","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":5}},{"itemId":10000506,"className":"Event_Stone_500_37","name":"[Toasty] Attribute Point 500","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":500}},{"itemId":10000508,"className":"EVENT_2111_Winter_Coin","name":"[Event] Roasted Sweet Potato Coin","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000510,"className":"Achieve_Ability_Point_Stone_10000_Team","name":"[Achievement] Attribute Points 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000516,"className":"Event_Ability_Point_Stone_10000_38","name":"[Stamp] Attribute Points 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000524,"className":"Event_dungeoncount_39","name":"[6th] Instanced Dungeon Multiply Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000525,"className":"Event_indunReset_Team_39","name":"[6th] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000528,"className":"Event_Ability_Point_Stone_5_39","name":"[6th] Attribute Points 5","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":5}},{"itemId":10000529,"className":"EVENT_2112_6th_Coin","name":"[Event] 6th Anniversary Coin","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000531,"className":"Event_Ability_Point_Stone_10000_39","name":"[6th] Attribute Points 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000555,"className":"Event_dungeoncount_38","name":"[Stamp] Instanced Dungeon Multiply Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000556,"className":"Event_indunReset_Team_38","name":"[Stamp] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000560,"className":"Event_Ability_Point_Stone_10000_40","name":"[Event] Attribute Point 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000566,"className":"Event_dungeoncount_41","name":"[Berk's Visit] Instanced Dungeon Multiply Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000567,"className":"Event_indunReset_Team_41","name":"[Berk's Visit] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000570,"className":"Event_Ability_Point_Stone_5_41","name":"[Berk's Visit] Attribute Points 5","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":5}},{"itemId":10000571,"className":"EVENT_2201_Coin","name":"[Event] 2022 Coin","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000573,"className":"Event_Ability_Point_Stone_10000_41","name":"[Seollal] Attribute Points 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000577,"className":"Event_Ability_Point_Stone_10000_42","name":"[Toasty] Attribute Point 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000578,"className":"Event_Ability_Point_Stone_10000_limit","name":"[Rabbit] Attribute Points 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10000579,"className":"Event_misc_pvpmine2_Ticket_5000_limit","name":"[Rabbit] Mercenary Badge Voucher: 5,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":5000}},{"itemId":10000580,"className":"Event_Contents_total_point_boost_Coupon_limit","name":"[Rabbit] Contents Point Acquisition x2 Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"ITEM_Coupon_CONTENTS_TOTAL_POINT_BOOST","numArg2":7200000}},{"itemId":10000581,"className":"Event_ChallengeExpertModeCountUp_limit","name":"[Rabbit] Division Singularity One Entry Voucher","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeExpertModeCountUp"}},{"itemId":10000582,"className":"Event_Multiple_Token_MythicHARD_limit","name":"[Rabbit] Res Sacrae Raid: Auto/Solo (Hard) Add. Reward Voucher","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto_Hard","numArg1":2}},{"itemId":10000583,"className":"Event_Elixir_Box_limit","name":"[Rabbit] Event Elixir Box","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Drug_RedApple20/10;Event_Drug_BlueApple20/10;"}},{"itemId":10000585,"className":"Event_awakeningStone_limit","name":"[Rabbit] Premium Awakening Stone","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000586,"className":"Event_misc_reinforce_percentUp_480_NoTrade_limit","name":"[Rabbit] [Lv.480] Enhance Aid","type":"Etc","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"reinforce_percentUp","numArg1":480}},{"itemId":10000587,"className":"Event_misc_Enchant_460_NoTrade_limit","name":"[Rabbit] [Lv.460] Goddess Enchant Jewel","type":"Etc","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Enchant","numArg1":460}},{"itemId":10000588,"className":"Event_misc_Engrave_460_NoTrade_limit","name":"[Rabbit] [Lv.460] Engrave Stone","type":"Etc","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Engrave","numArg1":460,"numArg2":5}},{"itemId":10000589,"className":"Event_Ability_Point_Stone_1000_limit","name":"[Rabbit] Attribute Points 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10000592,"className":"Event_Ticket_Mythic_Auto_limit","name":"[Rabbit] Res Sacrae Raid: Auto/Solo (Normal) One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":812}},{"itemId":10000593,"className":"Event_Multiple_Token_MythicAuto_limit","name":"[Rabbit] Res Sacrae Raid: Auto/Solo (Normal) Multiply Token","type":"Etc","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto","numArg1":2}},{"itemId":10000594,"className":"Event_misc_pvpmine2_Ticket_1000_limit","name":"[Rabbit] Mercenary Badge Voucher: 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":1000}},{"itemId":10000595,"className":"Event_dungeoncount_limit","name":"[Rabbit] Instanced Dungeon Multiply Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000596,"className":"Event_indunReset_limit","name":"[Rabbit] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000597,"className":"Event_Ability_Point_Stone_5_limit","name":"[Rabbit] Attribute Points 5","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":5}},{"itemId":10000598,"className":"Event_ChallengeModeReset_limit","name":"[Rabbit] Challenge Mode One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10000601,"className":"Event_Sandra_Glass_460_limit","name":"[Rabbit] [Lv.460] Sandra's Magnifier","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass","numArg1":460}},{"itemId":10000602,"className":"Event_Sandra_Glass_1line_460_limit","name":"[Rabbit] [Lv.460] Sandra's Detailed Magnifier","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line","numArg1":460}},{"itemId":10000603,"className":"Event_Master_Glass_460_limit","name":"[Rabbit] [Lv.460] Artisan Magnifier","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass","numArg1":460}},{"itemId":10000604,"className":"Event_Mystic_Glass_460_limit","name":"[Rabbit] [Lv.460] Mysterious Magnifier","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass","numArg1":460}},{"itemId":10000605,"className":"Event_card_Xpupkit10_limit","name":"[Rabbit] Lv 10 Enhancement Card","type":"Etc","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000606,"className":"Event_SoloRaidCntReset_limit","name":"[Rabbit] Sole Hunt One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_FreeDungeon_Solo_Raid_Cnt","strArg":"SoloRaidCntReset_Team","numArg1":1}},{"itemId":10000607,"className":"Event_misc_pvpmine2_Ticket_10000_limit","name":"[Rabbit] Mercenary Badge Voucher: 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":10000}},{"itemId":10000608,"className":"Event_Abrasive_460_NoTrade_limit","name":"[Rabbit] [Lv.460] Awakening Abrasive","type":"Etc","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbrasiveStone","numArg1":460}},{"itemId":10000609,"className":"Event_misc_gemExpStone8_limit","name":"[Rabbit] 8-Star Gem Abrasive","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000617,"className":"Event_2210_Halloween_candy","name":"[Event] Halloween Treat","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000618,"className":"Event_2210_Stew_Ingredient","name":"[Halloween] Ingredient Box","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000622,"className":"Event_2210_Costume_Cloth","name":"[Halloween] Ghostly Fabric","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000624,"className":"Event_2212_Gold_Key","name":"[Event] Golden Snowflake Key","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000626,"className":"Event_2301_NewyearCoin","name":"QUEST_20230102_014538","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000628,"className":"Event_2304_ARBOR_DAY_coin","name":"QUEST_20230410_014654","type":"Etc","group":"Event","weight":0,"maxStack":9999999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000629,"className":"Event_2304_ARBOR_DAY_fertilizer","name":"QUEST_20230410_014651","type":"Etc","group":"Event","weight":0,"maxStack":999999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000630,"className":"Event_2304_ARBOR_DAY_BOX1","name":"[Arbor Day] Ripe Fruit Lv.1","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":350,"script":{"function":"SCR_USE_ARBOR_DAY_BOX","strArg":"misc_vasilisa_NoTrade/5000;misc_reinforce_percentUp_470_NoTrade/1000;open_ticket_cabinet_vibora_lv4/1;open_ticket_cabinet_goddess_lv3/4;Relic_exp_token_refine/3620;GabijaCertificateCoin_50000p/10;"}},{"itemId":10000631,"className":"Event_2304_ARBOR_DAY_BOX2","name":"[Arbor Day] Ripe Fruit Lv.2","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":350,"script":{"function":"SCR_USE_ARBOR_DAY_BOX","strArg":"VakarineCertificateCoin_10000p/10;GabijaCertificateCoin_50000p/10;Event_ChallengeModeReset_6/20;open_ticket_cabinet_ark/1;ark_lvup_scroll_lv10/1;"}},{"itemId":10000632,"className":"Event_2304_ARBOR_DAY_BOX3","name":"[Arbor Day] Ripe Fruit Lv.3","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":350,"script":{"function":"SCR_USE_ARBOR_DAY_BOX","strArg":"VakarineCertificateCoin_10000p/10;misc_pvp_mine2_NotLimit_10000/5;piece_EP14_GoddessIcor_Armor_high_NoTrade_Belonging/1;ChallengeExpertModeCountUp_NoTrade/10;Ticket_RevivalPaulius_Auto_Enter_NoTrade/10;"}},{"itemId":10000633,"className":"Event_2304_ARBOR_DAY_BOX4","name":"[Arbor Day] Ripe Fruit Lv.4","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":350,"script":{"function":"SCR_USE_ARBOR_DAY_BOX","strArg":"VakarineCertificateCoin_10000p/10;misc_pvp_mine2_NotLimit_10000/5;piece_EP14_GoddessIcor_Weapon_high_NoTrade_Belonging/1;Ticket_TurbulentCore_Auto_Enter_NoTrade/10;Ticket_Rozethemisterable_Auto_Enter_NoTrade/10;"}},{"itemId":10000634,"className":"Event_2304_ARBOR_DAY_BOX5","name":"[Arbor Day] Ripe Fruit Lv.5","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":350,"script":{"function":"SCR_USE_ARBOR_DAY_BOX","strArg":"VakarineCertificateCoin_10000p/10;misc_pvp_mine2_NotLimit_10000/5;piece_fierce_shoulder_high_NoTrade_Belonging/2;piece_penetration_belt_high_Belonging/1;"}},{"itemId":10000635,"className":"Event_2304_ARBOR_DAY_BOX6","name":"[Arbor Day] Ripe Fruit Lv.6","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":350,"script":{"function":"SCR_USE_ARBOR_DAY_BOX","strArg":"misc_reinforce_percentUp_490_NoTrade/100;Ticket_TurbulentCore_Auto_Enter_NoTrade/5;Ticket_Rozethemisterable_Auto_Enter_NoTrade/5;Ticket_Rozethemisterable_Party_Enter_NoTrade/2;piece_EP14_GoddessIcor_Armor_high_NoTrade_Belonging/3;piece_EP14_GoddessIcor_Weapon_high_NoTrade_Belonging/3;"}},{"itemId":10002000,"className":"Event_Ability_Point_Stone_10000_limit_1","name":"[New Year] Attribute Points 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10002001,"className":"Event_misc_pvpmine2_Ticket_5000_limit_1","name":"[New Year] Mercenary Badge Voucher: 5,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":5000}},{"itemId":10002002,"className":"Event_Contents_total_point_boost_Coupon_limit_1","name":"[New Year] Contents Point Acquisition x2 Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"ITEM_Coupon_CONTENTS_TOTAL_POINT_BOOST","numArg2":7200000}},{"itemId":10002003,"className":"Event_ChallengeExpertModeCountUp_limit_1","name":"[New Year] Division Singularity One Entry Voucher","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeExpertModeCountUp"}},{"itemId":10002004,"className":"Event_Multiple_Token_MythicHARD_limit_1","name":"[New Year] Res Sacrae Raid: Auto(Hard) Add. Reward Voucher","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto_Hard","numArg1":2}},{"itemId":10002005,"className":"Event_Elixir_Box_limit_1","name":"[New Year] Event Elixir Box","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Drug_RedApple20/10;Event_Drug_BlueApple20/10;"}},{"itemId":10002007,"className":"Event_awakeningStone_limit_1","name":"[New Year] Premium Awakening Stone","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10002008,"className":"Event_misc_reinforce_percentUp_480_NoTrade_limit_1","name":"[New Year] [Lv.480] Enhance Aid","type":"Etc","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"reinforce_percentUp","numArg1":480}},{"itemId":10002009,"className":"Event_misc_Enchant_460_NoTrade_limit_1","name":"[New Year] [Lv.460] Goddess Enchant Jewel","type":"Etc","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Enchant","numArg1":460}},{"itemId":10002010,"className":"Event_misc_Engrave_460_NoTrade_limit_1","name":"[New Year] [Lv.460] Engrave Stone","type":"Etc","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Engrave","numArg1":460,"numArg2":5}},{"itemId":10002011,"className":"Event_Ability_Point_Stone_1000_limit_1","name":"[New Year] Attribute Points 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10002014,"className":"Event_Ticket_Mythic_Auto_limit_1","name":"[New Year] Res Sacrae Raid: Auto/Solo(Normal) One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":812}},{"itemId":10002015,"className":"Event_Multiple_Token_MythicAuto_limit_1","name":"[New Year] Res Sacrae Raid: Auto/Solo (Normal) Multiply Token","type":"Etc","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto","numArg1":2}},{"itemId":10002016,"className":"Event_misc_pvpmine2_Ticket_1000_limit_1","name":"[New Year] Mercenary Badge Voucher: 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":1000}},{"itemId":10002017,"className":"Event_dungeoncount_limit_1","name":"[New Year] Instanced Dungeon Multiply Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10002018,"className":"Event_indunReset_limit_1","name":"[New Year] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10002019,"className":"Event_Ability_Point_Stone_5_limit_1","name":"[New Year] Attribute Points 5","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":5}},{"itemId":10002020,"className":"Event_ChallengeModeReset_limit_1","name":"[New Year] Challenge Mode One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10002023,"className":"Event_Sandra_Glass_460_limit_1","name":"[New Year] [Lv.460] Sandra's Magnifier","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass","numArg1":460}},{"itemId":10002024,"className":"Event_Sandra_Glass_1line_460_limit_1","name":"[New Year] [Lv.460] Sandra's Detailed Magnifier","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line","numArg1":460}},{"itemId":10002025,"className":"Event_Master_Glass_460_limit_1","name":"[New Year] [Lv.460] Artisan Magnifier","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass","numArg1":460}},{"itemId":10002026,"className":"Event_Mystic_Glass_460_limit_1","name":"[New Year] [Lv.460] Mysterious Magnifier","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass","numArg1":460}},{"itemId":10002027,"className":"Event_card_Xpupkit10_limit_1","name":"[New Year] Lv 10 Enhancement Card","type":"Etc","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10002028,"className":"Event_SoloRaidCntReset_limit_1","name":"[New Year] Sole Hunt One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_FreeDungeon_Solo_Raid_Cnt","strArg":"SoloRaidCntReset_Team","numArg1":1}},{"itemId":10002029,"className":"Event_misc_pvpmine2_Ticket_10000_limit_1","name":"[New Year] Mercenary Badge Voucher: 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":10000}},{"itemId":10002030,"className":"Event_Abrasive_460_NoTrade_limit_1","name":"[New Year] [Lv.460] Awakening Abrasive","type":"Etc","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbrasiveStone","numArg1":460}},{"itemId":10002031,"className":"Event_misc_gemExpStone8_limit_1","name":"[New Year] 8-Star Gem Abrasive","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10003004,"className":"Event_irredians_accessory_box","name":"[Event] Hunting Ground Accessory Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003016,"className":"Event_Roulette_Draconas_box","name":"[Event] Drakonas Accessory Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003017,"className":"Event_Roulette_Boruta_box","name":"[Event] Boruta Seal Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003018,"className":"Event_Roulette_Baleuna_box_1","name":"[Event] 11 EHN 10 TRA Varna Weapon Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003019,"className":"Event_Roulette_Baleuna_box_2","name":"[Event] 11 EHN 10 TRA Varna Armor Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003020,"className":"Event_Roulette_moring_box","name":"[Event] Moringponia Unique Accessory Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003021,"className":"Event_Roulette_Seukia_box_1","name":"[Event] Skiaclipse Unique Weapon Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003022,"className":"Event_Roulette_Seukia_box_2","name":"[Event] Skiaclipse Unique Armor Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003023,"className":"Event_Roulette_Ignas_box_1","name":"[Event] Igans Armor Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003024,"className":"Event_Roulette_Asio_box","name":"[Event] Asio Weapon Selection Box ","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003025,"className":"Event_Roulette_Wastrel_box","name":"[Event] Wastrel Weapon Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003029,"className":"Event_RankReset_Point_Lv4_90d","name":"[Event] Class Change Voucher Lv. 4 (90 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"EVENT_RankReset_Point_Lv4","numArg1":3000}},{"itemId":10003055,"className":"Event_Witch_hat_accessory_box","name":"[Event] Ribbon Witch Hat Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003065,"className":"EVENT_2008_costume","name":"[Event] Watermelon Costume Box","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003128,"className":"EVENT_2009_GILTINE_REWARD_BOX","name":"Giltine's Gift Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ancient_CardBook_Choice/1;misc_pvp_mine2/500;Ability_Point_Stone_1000_14d_Team/2;Event_Drug_RedApple20/10;Event_Drug_BlueApple20/10;"}},{"itemId":10003129,"className":"Event_2009_Chursok_Police_Box","name":"[Event] Policeman Costume Box (Permanent)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003130,"className":"Event_2009_Chursok_Police_Box_14d","name":"[Event] Policeman Costume Box (14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003131,"className":"Event_2009_Chursok_hanbok_Box","name":"[Event] Full Moon Hanbok Costume Box (Unlimited)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003132,"className":"Event_2009_Chursok_hanbok_Box_14d","name":"[Event] Full Moon Hanbok Costume Box (14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003135,"className":"Event_Roulette_Moringponia_box_1","name":"+11 ENH and Stage 10 TRA Moringponia Legend Accessory Box","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Roulette_Moringponia_box_2/1;Event_Roulette_Moringponia_box_3/2;"}},{"itemId":10003136,"className":"Event_Roulette_Moringponia_box_2","name":"+11 ENH and Stage 10 TRA Moringponia Legend Accessory Selection Box (Necklace)","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003137,"className":"Event_Roulette_Moringponia_box_3","name":"+11 ENH and Stage 10 TRA Moringponia Legend Accessory Box (Bracelet)","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003138,"className":"Event_Roulette_Effect_box_1","name":"[Event] Effect Costume Selection Box","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003139,"className":"Event_Roulette_Costume_box_1","name":"[Event] Costume Selection Box","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003140,"className":"Event_Roulette_10LV_gemExpStone_box_1","name":"[Event] Shining LV 10 Gem Abrasive Box","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_gemExpStone12/5;"}},{"itemId":10003147,"className":"Event_Roulette_Disnai_box_1","name":"[Event] Savinose Dysnai All-in-One Box","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"20Season_Disnai_Weapon_box/2;20Season_Disnai_Aromor_box/4;"}},{"itemId":10003148,"className":"Event_2010_LVUP_Box_1","name":"[Event] Level Up Chest (Lv. 15)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":15,"script":{"function":"SCR_USE_EVENT_2010_LVUP_BOX_1"}},{"itemId":10003149,"className":"Event_2010_LVUP_Box_2","name":"[Event] Level Up Chest (Lv. 40)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":40,"script":{"function":"SCR_USE_EVENT_2010_LVUP_BOX_2"}},{"itemId":10003150,"className":"Event_2010_LVUP_Box_3","name":"[Event] Level Up Chest (Lv. 75)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":75,"script":{"function":"SCR_USE_EVENT_2010_LVUP_BOX_3"}},{"itemId":10003151,"className":"Event_2010_LVUP_Box_4","name":"[Event] Level Up Chest (Lv. 120)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":120,"script":{"function":"SCR_USE_EVENT_2010_LVUP_BOX_4"}},{"itemId":10003152,"className":"Event_2010_LVUP_Box_5","name":"[Event] Level Up Chest (Lv. 170)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":170,"script":{"function":"SCR_USE_EVENT_2010_LVUP_BOX_5"}},{"itemId":10003153,"className":"Event_2010_LVUP_Box_6","name":"[Event] Level Up Chest (Lv. 220)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":220,"script":{"function":"SCR_USE_EVENT_2010_LVUP_BOX_6"}},{"itemId":10003154,"className":"Event_2010_LVUP_Box_7","name":"[Event] Level Up Chest (Lv. 270)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":270,"script":{"function":"SCR_USE_EVENT_2010_LVUP_BOX_7"}},{"itemId":10003155,"className":"Event_2010_LVUP_Box_8","name":"[Event] Level Up Chest (Lv. 315)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":315,"script":{"function":"SCR_USE_EVENT_2010_LVUP_BOX_8"}},{"itemId":10003156,"className":"Event_2010_LVUP_Box_9","name":"[Event] Level Up Chest (Lv. 350)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":330,"script":{"function":"SCR_USE_EVENT_2010_LVUP_BOX_9"}},{"itemId":10003157,"className":"Event_2010_LVUP_Box_10","name":"[Event] Level Up Chest (Lv. 380)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":380,"script":{"function":"SCR_USE_EVENT_2010_LVUP_BOX_10"}},{"itemId":10003158,"className":"Event_2010_LVUP_Box_11","name":"[Event] Level Up Chest (Lv. 400)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":400,"script":{"function":"SCR_USE_EVENT_2010_LVUP_BOX_11"}},{"itemId":10003159,"className":"Event_2010_LVUP_Box_12","name":"[Event] Level Up Chest (Lv. 420)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":420,"script":{"function":"SCR_USE_EVENT_2010_LVUP_BOX_12"}},{"itemId":10003160,"className":"Event_2010_Enchant_Jewel_Box_1","name":"[Event] Enchant Jewel Box","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Legend_Enchant_Jewel_450_2/1;event_Unique_Enchant_Jewel_440_1/5;"}},{"itemId":10003161,"className":"Event_2010_MORU_BOX_1","name":"[Growth Support] Advanced Anvil Box","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Ruby_event_9/3;Moru_Event_Gold_6/10;"}},{"itemId":10003162,"className":"Event_2010_Coin_Ticket","name":"[Growth Support] Mercenary Badge Voucher","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_pvp_mine2/1000;"}},{"itemId":10003163,"className":"Event_2010_LVUP_ABILITY_BOX_1","name":"[Event] Day by Day Attribute Point Box","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Event_2010_LVUP_ABILITY_BOX_1"}},{"itemId":10003175,"className":"Event_2010_Coin_Ticket_2","name":"[Attendance] Mercenary Badge Voucher","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_pvp_mine2/1000;"}},{"itemId":10003208,"className":"Event_2010_Enchant_Jewel_Box_2","name":"[Event] Enchant Jewel Box","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Legend_Enchant_Jewel_450_2/1;event_Unique_Enchant_Jewel_440_1/5;"}},{"itemId":10003210,"className":"Event_Halloween_select_box","name":"[Halloween] Costume Selection Box","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003211,"className":"Event_2010_Coin_Ticket_3","name":"Mercenary Badge Voucher","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":500}},{"itemId":10003221,"className":"Event_Coin_Ticket_500_1","name":"[5th Anniversary] Mercenary Badge Voucher : 500","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_pvp_mine2/500;"}},{"itemId":10003223,"className":"Event_Transcend_Old_Scroll_8_440Lv_Wp","name":"[Lv. 440] Shabby Transcendence Stage 8 Scroll - Weapon (90 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_440_Weapon_Old","numArg1":8,"numArg2":100}},{"itemId":10003224,"className":"Event_Transcend_Old_Scroll_8_440Lv_Amr","name":"[Lv. 440] Shabby Transcendence Stage 8 Scroll - Armor (90 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_440_Armor_Old","numArg1":8,"numArg2":100}},{"itemId":10003225,"className":"Event_Transcend_Old_Scroll_8_440Lv_Acc","name":"[Lv. 440] Shabby Transcendence Stage 8 Scroll- Accessory (90 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_440_Accessory_Old","numArg1":8,"numArg2":100}},{"itemId":10003228,"className":"Event_Coin_Ticket_500_2","name":"[Fishing] Mercenary Badge Voucher : 500","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_pvp_mine2/500;"}},{"itemId":10003252,"className":"Event_2011_Coin_Ticket_200","name":"[Attendance] Mercenary Badge Voucher","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_pvp_mine2/1000;"}},{"itemId":10003254,"className":"Event_Coin_Ticket_1000_1","name":"[EP.13] Mercenary Badge Voucher : 1,000","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_pvp_mine2/1000;"}},{"itemId":10003255,"className":"Event_Coin_Ticket_10000_1","name":"[EP.13] Mercenary Badge Voucher : 10,000","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_pvp_mine2/10000;"}},{"itemId":10003256,"className":"Event_2011_Coin_Ticket_201","name":"[Harvest] Mercenary Badge Voucher","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_pvp_mine2/1000;"}},{"itemId":10003257,"className":"Event_2011_Coin_Ticket_202","name":"[1st Anniversary] Mercenary Badge Voucher","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_pvp_mine2/1000;"}},{"itemId":10003272,"className":"Tuto_coin_ticket","name":"[Tutorial] Mercenary Badge Voucher : 500","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":500}},{"itemId":10003274,"className":"Event_Coin_Ticket_500_3","name":"[Yak Mambo] Mercenary Badge Voucher : 500 ","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_pvp_mine2/500;"}},{"itemId":10003275,"className":"Event_Coin_Ticket_1000_2","name":"[Yak Mambo] Mercenary Badge Voucher : 1,000 ","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_pvp_mine2/1000;"}},{"itemId":10003277,"className":"Event_Extract_kit_box_1","name":"[Yak Mambo] Advanced Extraction Kit Box ","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Extract_kit_Sliver_Team_9/10;Extract_kit_Gold_Team_11/5;"}},{"itemId":10003279,"className":"Event_2012_gold_Box_2","name":"[Yak Mambo] Golden Winter Festival Set(Box + Key) ","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EVENT_2012_gold_Box_1/1;Event_2012_Key_2/1;"}},{"itemId":10003280,"className":"EVENT_2012_gold_Box_1","name":"[Yak Mambo] Golden Winter Festival Box","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_EVENT_YAK_Box_TX","strArg":"EVENT_2012_gold_Box_1"}},{"itemId":10003281,"className":"EVENT_2012_Box_1","name":"[Yak Mambo] Winter Festival Box","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_EVENT_YAK_Box_TX","strArg":"EVENT_2012_Box_1"}},{"itemId":10003282,"className":"EVENT_2012_X_MAS_Box_1","name":"[Yak Mambo] Christmas Winter Festival Box","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_EVENT_YAK_Box_TX","strArg":"EVENT_2012_X_MAS_Box_1"}},{"itemId":10003283,"className":"EVENT_2012_New_Year_Box_1","name":"[Yak Mambo] 2021 New Years Attendance Box","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_2012_Nwe_Year_Box_1"}},{"itemId":10003285,"className":"Event_2012_MORU_BOX_1","name":"[Yak Mambo] Advanced Anvil Box ","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Ruby_event_14/5;Moru_Event_Gold_9/10;"}},{"itemId":10003293,"className":"Event_2011_Coin_Ticket_203","name":"[Maru] Mercenary Badge Voucher","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_pvp_mine2/5000;"}},{"itemId":10003295,"className":"Event_Coin_Ticket_5000","name":"Mercenary Badge Voucher : 5000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":5000}},{"itemId":10003296,"className":"Event_Transcend_Scroll_8_440Lv_Weapon_Ev","name":"[Lv. 440] Event Transcendence Stage 8 Scroll - Weapon (30 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_2011_5TH_TRANSCEND","strArg":"transcend_Set_440_Weapon_Ev","numArg1":8,"numArg2":100}},{"itemId":10003297,"className":"Event_Transcend_Scroll_8_440Lv_Armor_Ev","name":"[Lv. 440] Event Transcendence Stage 8 Scroll - Armor (30 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_2011_5TH_TRANSCEND","strArg":"transcend_Set_440_Armor_Ev","numArg1":8,"numArg2":100}},{"itemId":10003300,"className":"Event_Coin_Ticket_500_4","name":"[Supply] Mercenary Badge Voucher : 500","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":500}},{"itemId":10003301,"className":"Event_RankReset_Point_Lv1_90d_1","name":"[Supply] Class Change Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"EVENT_RankReset_Point_Lv3","numArg1":100}},{"itemId":10003302,"className":"Event_2101_Elixir_Box","name":"[Supply] Event Elixir Box","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Drug_RedApple20_Event_5/10;Drug_BlueApple20_Event_5/10;"}},{"itemId":10003304,"className":"Event_Transcend_Scroll_5_440Lv_Weapon_1","name":"[Lv. 440] Transcendence Stage 5 Scroll - Weapon (30 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_440_Weapon","numArg1":5,"numArg2":100}},{"itemId":10003305,"className":"Event_Transcend_Scroll_5_440Lv_Armor_1","name":"[Lv. 440] Transcendence Stage 5 Scroll - Armor (30 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_440_Armor","numArg1":5,"numArg2":100}},{"itemId":10003306,"className":"Event_Transcend_Scroll_5_440Lv_Accessory_1","name":"[Lv. 440] Transcendence Stage 5 Scroll - Accessory (30 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_440_Accessory","numArg1":5,"numArg2":100}},{"itemId":10003307,"className":"Event_Coin_Ticket_1000_3","name":"[Supply] Mercenary Badge Voucher : 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":1000}},{"itemId":10003308,"className":"EVENT_2101_Transcend_Scroll_Box","name":"[Supply] Transcendence Scroll Random Box","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"EVENT_2012_Transcend_Scroll_Box_1"}},{"itemId":10003314,"className":"Event_Coin_Ticket_100_1","name":"[2021] Mercenary Badge Voucher: 100","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":100}},{"itemId":10003315,"className":"Event_Coin_Ticket_1000_4","name":"[2021] Mercenary Badge Voucher: 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":1000}},{"itemId":10003316,"className":"Event_Transcend_Scroll_Choice_box","name":"[2021] Shabby Transcendence Scroll Selection Box ","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003317,"className":"Event_2012_Costume_box_1","name":"[Event]Honored Rose Yellow Costume Selection Box","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003334,"className":"Event_Roulette_Draconas_box_Neck","name":"[Event] Drakonas Necklace Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003335,"className":"Event_Roulette_Draconas_box_Bracelet","name":"[Event] Drakonas Bracelet Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003336,"className":"Event_Roulette_Moringponia_box_Neck","name":"[Event] Moringponia Necklace Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003337,"className":"Event_Roulette_Moringponia_box_Bracelet","name":"[Event] Moringponia Bracelet Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003339,"className":"Event_Coin_Ticket_10000_2","name":"[Seollal] Mercenary Badge Voucher : 10,000","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":10000}},{"itemId":10003353,"className":"Event_2103_Elixir_Box","name":"[Lovey Dovey] Event Elixir Box","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Drug_RedApple20_Event_6/10;Drug_BlueApple20_Event_6/10;"}},{"itemId":10003354,"className":"Event_Coin_Ticket_1000_5","name":"[Lovey Dovey] Mercenary Badge Voucher : 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":1000}},{"itemId":10003355,"className":"Event_Coin_Ticket_1000_6","name":"[Goddess Statue] Mercenary Badge Voucher : 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_pvp_mine2/1000;"}},{"itemId":10003371,"className":"Event_Coin_Ticket_1000_7","name":"[Arbor Day] Mercenary Badge Voucher : 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_pvp_mine2/1000;"}},{"itemId":10003372,"className":"Event_2103_Elixir_Box_2","name":"[Arbor Day] Event Elixir Box","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Drug_RedApple20_Event_7/10;Drug_BlueApple20_Event_7/10;"}},{"itemId":10003373,"className":"Event_Ark_SelectBox_LV6","name":"[Event] Ark Selection Box - Lv6","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003374,"className":"Event_Ark_SelectBox_LV10","name":"[Event] Ark Selection Box - Lv10","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003379,"className":"Event_2103_ARBOR_DAY_BOX","name":"[Event] TOS Sprout Shirt Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003381,"className":"Event_2103_LVUP_Box_1","name":"[Arbor Day] Boost Box (Lv.100)","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_EVENT_2103_ARBOR_DAY_BOX_REWARD","strArg":"Event_Ability_Point_Stone_1000_17/5;Event_Drug_Alche_HP15_Premium/20;Event_Drug_Alche_SP15_Premium/20;Event_repairPotion_15/10;Event_Goddess_Statue_Team_13/10;Event_Adventure_Reward_Seed_12/10;"}},{"itemId":10003382,"className":"Event_2103_LVUP_Box_2","name":"[Arbor Day] Boost Box (Lv.200)","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":200,"script":{"function":"SCR_USE_EVENT_2103_ARBOR_DAY_BOX_REWARD","strArg":"Event_Ability_Point_Stone_1000_17/10;Event_Drug_Alche_HP15_Premium/20;Event_Drug_Alche_SP15_Premium/20;RestartCristal/10;Scroll_Warp_quest/10;Event_Goddess_Statue_Team_13/10;Event_Adventure_Reward_Seed_12/10;"}},{"itemId":10003383,"className":"Event_2103_LVUP_Box_3","name":"[Arbor Day] Boost Box (Lv.300)","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":300,"script":{"function":"SCR_USE_EVENT_2103_ARBOR_DAY_BOX_REWARD","strArg":"Event_Ability_Point_Stone_1000_17/15;Event_Coin_Ticket_1000_7/5;Drung_Box_Elixer_Event_3/1;Event_Enchantchip_13/3;Event_dungeoncount_15/12;Event_indunReset_Team_14/6;"}},{"itemId":10003384,"className":"Event_2103_LVUP_Box_4","name":"[Arbor Day] Boost Box (Lv.400)","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":400,"script":{"function":"SCR_USE_EVENT_2103_ARBOR_DAY_BOX_REWARD","strArg":"Event_Ability_Point_Stone_10000_21/2;Event_Coin_Ticket_1000_7/5;Drung_Box_Elixer_Event_3/1;Event_HiddenAbility_MasterPiece/1;Event_Unique_Weapon_Box_2/2;Event_irredians_accessory_box/1;Event_ChallengeModeReset_20/3;"}},{"itemId":10003385,"className":"Event_2103_LVUP_Box_5","name":"[Arbor Day] Boost Box (Lv.450)","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":450,"script":{"function":"SCR_USE_EVENT_2103_ARBOR_DAY_BOX_REWARD","strArg":"Event_Ability_Point_Stone_10000_21/3;Event_HiddenAbility_MasterPiece/2;EVENT_Arts_Ability_Coupon_2/3;Event_2009_Chursok_Enchant_Jewel_Box/1;Event_Sandra_Glass_12/10;Event_Sandra_Glass_1line_17/10;reputation_relief_ep13_Event/200;Event_ChallengeModeReset_20/5;"}},{"itemId":10003386,"className":"Event_Arborday_Ark_SelectBox_LV3","name":"[Event] Ark Selection Box - Lv3","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003388,"className":"Event_Dragon_Ac_Box_Total","name":"[Event] Drakonas Accessory Type Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003389,"className":"Event_Police_Box_JP","name":"[Event] Policeman Costume Box (Permanent)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003390,"className":"Event_Police_Box_JP_14d","name":"[Event] Policeman Costume Box (14 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003411,"className":"Event_Coin_Ticket_500_5","name":"[Campfire] Mercenary Badge Voucher : 500","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_pvp_mine2/500;"}},{"itemId":10003412,"className":"Event_Coin_Ticket_1000_9","name":"[Campfire] Mercenary Badge Voucher : 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_pvp_mine2/1000;"}},{"itemId":10003418,"className":"Event_Transcend_Old_Scroll_9_440Lv_Wp","name":"[Lv. 440] Shabby Transcendence Stage 9 Scroll - Weapon (90 Days)","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_440_Weapon_Old","numArg1":9,"numArg2":100}},{"itemId":10003419,"className":"Event_Coin_Ticket_1000_10","name":"[21Summer] Mercenary Badge Voucher: 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_pvp_mine2/1000;"}},{"itemId":10003421,"className":"Event_Elixir_Box_3","name":"[21Summer] Event Elixir Box","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Drug_RedApple20_Event_9/10;Drug_BlueApple20_Event_9/10;"}},{"itemId":10003422,"className":"Event_2106_MORU_BOX","name":"[21Summer] Blessed Anvil Box","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Ruby_event_blessed/10;Moru_Event_Gold_blessed/15;"}},{"itemId":10003431,"className":"Event_Coin_Ticket_1000_205","name":"[Attendance] Mercenary Badge Voucher : 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_pvp_mine2/1000;"}},{"itemId":10003461,"className":"Event_Coin_Ticket_1000_25","name":"[Renewed] Mercenary Badge Voucher : 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_pvp_mine2/1000;"}},{"itemId":10003462,"className":"Event_2107_GR_Box_1","name":"[Renewed] Boost Box (Lv.50)","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":50,"script":{"function":"SCR_USE_EVENT_2107_GR_BOX_REWARD","strArg":"Event_Ability_Point_Stone_1000_25/2;Scroll_Warp_quest/5;Event_drug_160218/10;Drug_STA1_Q/10;"}},{"itemId":10003463,"className":"Event_2107_GR_Box_2","name":"[Renewed] Boost Box (Lv.100)","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":100,"script":{"function":"SCR_USE_EVENT_2107_GR_BOX_REWARD","strArg":"Event_Ability_Point_Stone_1000_25/2;Scroll_Warp_quest/5;Event_drug_160218/10;Drug_STA1_Q/20;Event_Drug_Alche_HP15_Premium/10;Event_Drug_Alche_SP15_Premium/10;"}},{"itemId":10003464,"className":"Event_2107_GR_Box_3","name":"[Renewed] Boost Box (Lv.150)","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":150,"script":{"function":"SCR_USE_EVENT_2107_GR_BOX_REWARD","strArg":"Event_Ability_Point_Stone_1000_25/5;Event_Drug_Alche_HP15_Premium/20;Event_Drug_Alche_SP15_Premium/20;Event_repairPotion_25/10;Event_Goddess_Statue_Team_25/10;Event_Adventure_Reward_Seed_25/10;"}},{"itemId":10003465,"className":"Event_2107_GR_Box_4","name":"[Renewed] Boost Box (Lv.200)","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":200,"script":{"function":"SCR_USE_EVENT_2107_GR_BOX_REWARD","strArg":"Event_Ability_Point_Stone_1000_25/10;Event_Drug_Alche_HP15_Premium/20;Event_Drug_Alche_SP15_Premium/20;RestartCristal/10;Scroll_Warp_quest/10;Event_Goddess_Statue_Team_25/10;Event_Adventure_Reward_Seed_25/10;"}},{"itemId":10003466,"className":"Event_2107_GR_Box_5","name":"[Renewed] Boost Box (Lv.300)","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":300,"script":{"function":"SCR_USE_EVENT_2107_GR_BOX_REWARD","strArg":"Event_Ability_Point_Stone_1000_25/15;Event_Coin_Ticket_1000_25/5;Drung_Box_Elixer_Event_3/2;Event_Enchantchip_25/5;Event_dungeoncount_25/12;Event_indunReset_Team_25/6;"}},{"itemId":10003467,"className":"Event_2107_GR_Box_6","name":"[Renewed] Boost Box (Lv.400)","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":400,"script":{"function":"SCR_USE_EVENT_2107_GR_BOX_REWARD","strArg":"Event_Ability_Point_Stone_10000_27/2;Event_Coin_Ticket_1000_25/10;Drung_Box_Elixer_Event_3/3;Event_HiddenAbility_MasterPiece/2;Event_irredians_accessory_box/2;Event_ChallengeModeReset_27/4;"}},{"itemId":10003468,"className":"Event_2107_GR_Box_7","name":"[Renewed] Boost Box (Lv.450)","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":450,"script":{"function":"SCR_USE_EVENT_2107_GR_BOX_REWARD","strArg":"Event_Ability_Point_Stone_10000_27/4;Event_HiddenAbility_MasterPiece/2;EVENT_Arts_Ability_Coupon_25/3;Event_2009_Chursok_Enchant_Jewel_Box/1;Event_ChallengeModeReset_27/5;"}},{"itemId":10003469,"className":"Event_2107_GR_Box_8","name":"[Renewed] Boost Box (Lv.460)","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":460,"script":{"function":"SCR_USE_EVENT_2107_GR_BOX_REWARD","strArg":"Event_Ability_Point_Stone_10000_27/10;Event_HiddenAbility_MasterPiece/5;EVENT_Arts_Ability_Coupon_25/10;Event_2009_Chursok_Enchant_Jewel_Box/3;Relic_exp_refine_conversion_Event/50;reputation_relief_ep13_Event/1000;Event_ChallengeModeReset_27/10;Event_Arborday_Ark_SelectBox_LV3/1;Multiple_Token_MythicHARD_Event2/10;Ticket_Mythic_Auto_Event2/10;vibora_Vision_Select_Box_NoTrade/1;"}},{"itemId":10003470,"className":"Event_2107_GR_Box_9","name":"[Renewed] Boost Box B (Lv.460)","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":460,"script":{"function":"SCR_USE_EVENT_2107_GR_BOX_REWARD","strArg":"Event_2107_EP_Clear_Box_9/1;Relic_exp_refine_conversion_Event/25;Event_Ability_Point_Stone_10000_27/5;Event_Arborday_Ark_SelectBox_LV3/1;vibora_Vision_Select_Box_NoTrade/1;"}},{"itemId":10003489,"className":"Event_Yellow_Watermelon_Costume_box","name":"[Event] Yellow Watermelon Costume Selection Box","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003490,"className":"Event_Coin_Ticket_1000_206","name":"[Watermelon Fishing] Mercenary Badge Voucher: 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":1000}},{"itemId":10003498,"className":"Event_Vasilissa_Armor_Select_Category","name":"[Event] 10TRA Vasilisa Armor Selection Box","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003502,"className":"Event_Vasilissa_Armor_Select_MainWeapon","name":"[Event] 10TRA Vasilisa M.Weapon Selection Box","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003503,"className":"Event_Vasilissa_Armor_Select_SubWeapon","name":"[Event] 10TRA Vasilisa S.Weapon Selection Box","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003504,"className":"Event_Coin_Ticket_40_1","name":"[Gold Fishing] Mercenary Badge Voucher: 40","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":40}},{"itemId":10003509,"className":"Event_Coin_Ticket_1000_207","name":"[Eve] Mercenary Badge Voucher: 5,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":5000}},{"itemId":10003511,"className":"Event_Coin_Ticket_1000_33","name":"[Rabbit] Mercenary Badge Voucher: 5,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":5000}},{"itemId":10003517,"className":"reputation_relief_ep13_Event_All","name":"[Event] Total Reputation Voucher (EP 13) : 5","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_EP13_PERSONAL_REPUTATUIN_ADD_ALL","strArg":"EP13_Personal_Requtatuin_Add_All_Coupon","numArg1":5}},{"itemId":10003518,"className":"Event_Vasilissa_Armor_Select_Category_2","name":"[Event] Vasilisa Armor Selection Box","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003523,"className":"Event_JPN_HotWeek_Box","name":"HotWeek Reward Box","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":50,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Jumping_expCard_450Lv/1;Event_expCard18_x10_Box/1;Event_JobexpCard_BOX/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT2/1;Event_Vasilissa_Armor_Select_MainWeapon/2;Event_Vasilissa_Armor_Select_SubWeapon/2;Event_Vasilissa_Armor_Select_Category/1;misc_vasilisa_NoTrade/120;misc_Enchant_460_NoTrade/40;misc_Engrave_460_NoTrade/160;Premium_Mystic_Glass_460_NoTrade/80;Premium_Sandra_Glass_460_NoTrade/80;Premium_Sandra_Glass_1line_460_NoTrade/160;Legend_ExpPotion_2_460_complete/48;vibora_Vision_Select_Box_NoTrade/1;Event_Dragon_Ac_Box_Total/1;Event_Ark_SelectBox_LV6/1;GabijaCertificateCoin_10000p/3;Ability_Point_Stone_10000/250;HiddenAbility_MasterPiece_Fragment/300;Coupon_ItemRandomReset/2000;"}},{"itemId":10003526,"className":"reputation_relief_ep13_All_500","name":"[Event] Total Reputation Voucher (EP 13) : 500","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_EP13_PERSONAL_REPUTATUIN_ADD_ALL","strArg":"EP13_Personal_Requtatuin_Add_All_Coupon","numArg1":500}},{"itemId":10003542,"className":"Class_Solution_Select_Box_Event3","name":"[Event] Unlock Voucher Selection Box (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":100000}},{"itemId":10003543,"className":"Event_21halloween01","name":"[Event] Pink Scientist Costume Box","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"costume_21halloween_01/1;Event_random_helmet_21halloween01/1;","numArg1":1}},{"itemId":10003544,"className":"Event_random_helmet_21halloween01","name":"[Event] Scientist Helmet Random Box","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT","strArg":"21halloween_helmet_T/1;21halloween_helmet_O/1;21halloween_helmet_S/1;","numArg1":1}},{"itemId":10003545,"className":"Event_21halloween02","name":"[Event] Turquoise Sweats Costume Box","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"costume_21halloween_02/1;","numArg1":1}},{"itemId":10003546,"className":"Achieve_Coin_Ticket_5000_1","name":"[Event] Mercenary Badge Voucher: 5,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":5000}},{"itemId":10003549,"className":"EVENT_Coin_Ticket_5000_2","name":"[Event] Mercenary Badge Voucher: 5,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":5000}},{"itemId":10003550,"className":"Event_2021_X_mas_Costume_Box","name":"[Event] Christmas Snow Costume Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003554,"className":"Event_Coin_Ticket_10000_38","name":"[Stamp] Mercenary Badge Voucher : 10,000","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":10000}},{"itemId":10003566,"className":"Event_Camping_CheckPoint_1","name":"[Event] Check Point 1 Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10003567,"className":"Event_Camping_CheckPoint_2","name":"[Event] Check Point 2 Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10003568,"className":"Event_Camping_CheckPoint_3","name":"[Event] Check Point 3 Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10003569,"className":"Event_Camping_CheckPoint_4","name":"[Event] Check Point 4 Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10003570,"className":"Event_Camping_HiddenPoint","name":"[Event] Hidden Secret Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10003582,"className":"reputation_relief_ep13_All_500_achieve","name":"[Event] Total Reputation Voucher (EP 13) : 500","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_EP13_PERSONAL_REPUTATUIN_ADD_ALL","strArg":"EP13_Personal_Requtatuin_Add_All_Coupon","numArg1":500}},{"itemId":10004000,"className":"Event_Ability_Point_Stone_10000_limit_2","name":"[Arbor Day] Attribute Points 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10004001,"className":"Event_misc_pvpmine2_Ticket_5000_limit_2","name":"[Arbor Day] Mercenary Badge Voucher : 5,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":5000}},{"itemId":10004002,"className":"Event_Contents_total_point_boost_Coupon_limit_2","name":"[Arbor Day] Contents Point Acquisition x2 Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"ITEM_Coupon_CONTENTS_TOTAL_POINT_BOOST","numArg2":7200000}},{"itemId":10004003,"className":"Event_ChallengeExpertModeCountUp_limit_2","name":"[Arbor Day] Division Singularity One Entry Voucher","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeExpertModeCountUp"}},{"itemId":10004004,"className":"Event_Multiple_Token_MythicHARD_limit_2","name":"[Sow] Res Sacrae Raid: Auto/Solo (Hard) Add. Reward Voucher","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto_Hard","numArg1":2}},{"itemId":10004005,"className":"Event_Elixir_Box_limit_2","name":"[Arbor Day] Event Elixir Box","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Drug_RedApple20/10;Event_Drug_BlueApple20/10;"}},{"itemId":10004007,"className":"Event_awakeningStone_limit_2","name":"[Arbor Day] Premium Awakening Stone","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10004008,"className":"Event_misc_reinforce_percentUp_480_NoTrade_limit_2","name":"[Arbor Day] [Lv.470] Enhance Aid","type":"Etc","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"reinforce_percentUp","numArg1":480}},{"itemId":10004009,"className":"Event_misc_Enchant_460_NoTrade_limit_2","name":"[Arbor Day] [Lv.460] Goddess Enchant Jewel","type":"Etc","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Enchant","numArg1":460}},{"itemId":10004010,"className":"Event_misc_Engrave_460_NoTrade_limit_2","name":"[Arbor Day] [Lv.460] Engrave Stone","type":"Etc","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Engrave","numArg1":460,"numArg2":5}},{"itemId":10004011,"className":"Event_Ability_Point_Stone_1000_limit_2","name":"[Arbor Day] Attribute Points 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10004014,"className":"Event_Ticket_Mythic_Auto_limit_2","name":"[Sow] Res Sacrae Raid: Auto/Solo (Normal) One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":812}},{"itemId":10004015,"className":"Event_Multiple_Token_MythicAuto_limit_2","name":"[Sow] Res Sacrae Raid: Auto/Solo (Normal) Multiply Token","type":"Etc","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto","numArg1":2}},{"itemId":10004016,"className":"Event_misc_pvpmine2_Ticket_1000_limit_2","name":"[Arbor Day] Mercenary Badge Voucher : 1,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":1000}},{"itemId":10004017,"className":"Event_dungeoncount_limit_2","name":"[Arbor Day] Instanced Dungeon Multiply Token","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10004018,"className":"Event_indunReset_limit_2","name":"[Arbor Day] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10004019,"className":"Event_Ability_Point_Stone_5_limit_2","name":"[SowDay] Attribute Points 5","type":"Consume","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":5}},{"itemId":10004020,"className":"Event_ChallengeModeReset_limit_2","name":"[Arbor Day] Challenge Mode One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10004023,"className":"Event_Sandra_Glass_460_limit_2","name":"[Arbor Day] [Lv.460] Sandra's Magnifier","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass","numArg1":460}},{"itemId":10004024,"className":"Event_Sandra_Glass_1line_460_limit_2","name":"[Arbor Day] [Lv.460] Sandra's Detailed Magnifier","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line","numArg1":460}},{"itemId":10004025,"className":"Event_Master_Glass_460_limit_2","name":"[Arbor Day] [Lv.460] Artisan Magnifier","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass","numArg1":460}},{"itemId":10004026,"className":"Event_Mystic_Glass_460_limit_2","name":"[Arbor Day] [Lv.460] Mysterious Magnifier","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass","numArg1":460}},{"itemId":10004027,"className":"Event_card_Xpupkit10_limit_2","name":"[Arbor Day] Lv 10 Enhancement Card","type":"Etc","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10004028,"className":"Event_SoloRaidCntReset_limit_2","name":"[Arbor Day] Solo Raid One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_FreeDungeon_Solo_Raid_Cnt","strArg":"SoloRaidCntReset_Team","numArg1":1}},{"itemId":10004029,"className":"Event_misc_pvpmine2_Ticket_10000_limit_2","name":"[Arbor Day] Mercenary Badge Voucher : 10,000","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":10000}},{"itemId":10004030,"className":"Event_Abrasive_460_NoTrade_limit_2","name":"[Arbor Day] [Lv.460] Awakening Abrasive","type":"Etc","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbrasiveStone","numArg1":460}},{"itemId":10004031,"className":"Event_misc_gemExpStone8_limit_2","name":"[Arbor Day] 8-Star Gem Abrasive","type":"Etc","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10010001,"className":"Extract_kit_Gold_Team_1","name":"[TOSventure] Golden Ichor Extraction Kit","type":"Etc","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":10010002,"className":"Extract_kit_Gold_Team_2","name":"[FLEX BOX] Golden Ichor Extraction Kit","type":"Etc","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":10010019,"className":"Extract_kit_Gold_Team_4","name":"[Stamp Tour] Golden Ichor Extraction Kit","type":"Etc","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":10010021,"className":"Extract_kit_Gold_Team_6","name":"[Event] Golden Ichor Extraction Kit","type":"Etc","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":10021009,"className":"TutoAbility_Point_14d_Team","name":"[Tutorial] Attribute Points: 1000 (14 Days)","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":10021011,"className":"Tuto_coin_ticket2","name":"[Tutorial] Mercenary Badge Voucher : 10000","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":10000}},{"itemId":10600016,"className":"Event_Mystic_Glass_1","name":"[FLEX BOX] Mysterious Magnifier","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass"}},{"itemId":10600017,"className":"Event_Mystic_Glass_2","name":"[Lucky Ticket] Mysterious Magnifier","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass"}},{"itemId":10600019,"className":"Event_Master_Glass_1","name":"[FLEX BOX] Artisan Magnifier","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":10600020,"className":"Event_Master_Glass_2","name":"[Lucky Ticket] Artisan Magnifier","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":10600025,"className":"Event_Enchantchip_1","name":"[FLEX BOX] Enchant Scroll","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10600026,"className":"Event_Enchantchip_2","name":"[Lucky Ticket] Enchant Scroll","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10600027,"className":"Event_Enchantchip_3","name":"[Your Master] Enchant Scroll","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10600031,"className":"Event_Master_Glass_4","name":"[Your Master] Artisan Magnifier","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":10600032,"className":"Event_Mystic_Glass_4","name":"[Your Master] Mysterious Magnifier","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass"}},{"itemId":10600036,"className":"Event_Enchantchip_4","name":"[Event] Enchant Scroll","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10820000,"className":"Event_misc_pvpmine2_Ticket_10000_limit_renew","name":"[TOS] Mercenary Badge Voucher: 10,000","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MISC_PVP_MINE2_COUPON","numArg1":10000}},{"itemId":10820001,"className":"Event_Contents_total_point_boost_Coupon_limit_renew","name":"[TOS] Contents Point Acquisition x2 Voucher","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff","strArg":"ITEM_Coupon_CONTENTS_TOTAL_POINT_BOOST","numArg2":7200000}},{"itemId":10820002,"className":"Event_Ability_Point_Stone_10000_limit_renew","name":"[TOS] Attribute Points 10,000","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":10820003,"className":"Event_misc_gemExpStone8_limit_renew","name":"[TOS] 8-Star Gem Abrasive","type":"Etc","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10820005,"className":"Event_Elixir_Box_limit_renew","name":"[TOS] Event Elixir Box","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Drug_RedApple20/10;Event_Drug_BlueApple20/10;"}},{"itemId":10820009,"className":"Event_SoloRaidCntReset_limit_renew","name":"[TOS] Sole Hunt One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_FreeDungeon_Solo_Raid_Cnt","strArg":"SoloRaidCntReset_Team","numArg1":1}},{"itemId":10820012,"className":"Event_Multiple_Token_MythicHARD_limit_renew","name":"[TOS] Res Sacrae Raid: Auto/Solo (Hard) Add. Reward Voucher","type":"Etc","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto_Hard","numArg1":2}},{"itemId":10820013,"className":"Event_Ticket_Mythic_Auto_limit_renew","name":"[TOS] Res Sacrae Raid: Auto/Solo(Normal) One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":812}},{"itemId":10820014,"className":"Event_Multiple_Token_MythicAuto_limit_renew","name":"[TOS] Res Sacrae Raid: Auto/Solo (Normal) Multiply Token","type":"Etc","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto","numArg1":2}},{"itemId":10820016,"className":"Event_dungeoncount_limit_renew","name":"[TOS] Instanced Dungeon Multiply Token","type":"Etc","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10820017,"className":"Event_indunReset_limit_renew","name":"[TOS] Instanced Dungeon Reset Voucher","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10820018,"className":"Event_ChallengeExpertModeCountUp_limit_renew","name":"[TOS] Division Singularity One Entry Voucher","type":"Consume","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeExpertModeCountUp"}},{"itemId":10820019,"className":"Event_ChallengeModeReset_limit_renew","name":"[TOS] Challenge Mode One Entry Voucher","type":"Consume","group":"Event","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10820020,"className":"Event_misc_reinforce_percentUp_480_NoTrade_limit_renew","name":"[Event] [Lv.480] Enhance Aid","type":"Etc","group":"Event","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"reinforce_percentUp","numArg1":480}},{"itemId":10820024,"className":"Event_misc_Engrave_460_NoTrade_limit_renew","name":"[TOS] [Lv.460] Engrave Stone","type":"Etc","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Engrave","numArg1":460,"numArg2":5}},{"itemId":10820025,"className":"Event_card_Xpupkit10_limit_renew","name":"[TOS] Lv 10 Enhancement Card","type":"Etc","group":"Event","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":11030320,"className":"Event_Vibora_Ticket_1cnt","name":"[Event] Vaivora Additional Combine Voucher","type":"Consume","group":"Event","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"EVENT_5TH_VIBORA_TICKET_SCP"}},{"itemId":11035170,"className":"Premium_episode_UnlockScroll_EP_1","name":"Episode Unlock Card - Episode 1","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EPISODE_UNLCOK_CARD","numArg1":1}},{"itemId":11035171,"className":"Premium_episode_UnlockScroll_EP_2","name":"Episode Unlock Card - Episode 2","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EPISODE_UNLCOK_CARD","numArg1":2}},{"itemId":11035172,"className":"Premium_episode_UnlockScroll_EP_3","name":"Episode Unlock Card - Episode 3","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EPISODE_UNLCOK_CARD","numArg1":3}},{"itemId":11035173,"className":"Premium_episode_UnlockScroll_EP_4","name":"Episode Unlock Card - Episode 4","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EPISODE_UNLCOK_CARD","numArg1":4}},{"itemId":11035174,"className":"Premium_episode_UnlockScroll_EP_5","name":"Episode Unlock Card - Episode 5","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EPISODE_UNLCOK_CARD","numArg1":5}},{"itemId":11035175,"className":"Premium_episode_UnlockScroll_EP_6","name":"Episode Unlock Card - Episode 6","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EPISODE_UNLCOK_CARD","numArg1":6}},{"itemId":11035176,"className":"Premium_episode_UnlockScroll_EP_7","name":"Episode Unlock Card - Episode 7","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EPISODE_UNLCOK_CARD","numArg1":7}},{"itemId":11035177,"className":"Premium_episode_UnlockScroll_EP_8","name":"Episode Unlock Card - Episode 8","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EPISODE_UNLCOK_CARD","numArg1":8}},{"itemId":11035178,"className":"Premium_episode_UnlockScroll_EP_9","name":"Episode Unlock Card - Episode 9","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EPISODE_UNLCOK_CARD","numArg1":9}},{"itemId":11035179,"className":"Premium_episode_UnlockScroll_EP_10","name":"Episode Unlock Card - Episode 10","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EPISODE_UNLCOK_CARD","numArg1":10}},{"itemId":11035180,"className":"Premium_episode_UnlockScroll_EP_11","name":"Episode Unlock Card - Episode 11","type":"Consume","group":"Event","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EPISODE_UNLCOK_CARD","numArg1":11}},{"itemId":11035682,"className":"selectbox_Event_costume_laima_NoTrade","name":"Laima Shirt Selection Box","type":"Consume","group":"Event","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":699003,"className":"Legend_ExpPotion","name":"Partis Solution","type":"Etc","group":"ExpOrb","weight":1,"maxStack":1,"price":3000000,"sellPrice":10,"minLevel":1,"script":{"strArg":"icon_item_full_partis","numArg1":50000000}},{"itemId":699011,"className":"Legend_ExpPotion_2","name":"Pamoka Solution","type":"Etc","group":"ExpOrb","weight":5,"maxStack":1,"price":1000000,"sellPrice":10,"minLevel":1,"script":{"strArg":"icon_item_full_partis2","numArg1":1250000000}},{"itemId":699012,"className":"Legend_ExpPotion_2_complete","name":"Pamoka Solution","type":"Etc","group":"ExpOrb","weight":10,"maxStack":32767,"price":1000000,"sellPrice":10,"minLevel":1,"script":{"strArg":"Legend_ExpPotion_2_complete","numArg1":1250000000,"numArg2":99999}},{"itemId":699022,"className":"Legend_ExpPotion_2_nomarket","name":"Pamoka Solution","type":"Etc","group":"ExpOrb","weight":5,"maxStack":1,"price":1000000,"sellPrice":10,"minLevel":1,"script":{"strArg":"icon_item_full_partis2","numArg1":1250000000}},{"itemId":699042,"className":"Legend_ExpPotion_2_complete_Team_Trade","name":"Pamoka Solution","type":"Etc","group":"ExpOrb","weight":10,"maxStack":32767,"price":1000000,"sellPrice":10,"minLevel":1,"script":{"strArg":"Legend_ExpPotion_2_complete","numArg1":1250000000,"numArg2":99999}},{"itemId":11030236,"className":"Legend_ExpPotion_2_460","name":"[Lv.460] Pamoka Solution","type":"Etc","group":"ExpOrb","weight":5,"maxStack":1,"price":1000000,"sellPrice":10,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"icon_item_full_partis2","numArg1":1250000000}},{"itemId":11030237,"className":"Legend_ExpPotion_2_460_complete","name":"[Lv.460] Pamoka Solution","type":"Etc","group":"ExpOrb","weight":10,"maxStack":32767,"price":1000000,"sellPrice":10,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Legend_ExpPotion_2_complete","numArg1":1250000000,"numArg2":460}},{"itemId":730000,"className":"Fishing_Rod_1","name":"Old Fishing Rod","type":"Consume","group":"FishingRod","weight":10,"maxStack":1,"price":50000,"sellPrice":5000,"minLevel":1,"script":{"function":"SCR_USE_FISHING_ROD","strArg":"fishingrod_basic","numArg1":710}},{"itemId":730001,"className":"Fishing_Rod_2","name":"Klaipeda Fishing Rod","type":"Consume","group":"FishingRod","weight":10,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_FISHING_ROD","strArg":"fishingrod_event_01","numArg1":710}},{"itemId":730002,"className":"Fishing_Rod_3","name":"Flamingo Fishing Rod","type":"Consume","group":"FishingRod","weight":10,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_FISHING_ROD","strArg":"fishingrod_flamingo_set","numArg1":760}},{"itemId":730003,"className":"Fishing_Rod_4","name":"Carrot Fishing Rod","type":"Consume","group":"FishingRod","weight":10,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_FISHING_ROD","strArg":"fishingrod_carrot_set","numArg1":820}},{"itemId":730004,"className":"Fishing_Rod_Quest_1","name":"Basic Old Fishing Rod","type":"Consume","group":"FishingRod","weight":10,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_FISHING_ROD","strArg":"fishingrod_basic","numArg1":510}},{"itemId":730005,"className":"Fishing_Rod_2_Event","name":"[Event] Event Fishing Rod","type":"Consume","group":"FishingRod","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_FISHING_ROD","strArg":"fishingrod_event_01","numArg1":2000}},{"itemId":730100,"className":"Fishing_Rod_Premium_1","name":"Bamboo Fishing Rod","type":"Consume","group":"FishingRod","weight":10,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_FISHING_ROD","strArg":"fishingrod_03_set","numArg1":1360}},{"itemId":643501,"className":"gem_circle_1","name":"Red Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643502,"className":"gem_square_1","name":"Blue Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643503,"className":"gem_diamond_1","name":"Green Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643504,"className":"gem_star_1","name":"Yellow Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643505,"className":"gem_star_test","name":"Test Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643506,"className":"Gem_Swordman_Thrust","name":"Thrust Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643507,"className":"Gem_Swordman_Bash","name":"Bash Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643508,"className":"Gem_Swordman_GungHo","name":"Gun Ho Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643509,"className":"Gem_Swordman_Concentrate","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643510,"className":"Gem_Swordman_PainBarrier","name":"Pain Barrier Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643511,"className":"Gem_Swordman_Restrain","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643512,"className":"Gem_Swordman_PommelBeat","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643513,"className":"Gem_Swordman_DoubleSlash","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643514,"className":"Gem_Highlander_WagonWheel","name":"Wagon Wheel Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643515,"className":"Gem_Highlander_CartarStroke","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643516,"className":"Gem_Highlander_Crown","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643517,"className":"Gem_Highlander_CrossGuard","name":"Cross Guard Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643518,"className":"Gem_Highlander_Moulinet","name":"Moulinet Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643519,"className":"Gem_Highlander_SkyLiner","name":"Skyliner Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643520,"className":"Gem_Highlander_CrossCut","name":"Crosscut Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643521,"className":"Gem_Highlander_ScullSwing","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643522,"className":"Gem_Highlander_VerticalSlash","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643523,"className":"Gem_Peltasta_Langort","name":"Langort Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643524,"className":"Gem_Peltasta_RimBlow","name":"Rim Blow Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643525,"className":"Gem_Peltasta_SwashBuckling","name":"Swash Buckling Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643526,"className":"Gem_Peltasta_Guardian","name":"Guardian Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643527,"className":"Gem_Peltasta_ShieldLob","name":"Shield Lob Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643528,"className":"Gem_Peltasta_HighGuard","name":"High Guard Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643529,"className":"Gem_Murmillo_EvadeThrust","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643530,"className":"Gem_Peltasta_UmboThrust","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643531,"className":"Gem_Hoplite_Stabbing","name":"Stabbing Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643532,"className":"Gem_Hoplite_Pierce","name":"Pierce Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643533,"className":"Gem_Hoplite_Finestra","name":"Finestra Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643534,"className":"Gem_Hoplite_SynchroThrusting","name":"Synchro Thrusting Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643535,"className":"Gem_Hoplite_LongStride","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643536,"className":"Gem_Hoplite_SpearLunge","name":"Spear Lunge Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643537,"className":"Gem_Hoplite_ThrouwingSpear","name":"Spear Throw Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643538,"className":"Gem_Barbarian_Embowel","name":"Embowel Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643539,"className":"Gem_Barbarian_StompingKick","name":"Stomping Kick Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643540,"className":"Gem_Barbarian_Cleave","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643541,"className":"Gem_Barbarian_HelmChopper","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643542,"className":"Gem_Barbarian_Warcry","name":"Warcry Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643543,"className":"Gem_Barbarian_Frenzy","name":"Frenzy Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643544,"className":"Gem_Barbarian_Seism","name":"Seism Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643545,"className":"Gem_Barbarian_GiantSwing","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643546,"className":"Gem_Barbarian_Pouncing","name":"Pouncing Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643547,"className":"Gem_Cataphract_Impaler","name":"Impaler Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643548,"className":"Gem_Cataphract_EarthWave","name":"Earth Wave Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643549,"className":"Gem_Cataphract_Trot","name":"Trot Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643550,"className":"Gem_Cataphract_SteedCharge","name":"Steed Charge Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643551,"className":"Gem_Cataphract_DoomSpike","name":"Doom Spike Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643552,"className":"Gem_Cataphract_Rush","name":"Rush Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643553,"className":"Gem_Corsair_JollyRoger","name":"Jolly Roger Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643554,"className":"Gem_Corsair_IronHook","name":"Iron Hook Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643555,"className":"Gem_Corsair_Keelhauling","name":"Keel Hauling Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643556,"className":"Gem_Corsair_DustDevil","name":"Dust Devil Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643557,"className":"Gem_Corsair_SubweaponCancel","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643558,"className":"Gem_Corsair_HexenDropper","name":"Hexen Dropper Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643559,"className":"Gem_Doppelsoeldner_Punish","name":"Punish Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643560,"className":"Gem_Doppelsoeldner_DeedsOfValor","name":"Deeds of Valor Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643561,"className":"Gem_Doppelsoeldner_Mordschlag","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643562,"className":"Gem_Doppelsoeldner_Double_pay_earn","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643563,"className":"Gem_Doppelsoeldner_Cyclone","name":"Cyclone Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643564,"className":"Gem_Rodelero_ShieldCharge","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643565,"className":"Gem_Rodelero_Montano","name":"Montano Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643566,"className":"Gem_Rodelero_TargeSmash","name":"Targe Smash Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643567,"className":"Gem_Rodelero_ShieldPush","name":"Shield Push Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643568,"className":"Gem_Rodelero_ShieldShoving","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643569,"className":"Gem_Rodelero_ShieldBash","name":"Shield Bash Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643570,"className":"Gem_Rodelero_Slithering","name":"Slithering Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643571,"className":"Gem_Rodelero_ShootingStar","name":"Shooting Star Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643572,"className":"Gem_Rodelero_HighKick","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643573,"className":"Gem_Squire_Arrest","name":"Arrest Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643574,"className":"Gem_Fencer_Lunge","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643575,"className":"Gem_Fencer_SeptEtoiles","name":"Sept Etoiles Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643576,"className":"Gem_Fencer_AttaqueCoquille","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643577,"className":"Gem_Fencer_EsquiveToucher","name":"Esquive Toucher Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643578,"className":"Gem_Fencer_Flanconnade","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643579,"className":"Gem_Fencer_AttaqueComposee","name":"Attaque Composee Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643580,"className":"Gem_Wizard_EnergyBolt","name":"Energy Bolt Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643581,"className":"Gem_Wizard_Lethargy","name":"Lethargy Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643582,"className":"Gem_Wizard_Sleep","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643583,"className":"Gem_Wizard_ReflectShield","name":"Magic Shield Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643584,"className":"Gem_Wizard_EarthQuake","name":"Earthquake Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643585,"className":"Gem_Wizard_Surespell","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643586,"className":"Gem_Wizard_MagicMissile","name":"Magic Missile Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643587,"className":"Gem_Pyromancer_FireBall","name":"Fireball Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643588,"className":"Gem_Pyromancer_FireWall","name":"Fire Wall Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643589,"className":"Gem_Pyromancer_EnchantFire","name":"Enchant Fire Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643590,"className":"Gem_Pyromancer_Flare","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643591,"className":"Gem_Pyromancer_FlameGround","name":"Flame Ground Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643592,"className":"Gem_Pyromancer_FirePillar","name":"Fire Pillar Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643593,"className":"Gem_Pyromancer_HellBreath","name":"Hell Breath Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643594,"className":"Gem_Cryomancer_IceBolt","name":"Ice Bolt Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643595,"className":"Gem_Cryomancer_IciclePike","name":"Ice Pike Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643596,"className":"Gem_Cryomancer_IceWall","name":"Ice Wall Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643597,"className":"Gem_Cryomancer_IceBlast","name":"Ice Blast Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643598,"className":"Gem_Cryomancer_Gust","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643599,"className":"Gem_Cryomancer_SnowRolling","name":"Snow Rolling Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643600,"className":"Gem_Cryomancer_FrostPillar","name":"Frost Pillar Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643601,"className":"Gem_Psychokino_PsychicPressure","name":"Psychic Pressure Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643602,"className":"Gem_Psychokino_Telekinesis","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643603,"className":"Gem_Psychokino_Swap","name":"Swap Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643604,"className":"Gem_Psychokino_Teleportation","name":"Teleportation Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643605,"className":"Gem_Psychokino_MagneticForce","name":"Magnetic Force Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643606,"className":"Gem_Psychokino_Raise","name":"Raise Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643607,"className":"Gem_Psychokino_GravityPole","name":"Gravity Pole Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643608,"className":"Gem_Sorcerer_Summoning","name":"Summoning Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643609,"className":"Gem_Sorcerer_SummonFamiliar","name":"Summon Familiar Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643610,"className":"Gem_Sorcerer_SummonSalamion","name":"Summon Salamion Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643611,"className":"Gem_Linker_Physicallink","name":"Physical Link Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643612,"className":"Gem_Linker_JointPenalty","name":"Joint Penalty Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643613,"className":"Gem_Linker_HangmansKnot","name":"Hangman's Knot Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643614,"className":"Gem_Linker_SpiritualChain","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643615,"className":"Gem_Linker_UmbilicalCord","name":"Lifeline Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643616,"className":"Gem_Chronomancer_Quicken","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643617,"className":"Gem_Chronomancer_Samsara","name":"Reincarnate Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643618,"className":"Gem_Chronomancer_Stop","name":"Stop Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643619,"className":"Gem_Chronomancer_Slow","name":"Slow Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643620,"className":"Gem_Chronomancer_Haste","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643621,"className":"Gem_Chronomancer_BackMasking","name":"Backmasking Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643622,"className":"Gem_Necromancer_GatherCorpse","name":"Gather Corpse Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643623,"className":"Gem_Necromancer_FleshCannon","name":"Flesh Cannon Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643624,"className":"Gem_Necromancer_FleshHoop","name":"Flesh Hoop Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643625,"className":"Gem_Necromancer_DirtyPole","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643626,"className":"Gem_Necromancer_CorpseTower","name":"Corpse Tower Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643627,"className":"Gem_Thaumaturge_SwellLeftArm","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643628,"className":"Gem_Thaumaturge_ShrinkBody","name":"Shrink Body Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643629,"className":"Gem_Thaumaturge_SwellBody","name":"Swell Body Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643630,"className":"Gem_Thaumaturge_Transpose","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643631,"className":"Gem_Thaumaturge_SwellRightArm","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643632,"className":"Gem_Thaumaturge_SwellBrain","name":"Swell Brain Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643633,"className":"Gem_Elementalist_Electrocute","name":"Electrocute Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643634,"className":"Gem_Elementalist_StoneCurse","name":"Lightning Orb Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643635,"className":"Gem_Elementalist_Hail","name":"Hail Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643636,"className":"Gem_Elementalist_Prominence","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643637,"className":"Gem_Elementalist_Meteor","name":"Meteor Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643638,"className":"Gem_Elementalist_FreezingSphere","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643639,"className":"Gem_Elementalist_Rain","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643640,"className":"Gem_Elementalist_FrostCloud","name":"Blizzard Storm Gem ","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643641,"className":"Gem_Archer_SwiftStep","name":"Swift Step Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643642,"className":"Gem_Archer_Multishot","name":"Multi Shot Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643643,"className":"Gem_Archer_Fulldraw","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643644,"className":"Gem_Archer_ObliqueShot","name":"Oblique Shot Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643645,"className":"Gem_Archer_Kneelingshot","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643646,"className":"Gem_Archer_HeavyShot","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643647,"className":"Gem_Archer_TwinArrows","name":"Twin Arrow Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643648,"className":"Gem_Hunter_Coursing","name":"(Faded) Coursing Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643649,"className":"Gem_Hunter_Snatching","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643650,"className":"Gem_Hunter_Pointing","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643651,"className":"Gem_Hunter_RushDog","name":"(Faded) Rush Dog Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643652,"className":"Gem_Hunter_Retrieve","name":"(Faded) Retrieve Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643653,"className":"Gem_Hunter_Hounding","name":"(Faded) Hounding Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643654,"className":"Gem_Hunter_Growling","name":"Growling Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643655,"className":"Gem_QuarrelShooter_DeployPavise","name":"Deploy Pavise Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643656,"className":"Gem_QuarrelShooter_ScatterCaltrop","name":"Scatter Caltrops Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643657,"className":"Gem_QuarrelShooter_StoneShot","name":"Stone Shot Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643658,"className":"Gem_QuarrelShooter_RapidFire","name":"Rapid Fire Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643659,"className":"Gem_QuarrelShooter_Teardown","name":"Teardown Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643660,"className":"Gem_QuarrelShooter_RunningShot","name":"Running Shot Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643661,"className":"Gem_Ranger_Barrage","name":"Barrage Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643662,"className":"Gem_Ranger_HighAnchoring","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643663,"className":"Gem_Ranger_CriticalShot","name":"Double Take Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643664,"className":"Gem_Ranger_SteadyAim","name":"Full Throttle Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643665,"className":"Gem_Ranger_TimeBombArrow","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643666,"className":"Gem_Ranger_BounceShot","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643667,"className":"Gem_Ranger_SpiralArrow","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643668,"className":"Gem_Sapper_StakeStockades","name":"(Faded) Stake Stockades Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643669,"className":"Gem_Sapper_Cover","name":"(Faded) Conceal Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643670,"className":"Gem_Sapper_Claymore","name":"Claymore Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643671,"className":"Gem_Sapper_PunjiStake","name":"Punji Stake Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643672,"className":"Gem_Sapper_DetonateTraps","name":"Detonate Traps Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643673,"className":"Gem_Sapper_BroomTrap","name":"Broom Trap Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643674,"className":"Gem_Sapper_CollarBomb","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643675,"className":"Gem_Sapper_SpikeShooter","name":"Spike Shooter Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643676,"className":"Gem_Wugushi_Detoxify","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643677,"className":"Gem_Wugushi_NeedleBlow","name":"Latent Venom Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643678,"className":"Gem_Wugushi_Bewitch","name":"Wide Miasma Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643679,"className":"Gem_Wugushi_WugongGu","name":"Wugong Gu Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643680,"className":"Gem_Wugushi_Zhendu","name":"Zhendu Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643681,"className":"Gem_Wugushi_ThrowGuPot","name":"Poison Pot Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643682,"className":"Gem_Wugushi_JincanGu","name":"Golden Frog Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643683,"className":"Gem_Scout_FluFlu","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643684,"className":"Gem_Scout_FlareShot","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643685,"className":"Gem_Scout_Cloaking","name":"Cloaking Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643686,"className":"Gem_Scout_Undistance","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643687,"className":"Gem_Scout_Scan","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643688,"className":"Gem_Scout_SplitArrow","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643689,"className":"Gem_Rogue_SneakHit","name":"Sneak Hit Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643690,"className":"Gem_Rogue_Feint","name":"Feint Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643691,"className":"Gem_Rogue_Spoliation","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643692,"className":"Gem_Rogue_Vendetta","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643693,"className":"Gem_Rogue_Burrow","name":"Burrow Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643694,"className":"Gem_Rogue_Evasion","name":"Evasion Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643695,"className":"Gem_Rogue_Lachrymator","name":"Lachrymator Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643696,"className":"Gem_Rogue_Backstab","name":"Backstab Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643697,"className":"Gem_Schwarzereiter_ConcentratedFire","name":"Concentrated Fire Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643698,"className":"Gem_Schwarzereiter_Caracole","name":"Caracole Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643699,"className":"Gem_Schwarzereiter_Limacon","name":"Limacon Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643700,"className":"Gem_Schwarzereiter_RetreatShot","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643701,"className":"Gem_Fletcher_BroadHead","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643702,"className":"Gem_Fletcher_BodkinPoint","name":"Bodkin Point Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643703,"className":"Gem_Fletcher_BarbedArrow","name":"Barbed Arrow Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643704,"className":"Gem_Fletcher_CrossFire","name":"Crossfire Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643705,"className":"Gem_Fletcher_MagicArrow","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643706,"className":"Gem_Fletcher_Singijeon","name":"Divine Machine Arrow Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643707,"className":"Gem_Falconer_BuildRoost","name":"Roost Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643708,"className":"Gem_Falconer_Circling","name":"Circling Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643709,"className":"Gem_Falconer_Hovering","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643710,"className":"Gem_Falconer_Pheasant","name":"Pheasant Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643711,"className":"Gem_Falconer_HangingShot","name":"Hanging Shot Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643712,"className":"Gem_Cannoneer_CannonShot","name":"Cannon Shot Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643713,"className":"Gem_Cannoneer_ShootDown","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643714,"className":"Gem_Cannoneer_SiegeBurst","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643715,"className":"Gem_Cannoneer_CannonBlast","name":"Cannon Blast Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643716,"className":"Gem_Cleric_Heal","name":"Heal Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643717,"className":"Gem_Cleric_Cure","name":"Cure Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643718,"className":"Gem_Cleric_SafetyZone","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643719,"className":"Gem_Cleric_DeprotectedZone","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643720,"className":"Gem_Cleric_DivineMight","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643721,"className":"Gem_Cleric_Fade","name":"Fade Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643722,"className":"Gem_Cleric_PatronSaint","name":"Guardian Saint Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643723,"className":"Gem_Priest_Aspersion","name":"Aspersion Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643724,"className":"Gem_Priest_Monstrance","name":"Monstrance Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643725,"className":"Gem_Priest_Blessing","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643726,"className":"Gem_Priest_Sacrament","name":"Sacrament Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643727,"className":"Gem_Priest_Revive","name":"Revive Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643728,"className":"Gem_Priest_MassHeal","name":"Mass Heal Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643729,"className":"Gem_Priest_Exorcise","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643730,"className":"Gem_Priest_StoneSkin","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643731,"className":"Gem_Kriwi_Aukuras","name":"Aukuras Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643732,"className":"Gem_Kriwi_Zalciai","name":"Zalciai Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643733,"className":"Gem_Kriwi_Daino","name":"Daino Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643734,"className":"Gem_Kriwi_Zaibas","name":"Zaibas Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643735,"className":"Gem_Kriwi_DivineStigma","name":"Divine Stigma Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643736,"className":"Gem_Kriwi_Melstis","name":"Piety Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643737,"className":"Gem_Bokor_Hexing","name":"Curse of Debility Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643738,"className":"Gem_Bokor_Effigy","name":"Effigy Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643739,"className":"Gem_Bokor_Zombify","name":"Zombify Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643740,"className":"Gem_Bokor_Mackangdal","name":"Mackangdal Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643741,"className":"Gem_Bokor_BwaKayiman","name":"Bwa Kayiman Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643742,"className":"Gem_Bokor_Samdiveve","name":"Samediveve Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643743,"className":"Gem_Bokor_Ogouveve","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643744,"className":"Gem_Bokor_Damballa","name":"Damballa Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643745,"className":"Gem_Druid_Chortasmata","name":"Chortasmata Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643746,"className":"Gem_Druid_Carnivory","name":"Carnivory Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643747,"className":"Gem_Druid_StereaTrofh","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643748,"className":"Gem_Druid_Transform","name":"Transform Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643749,"className":"Gem_Druid_ShapeShifting","name":"Shape Shifting Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643750,"className":"Gem_Druid_Telepath","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643751,"className":"Gem_Sadhu_OutofBody","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643752,"className":"Gem_Sadhu_AstralBodyExplosion","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643753,"className":"Gem_Sadhu_VashitaSiddhi","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643754,"className":"Gem_Sadhu_Possession","name":"Possession Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643755,"className":"Gem_Dievdirbys_CarveVakarine","name":"Statue of Goddess Vakarine Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643756,"className":"Gem_Dievdirbys_CarveZemina","name":"Statue of Goddess Zemyna Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643757,"className":"Gem_Dievdirbys_CarveLaima","name":"Statue of Goddess Laima Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643758,"className":"Gem_Dievdirbys_Carve","name":"Carve Attack Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643759,"className":"Gem_Dievdirbys_CarveOwl","name":"Carve Owl Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643760,"className":"Gem_Dievdirbys_CarveAustrasKoks","name":"Carve World Tree Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643761,"className":"Gem_Dievdirbys_CarveAusirine","name":"Statue of Goddess Ausrine Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643762,"className":"Gem_Oracle_ArcaneEnergy","name":"Arcane Energy Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643763,"className":"Gem_Oracle_Change","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643764,"className":"Gem_Oracle_CounterSpell","name":"Counter Spell Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643765,"className":"Gem_Oracle_Forecast","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643766,"className":"Gem_Oracle_Prophecy","name":"Prophecy Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643767,"className":"Gem_Monk_IronSkin","name":"Iron Skin Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643768,"className":"Gem_Monk_DoublePunch","name":"Double Punch Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643769,"className":"Gem_Monk_PalmStrike","name":"Palm Strike Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643770,"className":"Gem_Monk_HandKnife","name":"Hand Knife Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643771,"className":"Gem_Monk_EnergyBlast","name":"Energy Blast Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643772,"className":"Gem_Monk_1InchPunch","name":"One Inch Punch Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643773,"className":"Gem_Monk_God_Finger_Flicking","name":"God Finger Flick Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643774,"className":"Gem_Monk_Golden_Bell_Shield","name":"Golden Bell Shield Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643775,"className":"Gem_Pardoner_Simony","name":"Simony Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643776,"className":"Gem_Pardoner_Indulgentia","name":"Indulgentia Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643777,"className":"Gem_Pardoner_DiscernEvil","name":"Discerning Evil Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643778,"className":"Gem_Pardoner_IncreaseMagicDEF","name":"Increase Magic Defense Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643779,"className":"Gem_Pardoner_Oblation","name":"Oblation Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643780,"className":"Gem_Paladin_Smite","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643781,"className":"Gem_Paladin_Restoration","name":"Restoration Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643782,"className":"Gem_Paladin_ResistElements","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643783,"className":"Gem_Paladin_TurnUndead","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643784,"className":"Gem_Paladin_Conversion","name":"Sanctuary Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643785,"className":"Gem_Paladin_Barrier","name":"Barrier Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643786,"className":"Gem_Paladin_Conviction","name":"Conviction Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643816,"className":"gem_candy_1","name":"#N/A","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643817,"className":"gem_White_1","name":"White Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643818,"className":"Gem_Peltasta_UmboBlow","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643819,"className":"Gem_Squire_DeadlyCombo","name":"Deadly Combo Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643820,"className":"Gem_Corsair_PistolShot","name":"Quick and Dead Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643821,"className":"Gem_Doppelsoeldner_Zornhau","name":"Zornhau Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643822,"className":"Gem_Doppelsoeldner_Redel","name":"Redel Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643823,"className":"Gem_Doppelsoeldner_Zucken","name":"Zuchen Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643824,"className":"Gem_Doppelsoeldner_Zwerchhau","name":"Zwerchhau Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643825,"className":"Gem_Doppelsoeldner_Sturzhau","name":"Sturtzhau Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643827,"className":"Gem_Dragoon_Dragontooth","name":"Dragontooth Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643828,"className":"Gem_Dragoon_Serpentine","name":"Serpentine Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643829,"className":"Gem_Dragoon_Gae_Bulg","name":"Gae Bulg Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643830,"className":"Gem_Dragoon_Dragon_Soar","name":"Dragon Soar Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643831,"className":"Gem_Templer_BattleOrders","name":"Battle Orders Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643832,"className":"Gem_Templer_NonInvasiveArea","name":"(Faded) Non-Invasive Area Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643833,"className":"Gem_Cryomancer_SubzeroShield","name":"Subzero Shield Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643834,"className":"Gem_Sorcerer_Evocation","name":"Evocation Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643835,"className":"Gem_Sorcerer_Desmodus","name":"Desmodus Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643837,"className":"Gem_Alchemist_Combustion","name":"Combustion Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643838,"className":"Gem_Warlock_PoleofAgony","name":"Pole of Agony Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643839,"className":"Gem_Warlock_Invocation","name":"Invocation Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643840,"className":"Gem_Warlock_DarkTheurge","name":"Dark Theurge Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643841,"className":"Gem_Warlock_Mastema","name":"Mastema Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643842,"className":"Gem_QuarrelShooter_StonePicking","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643845,"className":"Gem_Schwarzereiter_WildShot","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643846,"className":"Gem_Falconer_BlisteringThrash","name":"Sonic Strike Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643847,"className":"Gem_Musketeer_CoveringFire","name":"Covering Fire Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643848,"className":"Gem_Musketeer_HeadShot","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643849,"className":"Gem_Musketeer_Snipe","name":"Snipe Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643850,"className":"Gem_Musketeer_PenetrationShot","name":"Penetration Shot Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643851,"className":"Gem_Musketeer_GroovingMuzzle","name":"Grooving Muzzle Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643854,"className":"Gem_Paladin_Sanctuary","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643855,"className":"Gem_Paladin_Demolition","name":"Demolition Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643856,"className":"Gem_Pardoner_Dekatos","name":"Decatose Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643857,"className":"Gem_PlagueDoctor_HealingFactor","name":"Healing Factor Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643858,"className":"Gem_PlagueDoctor_Incineration","name":"Incineration Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643860,"className":"Gem_PlagueDoctor_Fumigate","name":"Fumigate Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643861,"className":"Gem_PlagueDoctor_Pandemic","name":"Pandemic Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643862,"className":"Gem_PlagueDoctor_BeakMask","name":"Beak Mask Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643863,"className":"Gem_Kabbalist_RevengedSevenfold","name":"Revenged Sevenfold Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643864,"className":"Gem_Kabbalist_Ayin_sof","name":"Ein Sof Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643865,"className":"GEM_Swordman_Bear","name":"Bear Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643866,"className":"GEM_Peltasta_HardShield","name":"Hard Shield Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643867,"className":"GEM_Hoplite_SharpSpear","name":"Sharp Spear Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643868,"className":"GEM_Dragoon_DragonFear","name":"Dragon Fear Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643869,"className":"GEM_Templer_AdvancedOrders","name":"Advanced Orders Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643870,"className":"GEM_Templer_FlyingColors","name":"(Faded) Flying Colors Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643871,"className":"GEM_Pyromancer_Prominence","name":"Prominence Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643872,"className":"GEM_Alchemist_SprinkleHPPotion","name":"Sprinkle HP Potion Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643873,"className":"GEM_Alchemist_SprinkleSPPotion","name":"Sprinkle SP Potion Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643874,"className":"GEM_Chronomancer_TimeForward","name":"Time Forward Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643875,"className":"GEM_Necromancer_RaiseSkullwizard","name":"Raise Skull Mage","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643876,"className":"GEM_Elementalist_FireClaw","name":"Fire Claw Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643877,"className":"GEM_Elementalist_ElementalEssence","name":"Elemental Burst Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643878,"className":"GEM_RuneCaster_Stan","name":"Rune of Rock Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643879,"className":"GEM_Archer_Concentration","name":"Concentration Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643880,"className":"GEM_Hunter_Howling","name":"Howling Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643881,"className":"GEM_QuarrelShooter_BlockAndShoot","name":"Block and Shoot Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643882,"className":"GEM_Sapper_SpringTrap","name":"Spring Trap Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643883,"className":"GEM_Sapper_LegHoldTrap","name":"Leghold Trap Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643884,"className":"GEM_Appraiser_Insurance","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643885,"className":"GEM_Falconer_Tomahawk","name":"Tomahawk Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643886,"className":"GEM_Chaplain_Binatio","name":"Binatio Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643887,"className":"GEM_Chaplain_ParaclitusTime","name":"Paraclitus Time Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643888,"className":"GEM_Chaplain_VisibleTalent","name":"Visible Talent Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643889,"className":"GEM_Miko_Omikuji","name":"Omikuji Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643890,"className":"GEM_Scout_DaggerSlash","name":"Dagger Slash Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643891,"className":"GEM_Scout_ObliqueFire","name":"Oblique Fire Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643892,"className":"GEM_Scout_DoubleAttack","name":"Double Attack Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643893,"className":"GEM_Scout_FreeStep","name":"Free Step Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643894,"className":"GEM_Assassin_Behead","name":"Behead Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643895,"className":"GEM_Assassin_InstantaneousAcceleration","name":"Instant Acceleration Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643896,"className":"GEM_Hackapell_HelmChopper","name":"Helm Chopper Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643897,"className":"GEM_QuarrelShooter_Kneelingshot","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643898,"className":"GEM_Cleric_Smite","name":"Smite Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643899,"className":"GEM_Priest_TurnUndead","name":"Turn Undead Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643900,"className":"GEM_Paladin_StoneSkin","name":"Stone Skin Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643901,"className":"GEM_Oracle_DivineMight","name":"Divine Might Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643902,"className":"GEM_OutLaw_FireBlindly","name":"Bully Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643903,"className":"GEM_OutLaw_Bully","name":"Aggress Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643904,"className":"GEM_OutLaw_Rampage","name":"Rampage Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643905,"className":"GEM_Shinobi_Raiton_no_Jutsu","name":"Ration no Jutsu Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643906,"className":"GEM_Thaumaturge_SwellHands","name":"Swell Hands Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643907,"className":"GEM_Enchanter_EnchantGlove","name":"Enchant Glove Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643908,"className":"GEM_Rogue_KnifeThrowing","name":"Knife Throw Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643909,"className":"GEM_Thaumaturge_Quicken","name":"Quicken Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643910,"className":"GEM_PlagueDoctor_Modafinil","name":"Modafinil Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643911,"className":"GEM_Murmillo_FrenziedBurst","name":"Frenzied Burst Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643912,"className":"GEM_Peltasta_ButterFly","name":"Butterfly Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643913,"className":"GEM_Murmillo_Headbutt","name":"Headbutt Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643914,"className":"GEM_Murmillo_ScutumHit","name":"Scutum Hit Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643915,"className":"GEM_Murmillo_ShieldTrain","name":"Shield Train Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643916,"className":"GEM_Murmillo_EmperorsBane","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643917,"className":"GEM_Fencer_BalestraFente","name":"Balestra Fente Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643919,"className":"GEM_Fencer_Fleche","name":"Fleche Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643920,"className":"GEM_Dragoon_Dethrone","name":"Dethrone Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643921,"className":"GEM_Dragoon_DragonFall","name":"Dragon Fall Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643922,"className":"GEM_Templer_MortalSlash","name":"Mortal Slash Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643923,"className":"GEM_Rancer_Crush","name":"Crush Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643924,"className":"GEM_Rancer_Joust","name":"Joust Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643925,"className":"GEM_Rancer_SpillAttack","name":"Unhorsing Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643926,"className":"GEM_Rancer_Quintain","name":"Quintain Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643927,"className":"GEM_Rancer_Chage","name":"Rhongomiant Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643928,"className":"GEM_Rancer_GiganteMarcha","name":"Gigante Marcha Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643929,"className":"GEM_Retiarii_TridentFinish","name":"Trident Finish Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643930,"className":"GEM_Retiarii_EquipDesrption","name":"Disarm Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643931,"className":"GEM_Retiarii_DaggerFinish","name":"Dagger Finish Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643932,"className":"GEM_Retiarii_BlandirCadena","name":"Blandir Cadena Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643933,"className":"GEM_Matador_Muleta","name":"Muleta Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643934,"className":"GEM_Matador_Faena","name":"Faena Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643935,"className":"GEM_Matador_PasoDoble","name":"Paso Doble Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643936,"className":"GEM_Matador_CorridaFinale","name":"Corrida Finale Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643937,"className":"GEM_NakMuay_TeKha","name":"Te Kha Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643938,"className":"GEM_NakMuay_SokChiang","name":"Sok Chiang Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643939,"className":"GEM_NakMuay_TeTrong","name":"Te Trong Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643940,"className":"GEM_NakMuay_KhaoLoi","name":"Khao Loi Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643941,"className":"GEM_Hackapell_Skarphuggning","name":"Skarphuggning Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643942,"className":"GEM_Hackapell_StormBolt","name":"Storm Bolt Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643943,"className":"GEM_Hackapell_CavalryCharge","name":"Cavalry Charge Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643944,"className":"GEM_Hackapell_GrindCutter","name":"Grind Cutter Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643945,"className":"GEM_Hackapell_InfiniteAssault","name":"Infinite Slash Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643946,"className":"GEM_Psychokino_HeavyGravity","name":"Heavy Gravity Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643947,"className":"GEM_Alchemist_AlchemisticMissile","name":"Alchemistic Missile Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643948,"className":"GEM_Elementalist_StormDust","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643949,"className":"GEM_Sage_MicroDimension","name":"Micro Dimension Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643950,"className":"GEM_Sage_UltimateDimension","name":"Ultimate Dimension Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643951,"className":"GEM_Sage_DimensionCompression","name":"Dimension Compression Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643952,"className":"GEM_Sage_HoleOfDarkness","name":"Hole of Darkness Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643953,"className":"GEM_Warlock_Sabbath","name":"Ghastly Trail Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643954,"className":"GEM_Warlock_DemonScratch","name":"Demon Scratch Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643955,"className":"GEM_Featherfoot_BloodBath","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643956,"className":"GEM_Featherfoot_BloodSucking","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643957,"className":"GEM_Featherfoot_BonePointing","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643958,"className":"GEM_Featherfoot_Ngadhundi","name":"Ngadhundi Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643959,"className":"GEM_Featherfoot_Kurdaitcha","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643960,"className":"GEM_Featherfoot_KundelaSlash","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643961,"className":"GEM_Featherfoot_Enervation","name":"Enervation Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643962,"className":"GEM_Featherfoot_BloodCurse","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643963,"className":"GEM_RuneCaster_Isa","name":"Rune of Earth Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643964,"className":"GEM_RuneCaster_Thurisaz","name":"Rune of Repulsion Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643965,"className":"GEM_RuneCaster_Tiwaz","name":"Rune of Justice Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643966,"className":"GEM_RuneCaster_Algiz","name":"Rune of Protection Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643967,"className":"GEM_RuneCaster_Hagalaz","name":"Rune of Destruction Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643968,"className":"GEM_Shadowmancer_ShadowThorn","name":"Shadow Thorn Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643969,"className":"GEM_Shadowmancer_ShadowConjuration","name":"Shadow Conjuration Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643970,"className":"GEM_Shadowmancer_ShadowCondensation","name":"Shadow Condensation Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643971,"className":"GEM_Onmyoji_FireFoxShikigami","name":"Soul Fox Shikigami Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643972,"className":"GEM_Onmyoji_GreenwoodShikigami","name":"Greenwood Shikigami Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643973,"className":"GEM_Onmyoji_WhiteTigerHowling","name":"Howling White Tiger Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643974,"className":"GEM_Onmyoji_WaterShikigami","name":"Wind Shikigami Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643975,"className":"GEM_Onmyoji_Toyou","name":"Toyou Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643976,"className":"GEM_Onmyoji_YinYangConsonance","name":"Ying Yang Harmony Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643977,"className":"GEM_Daoshi_BegoneDemon","name":"Flame Radiation Charm Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643978,"className":"GEM_Daoshi_StormCalling","name":"Snow Tempest Charm Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643979,"className":"GEM_Daoshi_CreepingDeath","name":"Creeping Death Charm Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643980,"className":"GEM_Daoshi_DivinePunishment","name":"Divine Punishment Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643981,"className":"GEM_Daoshi_PhantomEradication","name":"Eradication Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643982,"className":"GEM_Wugushi_LatentVenom","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643983,"className":"GEM_Wugushi_WideMiasma","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643984,"className":"GEM_Wugushi_CrescendoBane","name":"Crescendo Bane Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643985,"className":"GEM_PiedPiper_HamelnNagetier","name":"Hameln Nagetier Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643986,"className":"GEM_Cannoneer_CannonBarrage","name":"Cannon Barrage Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643987,"className":"GEM_Cannoneer_SweepingCannon","name":"Sweeping Cannon Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643988,"className":"GEM_Musketeer_Volleyfire","name":"Volleyfire Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643989,"className":"GEM_Mergen_Unload","name":"Spread Shot Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643990,"className":"GEM_Mergen_FocusFire","name":"Targeted Arrow Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643991,"className":"GEM_Mergen_TrickShot","name":"Triple Arrow Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643992,"className":"GEM_Mergen_DownFall","name":"Down Fall Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643993,"className":"GEM_Mergen_ArrowRain","name":"Arrow Sprinkle Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643994,"className":"GEM_Mergen_Zenith","name":"Zenith Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643995,"className":"GEM_Matross_FireAndRun","name":"Fire and Run Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643996,"className":"GEM_Matross_Explosion","name":"Explosion Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643997,"className":"GEM_Matross_CrouchingStrike","name":"Crouching Strike Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":643998,"className":"GEM_Matross_CanisterShot","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":643999,"className":"GEM_TigerHunter_PierceShot","name":"Piercing Shot Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":644000,"className":"GEM_TigerHunter_RapidShot","name":"Rapid Shot Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744000,"className":"GEM_TigerHunter_Blitz","name":"Ambush Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744001,"className":"GEM_Druid_Seedbomb","name":"Seed Bomb Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744002,"className":"GEM_Druid_ThornVine","name":"Thorn Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744003,"className":"GEM_PlagueDoctor_PlagueVapours","name":"Black Death Steam Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744004,"className":"GEM_Kabbalist_Merkabah","name":"Merkabah Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744005,"className":"GEM_Inquisitor_GodSmash","name":"God Smash Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744006,"className":"GEM_Inquisitor_PearofAnguish","name":"Pear of Anguish Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744007,"className":"GEM_Inquisitor_BreakingWheel","name":"Breaking Wheel Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744008,"className":"GEM_Inquisitor_MalleusMaleficarum","name":"Malleus Maleficarum Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744009,"className":"GEM_Inquisitor_BreastRipper","name":"Ripper Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744010,"className":"GEM_Miko_Gohei","name":"Gohei Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744011,"className":"GEM_Miko_Hamaya","name":"Hamaya Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744012,"className":"GEM_Zealot_Immolation","name":"Immolation Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744013,"className":"GEM_Zealot_FanaticIllusion","name":"Fanatic Illusion Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744014,"className":"GEM_Exorcist_Rubric","name":"Rubric Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744015,"className":"GEM_Exorcist_Entity","name":"Entity Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744016,"className":"GEM_Exorcist_AquaBenedicta","name":"Aqua Benedicta Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744017,"className":"GEM_Exorcist_Gregorate","name":"Gregorate Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744018,"className":"GEM_Exorcist_Katadikazo","name":"Katadikazo Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744019,"className":"GEM_Assassin_PiercingHeart","name":"Piercing Heart Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744020,"className":"GEM_Assassin_Annihilation","name":"Annihilation Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744021,"className":"GEM_OutLaw_SprinkleSands","name":"Throw Sand Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744022,"className":"GEM_OutLaw_BreakBrick","name":"Brick Smash Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744023,"className":"GEM_OutLaw_Mangle","name":"Mangle Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744024,"className":"GEM_Corsair_ImpaleDagger","name":"Impale Dagger Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744025,"className":"GEM_Shinobi_Kunai","name":"Kunai Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744026,"className":"GEM_Shinobi_Katon_no_jutsu","name":"Katon no Jutsu Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744027,"className":"GEM_Shinobi_Mijin_no_jutsu","name":"Mijin no Jutsu Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744028,"className":"GEM_Linker_ElectricShock","name":"Electric Shock Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744029,"className":"GEM_Schwarzereiter_AssaultFire","name":"Marching Fire Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744030,"className":"GEM_Bulletmarker_NapalmBullet","name":"Napalm Bullet Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744031,"className":"GEM_Bulletmarker_FullMetalJacket","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":744032,"className":"GEM_Bulletmarker_RestInPeace","name":"R.I.P. Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744033,"className":"GEM_Bulletmarker_BloodyOverdrive","name":"Bloody Overdrive Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744034,"className":"GEM_Bulletmarker_SmashBullet","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":744035,"className":"GEM_Bulletmarker_MozambiqueDrill","name":"Mozambique Drill Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744036,"className":"GEM_Arditi_Granata","name":"Granata Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744037,"className":"GEM_Arditi_TreGranata","name":"Tre Granate Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744038,"className":"GEM_Arditi_Ritirarsi","name":"Ritirarsi Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744039,"className":"GEM_Arditi_Invasione","name":"Invasione Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744040,"className":"GEM_Arditi_Taglio","name":"Taglio Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744041,"className":"GEM_Sheriff_QuickDraw","name":"Quick Draw Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744042,"className":"GEM_Sheriff_Fanning","name":"Fanning Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744043,"className":"GEM_Sheriff_Peacemaker","name":"Peacemaker Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744044,"className":"GEM_Sheriff_AimingShot","name":"Aiming Shot Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744045,"className":"GEM_BlossomBlader_FallenBlossom","name":"Fallen Blossom Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744046,"className":"GEM_BlossomBlader_ControlBlade","name":"Control Blade Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744047,"className":"GEM_BlossomBlader_Flash","name":"Flash Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744048,"className":"GEM_BlossomBlader_BlossomSlash","name":"Blossom Slash Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744049,"className":"GEM_TerraMancer_SandBlast","name":"Sand Blast Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744050,"className":"GEM_TerraMancer_StoneShower","name":"Stone Shower Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744051,"className":"GEM_TerraMancer_RollingStone","name":"Rolling Stone Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744052,"className":"GEM_TerraMancer_Implosion","name":"Implosion Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744053,"className":"GEM_TerraMancer_HornOfGolem","name":"Horn of Golem Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744054,"className":"GEM_Arbalester_DarkJudgement","name":"Dark Judgement Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744055,"className":"GEM_Arbalester_GuidedShot","name":"Guided Shot Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744056,"className":"GEM_Arbalester_FanwiseShots","name":"Fanwise Shots Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744057,"className":"GEM_Arbalester_Escape","name":"Escape Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744058,"className":"GEM_Arbalester_DeadZone","name":"Dead Zone Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744059,"className":"GEM_Arbalester_ShiningBurst","name":"Shining Burst Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744060,"className":"GEM_Crusader_HolySmash","name":"Holy Smash Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744061,"className":"GEM_Crusader_Sacred","name":"Sacred Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744062,"className":"GEM_Crusader_RingOfLight","name":"Ring of Light Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744063,"className":"GEM_Crusader_Condemn","name":"Condemn Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744064,"className":"GEM_Crusader_ProtectionOfGoddess","name":"Protection of Goddess Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744065,"className":"GEM_Crusader_Retaliation","name":"Retaliation Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744066,"className":"GEM_Rangda_Luka","name":"Luka Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744067,"className":"GEM_Rangda_Kutukan","name":"Kutukan Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744068,"className":"GEM_Rangda_Rawa","name":"Rawa Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744069,"className":"GEM_OutLaw_FireBlindly_True","name":"Blindfire Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744070,"className":"GEM_Appraiser_LargeMagnifyingGlass","name":"Huge Magnifier Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744071,"className":"GEM_Appraiser_HighMagnifyingGlass","name":"High Scale Magnifying Glass Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744072,"className":"GEM_Appraiser_TripletLens","name":"Triplet Lense Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744090,"className":"GEM_Schwarzereiter_DoubleBullet","name":"Serial Bullet Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744377,"className":"GEM_Swordman_Liberate","name":"Liberate Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744378,"className":"GEM_Cataphract_AcrobaticMount","name":"Acrobatic Mount Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744379,"className":"GEM_Fencer_Preparation","name":"Preparation Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744380,"className":"GEM_Fencer_EpeeGarde","name":"Epee Garde Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744381,"className":"GEM_Murmillo_CassisCrista","name":"Cassis Crista Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744382,"className":"GEM_Murmillo_Sprint","name":"Sprint Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744383,"className":"GEM_Dragoon_DragoonHelmet","name":"Dragonoid Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744384,"className":"GEM_Templer_BuildForge","name":"(Faded) Forge Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744385,"className":"GEM_Templer_BuildShieldCharger","name":"(Faded) Shield Charger Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744386,"className":"GEM_Templer_HorseRiding","name":"(Faded) Horse Riding Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744387,"className":"GEM_Rancer_Commence","name":"Initiate Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744388,"className":"GEM_Rancer_Prevent","name":"Prevent Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744389,"className":"GEM_Matador_Capote","name":"Capote Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744390,"className":"GEM_Matador_Ole","name":"Ole Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744391,"className":"GEM_Matador_BackSlide","name":"Back Slide Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744392,"className":"GEM_NakMuay_RamMuay","name":"Ram Muay Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744393,"className":"GEM_NakMuay_MuayThai","name":"Muay Thai Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744394,"className":"GEM_Retiarii_FishingNetsDraw","name":"Pull Rete Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744395,"className":"GEM_Retiarii_ThrowingFishingNet","name":"Throw Rete Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744396,"className":"GEM_Retiarii_DaggerGuard","name":"Dagger Guard Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744397,"className":"GEM_Hackapell_HakkaPalle","name":"Hakka Palle Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744398,"className":"GEM_BlossomBlader_Flowering","name":"Flowering Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744399,"className":"GEM_BlossomBlader_StartUp","name":"StartUp Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744446,"className":"GEM_Sorcerer_Obey","name":"Riding Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744447,"className":"GEM_Sorcerer_Morph","name":"Morph Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744448,"className":"GEM_Sorcerer_SummonServant","name":"Summon Servant Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744449,"className":"GEM_Chronomancer_Pass","name":"Pass Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744450,"className":"GEM_Chronomancer_QuickCast","name":"Quick Cast","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744451,"className":"GEM_Necromancer_CreateShoggoth","name":"Create Shoggoth Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744452,"className":"GEM_Necromancer_Disinter","name":"Disinter Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744453,"className":"GEM_Necromancer_RaiseDead","name":"Raise Dead Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744454,"className":"GEM_Necromancer_RaiseSkullarcher","name":"Raise Skull Archer Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744455,"className":"GEM_Alchemist_Dig","name":"Dig Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744456,"className":"GEM_Alchemist_Roasting","name":"Gem Roasting Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744457,"className":"GEM_Alchemist_Tincturing","name":"Tincturing Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744458,"className":"GEM_Alchemist_MagnumOpus","name":"Magnum Opus Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744459,"className":"GEM_Featherfoot_Levitation","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":744460,"className":"GEM_Warlock_EvilSacrifice","name":"Evil Sacrifice Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744461,"className":"GEM_RuneCaster_Ehwaz","name":"Rune of Gravity Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744462,"className":"GEM_RuneCaster_Berkana","name":"Rune of Beginning Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744463,"className":"GEM_Sage_Portal","name":"Portal Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744464,"className":"GEM_Sage_Blink","name":"Blink Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744465,"className":"GEM_Sage_MissileHole","name":"Missile Hole Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744466,"className":"GEM_Sage_PortalShop","name":"Portal Shop Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744467,"className":"GEM_Shadowmancer_ShadowPool","name":"Shadow Pool Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744468,"className":"GEM_Shadowmancer_Hallucination","name":"Hallucination Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744469,"className":"GEM_Shadowmancer_ShadowFatter","name":"Shadow Fatter Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744470,"className":"GEM_Shadowmancer_InfernalShadow","name":"Infernal Shadow Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744471,"className":"GEM_Onmyoji_GenbuArmor","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":744472,"className":"GEM_Onmyoji_CrystalballShikigami","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":744473,"className":"GEM_Daoshi_LightningCharm","name":"Strengthen Charm Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744474,"className":"GEM_Daoshi_FlameRadiation","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":744475,"className":"GEM_Daoshi_FireCharm","name":"Fire Charm Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744476,"className":"GEM_TerraMancer_SandWall","name":"Sand Wall Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744538,"className":"GEM_Archer_Jump","name":"Leap Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744539,"className":"GEM_Hunter_Praise","name":"Praise Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744540,"className":"GEM_Falconer_Aiming","name":"Aiming Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744541,"className":"GEM_Falconer_FirstStrike","name":"Pre-Emptive Strike Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744542,"className":"GEM_Cannoneer_SmokeGrenade","name":"Smoke Grenade Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744543,"className":"GEM_Cannoneer_Bazooka","name":"Bazooka Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744544,"className":"GEM_Musketeer_SnipersSerenity","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":744545,"className":"GEM_Musketeer_PrimeAndLoad","name":"Prime and Load Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744546,"className":"GEM_Appraiser_Apprise","name":"Identify Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744547,"className":"GEM_Appraiser_Overestimate","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":744548,"className":"GEM_Appraiser_Forgery","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":744549,"className":"GEM_Appraiser_Devaluation","name":"Devaluation Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744550,"className":"GEM_Appraiser_Blindside","name":"Expose Weakness Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744551,"className":"GEM_PiedPiper_Dissonanz","name":"Dissonanz Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744552,"className":"GEM_PiedPiper_Wiegenlied","name":"Wiegenlied Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744553,"className":"GEM_PiedPiper_HypnotischeFlote","name":"Hypnotische Floete Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744554,"className":"GEM_PiedPiper_Friedenslied","name":"Friedenslied Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744555,"className":"GEM_PiedPiper_Marschierendeslied","name":"Marschierendeslied Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744556,"className":"GEM_PiedPiper_LiedDerWeltbaum","name":"Lied des Weltbaum Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744557,"className":"GEM_PiedPiper_Improvisation","name":"Stegreifspiel Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744558,"className":"GEM_Matross_MenaceShot","name":"Menace Shot Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744559,"className":"GEM_Matross_Roar","name":"Roar Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744560,"className":"GEM_TigerHunter_Tracking","name":"Tracking Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744561,"className":"GEM_TigerHunter_EyeofBeast","name":"Tiger Hunting Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744562,"className":"GEM_TigerHunter_HideShot","name":"Camo Shot Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744563,"className":"GEM_Arquebusier_Prediction","name":"Prediction Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744564,"className":"GEM_Arquebusier_PinpointFire","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":744565,"className":"GEM_Arquebusier_LuckyStrike","name":"Linear Shooting Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744566,"className":"GEM_Arquebusier_ArquebusBarrage","name":"Arquebus Barrage Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744567,"className":"GEM_Arquebusier_Salute","name":"Dusty Salute Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744568,"className":"GEM_Arquebusier_DesperateDefense","name":"Desperate Defense Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744569,"className":"GEM_Arquebusier_PrecisionFire","name":"Precision Fire Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744602,"className":"GEM_Priest_Resurrection","name":"Resurrection Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744603,"className":"GEM_Sadhu_Prakriti","name":"Prakriti Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744604,"className":"GEM_Sadhu_TransmitPrana","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":744605,"className":"GEM_Sadhu_AstralBodySmite","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":744606,"className":"GEM_Pardoner_SpellShop","name":"Spell Shop Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744607,"className":"GEM_Druid_Lycanthropy","name":"Lycanthropy Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744608,"className":"GEM_Druid_HengeStone","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":744609,"className":"GEM_Oracle_Clairvoyance","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":744610,"className":"GEM_Oracle_Ressetting","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":744611,"className":"GEM_Oracle_DeathVerdict","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":744612,"className":"GEM_Oracle_SwitchGender","name":"Gender Switch Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744613,"className":"GEM_Oracle_Foretell","name":"Foretell Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744614,"className":"GEM_Oracle_TwistOfFate","name":"Twist of Fate Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744615,"className":"GEM_PlagueDoctor_Methadone","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":744616,"className":"GEM_Kabbalist_Nachash","name":"Nachash Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744617,"className":"GEM_Kabbalist_Notarikon","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":744618,"className":"GEM_Kabbalist_Clone","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":744619,"className":"GEM_Kabbalist_Gevura","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":744620,"className":"GEM_Kabbalist_TheTreeOfSepiroth","name":"Tree of Sepiroth Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744621,"className":"GEM_Chaplain_LastRites","name":"Last Rites Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744622,"className":"GEM_Chaplain_BuildCappella","name":"Deploy Cappella Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744623,"className":"GEM_Chaplain_Aspergillum","name":"Aspergillum Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744624,"className":"GEM_Inquisitor_IronMaiden","name":"Iron Maiden Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744625,"className":"GEM_Inquisitor_Judgment","name":"Judgment Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744626,"className":"GEM_Miko_HoukiBroom","name":"Sweeping Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744627,"className":"GEM_Miko_Kasiwade","name":"Clap Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744628,"className":"GEM_Miko_KaguraDance","name":"Kagura Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744629,"className":"GEM_Zealot_Invulnerable","name":"Invulnerable Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744630,"className":"GEM_Zealot_BeadyEyed","name":"Beady Eyed Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744631,"className":"GEM_Zealot_Fanaticism","name":"Fanaticism Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744632,"className":"GEM_Zealot_BlindFaith","name":"Blind Faith Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744633,"className":"GEM_Zealot_EmphasisTrust","name":"Emphatic Trust Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744634,"className":"GEM_Exorcist_Engkrateia","name":"Engkrateia Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744635,"className":"GEM_Exorcist_Koinonia","name":"Grand Cross Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744636,"className":"GEM_Crusader_Chants","name":"Chant Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744722,"className":"GEM_Assassin_Hasisas","name":"Hasisas Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744723,"className":"GEM_Assassin_HallucinationSmoke","name":"Hallucination Smoke Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744725,"className":"GEM_Squire_Repair","name":"Repair Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744726,"className":"GEM_Squire_Camp","name":"Base Camp Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744727,"className":"GEM_Squire_FoodTable","name":"Refreshment Table Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744728,"className":"GEM_Squire_EquipmentTouchUp","name":"Equipment Maintenance Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744729,"className":"GEM_Corsair_Brutality","name":"Brutality Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744730,"className":"GEM_Shinobi_Bunshin_no_jutsu","name":"Bunshin no Jutsu Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744731,"className":"GEM_Shinobi_Mokuton_no_jutsu","name":"Mokuton no Jutsu Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744732,"className":"GEM_Thaumaturge_Reversi","name":"Reversi Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":744733,"className":"GEM_Linker_Unbind","name":"Unbind Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744734,"className":"GEM_Enchanter_Agility","name":"Agility Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744735,"className":"GEM_Enchanter_EnchantArmor","name":"Enchant Armor Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":744736,"className":"GEM_Enchanter_EnchantLightning","name":"Enchant Weapon Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744737,"className":"GEM_Enchanter_EnchantEarth","name":"Enchant Earth Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744738,"className":"GEM_Enchanter_LightningHands","name":"Deleted Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","numArg1":1,"numArg2":9}},{"itemId":744739,"className":"GEM_Enchanter_OverReinforce","name":"Over-Reinforce Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744740,"className":"GEM_Schwarzereiter_EvasiveAction","name":"Evasive Action Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744741,"className":"GEM_Bulletmarker_DoubleGunStance","name":"Double Gun Stance Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744742,"className":"GEM_Bulletmarker_TracerBullet","name":"Tracer Bullet Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744743,"className":"GEM_Bulletmarker_FreezeBullet","name":"Freeze Bullet Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744744,"className":"GEM_Bulletmarker_Outrage","name":"Outrage Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744745,"className":"GEM_Arditi_Recupero","name":"Recupero Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744746,"className":"GEM_Sheriff_Westraid","name":"Westraid Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744747,"className":"GEM_Sheriff_Redemption","name":"Redemption Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744748,"className":"GEM_Rangda_Barong","name":"Barong Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744749,"className":"GEM_Rangda_Penyerapan","name":"Penyerapan Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744750,"className":"GEM_Rangda_Keletihan","name":"Keletihan Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744751,"className":"GEM_Clown_SpinningKnife","name":"Spinning Knife Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744752,"className":"GEM_Clown_Replica","name":"Replica Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744753,"className":"GEM_Clown_FatalRoulette","name":"Fatal Roulette Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744754,"className":"GEM_Clown_Climax","name":"Climax Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744755,"className":"GEM_Clown_TrickorTreat","name":"Trick or Treat Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744756,"className":"GEM_Clown_ClownWalk","name":"Clown Walk Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744757,"className":"GEM_Luchador_Enmascarado","name":"Enmascarado Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744758,"className":"GEM_Luchador_Chop","name":"Chop Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744759,"className":"GEM_Luchador_LuchaDeSilla","name":"Lucha De Silla Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744760,"className":"GEM_Luchador_Golpear","name":"Golpear Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744761,"className":"GEM_Luchador_Chocar","name":"Chocar Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744762,"className":"GEM_Luchador_Ceremonia","name":"Ceremonia Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744763,"className":"GEM_Luchador_Martinete","name":"Martinete Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744764,"className":"GEM_Sadhu_Anila","name":"Enira Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744765,"className":"GEM_Sadhu_Tanoti","name":"Tanoti Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744766,"className":"GEM_Sadhu_Patati","name":"Patati Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744767,"className":"GEM_Sadhu_Moksha","name":"Moksha Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744768,"className":"GEM_Sadhu_Soulmaster","name":"Spirit Expert Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744820,"className":"GEM_Alchemist_ItemAwakening","name":"Item Awakening Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744821,"className":"GEM_Hwarang_PyeonJeon","name":"Pyeonjeon Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744822,"className":"GEM_Hwarang_BlackHornBow","name":"Black Horn Bow Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744823,"className":"GEM_Hwarang_WhiteHornBow","name":"White Horn Bow Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744824,"className":"GEM_Hwarang_DoNotRetreat","name":"Outbrave Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744825,"className":"GEM_Hwarang_Brotherhood","name":"Brotherhood Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744826,"className":"GEM_Hwarang_ArrowDancing","name":"Dancing Arrow Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744827,"className":"GEM_Ranger_Scan","name":"Scan Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744828,"className":"GEM_Ranger_Strafe","name":"Strafe Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744829,"className":"GEM_Ranger_BlazingArrow","name":"Blazing Arrow Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744830,"className":"GEM_Fletcher_FletcherArrowShot","name":"Fletcher Arrow Shot Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744831,"className":"GEM_Fletcher_CatenaChainArrow","name":"Catena Chain Arrow Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744832,"className":"GEM_Matross_ArtilleryCall","name":"Artillery Call Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744833,"className":"Gem_Highlander_Defiance","name":"Defiance Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744834,"className":"GEM_Enchanter_EnchantAura","name":"Enchant Aura Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744835,"className":"Gem_Thaumaturge_Transmute","name":"Transmute Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744836,"className":"Gem_Hakkapeliter_HackaPoa","name":"Hakka Poa Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744837,"className":"Gem_Hakkapeliter_Blossa","name":"Blosa Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744838,"className":"Gem_Hakkapeliter_AnkleShot","name":"Ankle Shot Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744839,"className":"Gem_Hakkapeliter_Spaning","name":"Spaning Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744840,"className":"Gem_Hakkapeliter_TrooperCharge","name":"Trooper Charge Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744841,"className":"Gem_Hakkapeliter_InfiniteAssault","name":"Infinite Assault Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744842,"className":"GEM_Featherfoot_Kundela","name":"Kundela Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744843,"className":"GEM_Featherfoot_Bloodexplosion","name":"Blood Explosion Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744844,"className":"GEM_Featherfoot_Bloodpool","name":"Blood Pool Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744845,"className":"GEM_Featherfoot_Plague","name":"Plague Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744846,"className":"GEM_Keraunos_OverLoad","name":"Overload Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744847,"className":"GEM_Keraunos_MagneticField","name":"Electric Orb Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744848,"className":"GEM_Keraunos_LightningSpear","name":"Lightning Spear Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744849,"className":"GEM_Keraunos_ElectRode","name":"Electrode Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744850,"className":"GEM_Keraunos_Static","name":"Static Field Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744851,"className":"GEM_Keraunos_ElectricDrive","name":"Electric Drive Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744852,"className":"GEM_Lama_Lamapose","name":"Vipashyana Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744853,"className":"GEM_Lama_StrongfistHanginglegs","name":"Strong Fist/ Leg Trip Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744854,"className":"GEM_Lama_PointkickEarthshock","name":"Point Kick / Break Mountain Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744855,"className":"GEM_Lama_FlyingkickSuddenkick","name":"Sudden Kick / Flying Kick Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744856,"className":"GEM_Lama_Endlessattacks","name":"Surging Wave Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744857,"className":"GEM_Kabbalist_Anagrama","name":"Anagrama Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744858,"className":"GEM_Templer_MortalWave","name":"Mortal Wave Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744859,"className":"GEM_Templer_Retribution","name":"Retribution Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744860,"className":"GEM_Templer_MoraleBanner","name":"Flag of Morale Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744861,"className":"GEM_Templer_RevengeBanner","name":"Flag of Revenge Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744862,"className":"GEM_Templer_VitalityBanner","name":"Flag of Vitality Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744863,"className":"GEM_Jaguar_JaguarStance","name":"Jaguar Stance Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744864,"className":"GEM_Jaguar_WildRush","name":"Wild Rush Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744865,"className":"GEM_Jaguar_TargetOfHunt","name":"Hunter’s Target Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744866,"className":"GEM_Jaguar_WildHowling","name":"Wild Howling Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744867,"className":"GEM_Jaguar_WildThorn","name":"Wild Thorn Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744868,"className":"GEM_Jaguar_WildClaw","name":"Wild Claw Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744869,"className":"GEM_Jaguar_AdaptabilityOfWildness","name":"Wild Adaptability: Extreme","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744870,"className":"GEM_Hunter_PetAttack","name":"Attack! Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744871,"className":"GEM_Hunter_Bolas","name":"Bolas Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744872,"className":"GEM_Hunter_BleedingPierce","name":"Bleeding Pierce Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744873,"className":"GEM_Hunter_Brawl","name":"Udang-tang-tang! Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744874,"className":"GEM_SpearMaster_WildTigerSpear","name":"Spear of the Brave Tiger Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744875,"className":"GEM_SpearMaster_RushSpear","name":"Advancing Spear Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744876,"className":"GEM_SpearMaster_SwiftMove","name":"Light as a Feather Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744877,"className":"GEM_SpearMaster_FlyingSerpentFall","name":"Fall of the Ascending Dragon Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744878,"className":"GEM_SpearMaster_UniqueSpearDance","name":"Painting with a Spear Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744879,"className":"GEM_SpearMaster_Hierophany","name":"Incarnation Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744880,"className":"GEM_Engineer_FlameTurret","name":"Flame Turret Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744882,"className":"GEM_Engineer_ArrowTurret","name":"Arrow Turret Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744883,"className":"GEM_Engineer_LightningTurret","name":"Lightning Turret Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744884,"className":"GEM_Engineer_BuffTurret","name":"Buff Turret Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744885,"className":"GEM_Engineer_KingMechaV","name":"King Mecha V Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":744886,"className":"GEM_Engineer_RepairKit","name":"Fix Kit Gem","type":"Consume","group":"Gem","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"SkillGem","numArg1":1,"numArg2":9}},{"itemId":850001,"className":"Gem_High_STR","name":"[Lv.460] Aether Gem - STR","type":"Consume","group":"Gem_High_Color","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"STR","numArg1":460}},{"itemId":850002,"className":"Gem_High_INT","name":"[Lv.460] Aether Gem - INT","type":"Consume","group":"Gem_High_Color","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"INT","numArg1":460}},{"itemId":850003,"className":"Gem_High_DEX","name":"[Lv.460] Aether Gem - DEX","type":"Consume","group":"Gem_High_Color","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"DEX","numArg1":460}},{"itemId":850004,"className":"Gem_High_MNA","name":"[Lv.460] Aether Gem - SPR","type":"Consume","group":"Gem_High_Color","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"MNA","numArg1":460}},{"itemId":850005,"className":"Gem_High_CON","name":"[Lv.460] Aether Gem - CON","type":"Consume","group":"Gem_High_Color","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"CON","numArg1":460}},{"itemId":850006,"className":"Gem_High_STR_480","name":"[Lv.480] Aether Gem - STR","type":"Consume","group":"Gem_High_Color","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"STR","numArg1":480}},{"itemId":850007,"className":"Gem_High_INT_480","name":"[Lv.480] Aether Gem - INT","type":"Consume","group":"Gem_High_Color","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"INT","numArg1":480}},{"itemId":850008,"className":"Gem_High_DEX_480","name":"[Lv.480] Aether Gem - DEX","type":"Consume","group":"Gem_High_Color","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"DEX","numArg1":480}},{"itemId":850009,"className":"Gem_High_MNA_480","name":"[Lv.480] Aether Gem - SPR","type":"Consume","group":"Gem_High_Color","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"MNA","numArg1":480}},{"itemId":850010,"className":"Gem_High_CON_480","name":"[Lv.480] Aether Gem - CON","type":"Consume","group":"Gem_High_Color","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GEM_EQUIP","strArg":"CON","numArg1":480}},{"itemId":844000,"className":"Gem_Relic_Cyan_L_001","name":"Cyan Gem - Sword of the Ruler","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":844001,"className":"Gem_Relic_Cyan_L_002","name":"Cyan Gem - Harvesting Scythe","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":844002,"className":"Gem_Relic_Cyan_L_003","name":"Cyan Gem - Bracelet of a Comet","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":844003,"className":"Gem_Relic_Cyan_L_004","name":"Cyan Gem - Foreshadowing Bladeware","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":845000,"className":"Gem_Relic_Cyan_G_001","name":"Cyan Gem - Demonic Sword of the Giant","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":845001,"className":"Gem_Relic_Cyan_G_002","name":"Cyan Gem - Basin of Consilience","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":845002,"className":"Gem_Relic_Cyan_G_003","name":"Cyan Gem - Freedom of Eternity","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":846000,"className":"Gem_Relic_Magenta_L_001","name":"Magenta Gem - Determination","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":846001,"className":"Gem_Relic_Magenta_L_002","name":"Magenta Gem - Testify","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":846002,"className":"Gem_Relic_Magenta_L_003","name":"Magenta Gem - Armed","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":846003,"className":"Gem_Relic_Magenta_L_004","name":"Magenta Gem - Saltation","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":847000,"className":"Gem_Relic_Magenta_G_001","name":"Magenta Gem - Lethal","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":847001,"className":"Gem_Relic_Magenta_G_002","name":"Magenta Gem - Marvel","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":847002,"className":"Gem_Relic_Magenta_G_003","name":"Magenta Gem - Hypostasis","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":848000,"className":"Gem_Relic_Black_L_001","name":"Black Gem - Healing","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":128}},{"itemId":848001,"className":"Gem_Relic_Black_L_002","name":"Black Gem - HP Recovery","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":126}},{"itemId":848002,"className":"Gem_Relic_Black_L_003","name":"Black Gem - SP Recovery","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":36}},{"itemId":848003,"className":"Gem_Relic_Black_L_004","name":"Black Gem - Maximum SP","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":126}},{"itemId":848004,"className":"Gem_Relic_Black_L_005","name":"Black Gem - Attack against Insect-type Target","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":381}},{"itemId":848005,"className":"Gem_Relic_Black_L_006","name":"Black Gem - Attack against Devil-type Target","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":381}},{"itemId":848006,"className":"Gem_Relic_Black_L_007","name":"Black Gem - Attack against Beast-type Target","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":381}},{"itemId":848007,"className":"Gem_Relic_Black_L_008","name":"Black Gem - Attack against Mutant-type Target","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":381}},{"itemId":848008,"className":"Gem_Relic_Black_L_009","name":"Black Gem - Attack against Plant-type Target","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":381}},{"itemId":848009,"className":"Gem_Relic_Black_L_010","name":"Black Gem - Fire Property Magic Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":255}},{"itemId":848010,"className":"Gem_Relic_Black_L_011","name":"Black Gem - Ice Property Magic Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":255}},{"itemId":848011,"className":"Gem_Relic_Black_L_012","name":"Black Gem - Lightning Property Magic Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":255}},{"itemId":848012,"className":"Gem_Relic_Black_L_013","name":"Black Gem - Earth Property Magic Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":255}},{"itemId":848013,"className":"Gem_Relic_Black_L_014","name":"Black Gem - Poison Property Magic Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":255}},{"itemId":848014,"className":"Gem_Relic_Black_L_015","name":"Black Gem - Dark Property Magic Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":255}},{"itemId":848015,"className":"Gem_Relic_Black_L_016","name":"Black Gem - Holy Property Magic Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":255}},{"itemId":848016,"className":"Gem_Relic_Black_L_017","name":"Black Gem - Psychokinesis Property Magic Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":255}},{"itemId":848017,"className":"Gem_Relic_Black_L_018","name":"Black Gem - Non-property Magic Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":255}},{"itemId":848018,"className":"Gem_Relic_Black_L_019","name":"Black Gem - Arrow Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":255}},{"itemId":848019,"className":"Gem_Relic_Black_L_020","name":"Black Gem - Cannon Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":255}},{"itemId":848020,"className":"Gem_Relic_Black_L_021","name":"Black Gem - Pistol Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":255}},{"itemId":848021,"className":"Gem_Relic_Black_L_022","name":"Black Gem - Pierce Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":255}},{"itemId":848022,"className":"Gem_Relic_Black_L_023","name":"Black Gem - Strike Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":255}},{"itemId":848023,"className":"Gem_Relic_Black_L_024","name":"Black Gem - Slash Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":255}},{"itemId":848024,"className":"Gem_Relic_Black_L_025","name":"Black Gem - Additional Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":445}},{"itemId":849000,"className":"Gem_Relic_Black_G_001","name":"Black Gem - Healing","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":166}},{"itemId":849001,"className":"Gem_Relic_Black_G_002","name":"Black Gem - HP Recovery","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":163}},{"itemId":849002,"className":"Gem_Relic_Black_G_003","name":"Black Gem - SP Recovery","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":49}},{"itemId":849003,"className":"Gem_Relic_Black_G_004","name":"Black Gem - Maximum SP","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":163}},{"itemId":849004,"className":"Gem_Relic_Black_G_005","name":"Black Gem - Attack against Insect-type Target","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":496}},{"itemId":849005,"className":"Gem_Relic_Black_G_006","name":"Black Gem - Attack against Devil-type Target","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":496}},{"itemId":849006,"className":"Gem_Relic_Black_G_007","name":"Black Gem - Attack against Beast-type Target","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":496}},{"itemId":849007,"className":"Gem_Relic_Black_G_008","name":"Black Gem - Attack against Mutant-type Target","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":496}},{"itemId":849008,"className":"Gem_Relic_Black_G_009","name":"Black Gem - Attack against Plant-type Target","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":496}},{"itemId":849009,"className":"Gem_Relic_Black_G_010","name":"Black Gem - Fire Property Magic Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":332}},{"itemId":849010,"className":"Gem_Relic_Black_G_011","name":"Black Gem - Ice Property Magic Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":332}},{"itemId":849011,"className":"Gem_Relic_Black_G_012","name":"Black Gem - Lightning Property Magic Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":332}},{"itemId":849012,"className":"Gem_Relic_Black_G_013","name":"Black Gem - Earth Property Magic Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":332}},{"itemId":849013,"className":"Gem_Relic_Black_G_014","name":"Black Gem - Poison Property Magic Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":332}},{"itemId":849014,"className":"Gem_Relic_Black_G_015","name":"Black Gem - Dark Property Magic Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":332}},{"itemId":849015,"className":"Gem_Relic_Black_G_016","name":"Black Gem - Holy Property Magic Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":332}},{"itemId":849016,"className":"Gem_Relic_Black_G_017","name":"Black Gem - Psychokinesis Property Magic Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":332}},{"itemId":849017,"className":"Gem_Relic_Black_G_018","name":"Black Gem - Non-property Magic Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":332}},{"itemId":849018,"className":"Gem_Relic_Black_G_019","name":"Black Gem - Arrow Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":332}},{"itemId":849019,"className":"Gem_Relic_Black_G_020","name":"Black Gem - Cannon Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":332}},{"itemId":849020,"className":"Gem_Relic_Black_G_021","name":"Black Gem - Pistol Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":332}},{"itemId":849021,"className":"Gem_Relic_Black_G_022","name":"Black Gem - Pierce Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":332}},{"itemId":849022,"className":"Gem_Relic_Black_G_023","name":"Black Gem - Strike Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":332}},{"itemId":849023,"className":"Gem_Relic_Black_G_024","name":"Black Gem - Slash Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":332}},{"itemId":849024,"className":"Gem_Relic_Black_G_025","name":"Black Gem - Additional Damage","type":"Consume","group":"Gem_Relic","weight":1,"maxStack":1,"price":1000,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":623}},{"itemId":10000,"className":"NoHelmet","name":"Empty_helmet","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0},{"itemId":10001,"className":"murmillo_helmet","name":"Murmillo Helmet","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Helmet"},{"itemId":10002,"className":"helmet_plaguedoctor","name":"Plague Doctor Helmet","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Helmet"},{"itemId":10003,"className":"helmet_shark","name":"Shark Head Costume","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Helmet"},{"itemId":10004,"className":"helmet_ghostcorsair01","name":"Ghost Pirate Captain Hat Costume","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Helmet"},{"itemId":10005,"className":"helmet_weddingvail01","name":"Heart-Throb Wedding Veil Costume","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":10006,"className":"helmet_fishbowl","name":"Fish Tank Helmet","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":10007,"className":"helmet_diver","name":"Diver Helmet","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":10008,"className":"DragoonHelmet","name":"Dragoon Helmet","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Helmet"},{"itemId":10009,"className":"pumkin_helmet","name":"Jack-o'-Lantern Helmet","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":10010,"className":"helmet_Rudolf01","name":"Rudolph Helmet","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":10011,"className":"helmet_weddingvail02","name":"Pit-a-pat Veil","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_weddingvail02"}},{"itemId":10012,"className":"helmet_astronaut","name":"GM's Astro Ambition Helmet","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":10013,"className":"helmet_astronaut02","name":"Martian Ambition Helmet","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":10014,"className":"helmet_romance01","name":"Elegant Voluminous Rolls","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_romance01"}},{"itemId":10015,"className":"helmet_romance02","name":"Rose Knight in Shock","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_romance02"}},{"itemId":10018,"className":"helmet_galaxy01","name":"Twilight Knight Helm","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_galaxy01"}},{"itemId":10019,"className":"helmet_galaxy02","name":"Twilight Star Royal Guard Helm","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_galaxy02"}},{"itemId":10020,"className":"helmet_galaxy03","name":"Twilight Star Dispatcher Helm","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_galaxy03"}},{"itemId":10021,"className":"helmet_blackbear","name":"Black Bear Helmet","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_blackbear"}},{"itemId":10022,"className":"helmet_squadron_red_M","name":"Red TOS Ranger Helmet (Male)","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_squadron_red"}},{"itemId":10023,"className":"helmet_squadron_red_F","name":"Red TOS Ranger Helmet (Female)","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_squadron_red"}},{"itemId":10024,"className":"helmet_squadron_pink","name":"Pink TOS Ranger Helmet","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_squadron_pink"}},{"itemId":10025,"className":"helmet_squadron_blue","name":"Blue TOS Ranger Helmet","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_squadron_blue"}},{"itemId":10026,"className":"helmet_squadron_green","name":"Green TOS Ranger Helmet","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_squadron_green"}},{"itemId":10027,"className":"helmet_squadron_yellow","name":"Yellow TOS Ranger Helmet","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_squadron_yellow"}},{"itemId":10038,"className":"helmet_plaguedoctor_white","name":"Plague Doctor White Mask","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Helmet"},{"itemId":10039,"className":"helmet_plaguedoctor_red","name":"Plague Doctor Red Mask","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Helmet"},{"itemId":10040,"className":"helmet_twnpanda","name":"Panda Helmet Costume","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_blackbear"}},{"itemId":10041,"className":"helmet_luchador_red","name":"Luchador Mask(Red)","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Helmet"},{"itemId":10042,"className":"helmet_luchador_green","name":"Luchador Mask(Green)","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Helmet"},{"itemId":10043,"className":"helmet_panda_kor","name":"Panda Helmet Costume","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_blackbear"}},{"itemId":10044,"className":"helmet_jaguar","name":"Jaguar Helmet","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Helmet"},{"itemId":10045,"className":"helmet_jaguar_black","name":"Jaguar Helmet (Black)","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Helmet"},{"itemId":19000,"className":"helmet_songpyun","name":"Sweet Dumpling Helmet Costume","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":19001,"className":"helmet_golddog01","name":"Golden Puppy Head","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":19002,"className":"goldstonedog01","name":"24K Gold Bar Pup Helmet","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":19006,"className":"helmet_songpyun2","name":"Green Dumpling Helmet","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet"},{"itemId":19007,"className":"Helmet_assassin01","name":"Judicas Mask","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","script":{"strArg":"Helmet_assassin01"}},{"itemId":19016,"className":"Helmet_rangda01","name":"Rangda Mask","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","script":{"strArg":"helmet_rangda01"}},{"itemId":19017,"className":"Helmet_rangda01_black","name":"Rangda Kegelapan Mask","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","script":{"strArg":"helmet_rangda01_black"}},{"itemId":6360001,"className":"helmet_astronaut_teamtrade","name":"[Event] GM's Astro Ambition Helmet","type":"Equip","group":"Helmet","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":2040001,"className":"HiddenAbility_Swordman33","name":"Mystic Tome (Thrust: Charge)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Swordman33"}},{"itemId":2040002,"className":"HiddenAbility_NakMuay6","name":"Mystic Tome (Ram Muay: Warrior)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"NakMuay6"}},{"itemId":2040003,"className":"HiddenAbility_Doppelsoeldner27","name":"Mystic Tome (Zornhau: Rush Attack)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Doppelsoeldner27"}},{"itemId":2040004,"className":"HiddenAbility_Dragoon21","name":"Mystic Tome (Dragon Fall: Death From Above)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dragoon21"}},{"itemId":2040005,"className":"HiddenAbility_Lancer21","name":"Mystic Tome (Rhongomiant: Duel!)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Lancer21"}},{"itemId":2040006,"className":"HiddenAbility_Retiarii19","name":"Mystic Tome (Disarm: Weapon)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Retiarii19"}},{"itemId":2040007,"className":"HiddenAbility_Rodelero32","name":"Mystic Tome (Targe Smash: Break)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Rodelero32"}},{"itemId":2040008,"className":"HiddenAbility_Matador21","name":"Mystic Tome (Corrida Finale: Raging Bull)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Matador21"}},{"itemId":2040009,"className":"HiddenAbility_Barbarian35","name":"Mystic Tome (Leather Mastery: Animal Instinct)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Barbarian35"}},{"itemId":2040010,"className":"HiddenAbility_Cataphract34","name":"Mystic Tome (Rush: Pull)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cataphract34"}},{"itemId":2040011,"className":"HiddenAbility_Templar8","name":"Mystic Tome (Plate Mastery: Divine)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Templar8"}},{"itemId":2040012,"className":"HiddenAbility_Peltasta39","name":"Mystic Tome (Guardian: Reflect Missile)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Peltasta39"}},{"itemId":2040013,"className":"HiddenAbility_Highlander35","name":"Mystic Tome (Highlander: Defiance)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Highlander35"}},{"itemId":2040014,"className":"HiddenAbility_Hackapell16","name":"Mystic Tome (Hakka Palle: Guerilla)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hackapell16"}},{"itemId":2040015,"className":"HiddenAbility_Hoplite33","name":"Mystic Tome (Spear Throw: Explosion)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hoplite33"}},{"itemId":2040016,"className":"HiddenAbility_Wizard30","name":"Mystic Tome (Teleportation: Return)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Wizard30"}},{"itemId":2040017,"className":"HiddenAbility_Necromancer25","name":"Mystic Tome (Flesh Hoop: Dance of Death)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Necromancer25"}},{"itemId":2040018,"className":"HiddenAbility_Necromancer26","name":"Mystic Tome (Raise Skull Mage: Supporter)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Necromancer26"}},{"itemId":2040019,"className":"HiddenAbility_Daoshi20","name":"Mystic Tome (Begone Demon: Shout)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Daoshi20"}},{"itemId":2040020,"className":"HiddenAbility_Daoshi21","name":"Mystic Tome (Eradication: Transfer)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Daoshi21"}},{"itemId":2040021,"className":"HiddenAbility_RuneCaster13","name":"Mystic Tome (Cloth Mastery: Enchant Rune of Destruction)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"RuneCaster13"}},{"itemId":2040022,"className":"HiddenAbility_Bokor25","name":"Mystic Tome (Mackangdal: Cheating Death)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Bokor25"}},{"itemId":2040023,"className":"HiddenAbility_Bokor26","name":"Mystic Tome (Zombify: Timed Zombies)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Bokor26"}},{"itemId":2040024,"className":"HiddenAbility_Shadowmancer11","name":"Mystic Tome (Infernal Shadow: Drain Vitality)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Shadowmancer11"}},{"itemId":2040025,"className":"HiddenAbility_Sage21","name":"Mystic Tome (Dimension Compression: Gravity Sphere)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sage21"}},{"itemId":2040026,"className":"HiddenAbility_Sage22","name":"Mystic Tome (Missile Hole: Master of Dimensions)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sage22"}},{"itemId":2040027,"className":"HiddenAbility_Sorcerer19","name":"Mystic Tome (Summoning: Self)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sorcerer19"}},{"itemId":2040028,"className":"HiddenAbility_Alchemist13","name":"Mystic Tome (Tincturing: Fine Elixir (HP))","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Alchemist13"}},{"itemId":2040029,"className":"HiddenAbility_Alchemist14","name":"Mystic Tome (Tincturing: Fine Elixir (SP))","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Alchemist14"}},{"itemId":2040030,"className":"HiddenAbility_Elementalist33","name":"Mystic Tome (Meteor: Concentration)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Elementalist33"}},{"itemId":2040031,"className":"HiddenAbility_Onmyoji21","name":"Mystic Tome (Yin Yang Harmony: Heaven and Earth)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Onmyoji21"}},{"itemId":2040032,"className":"HiddenAbility_Chronomancer17","name":"Mystic Tome (Backmasking: Mystery)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Chronomancer17"}},{"itemId":2040033,"className":"HiddenAbility_Chronomancer18","name":"Mystic Tome (Slow: Absorb Time)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Chronomancer18"}},{"itemId":2040034,"className":"HiddenAbility_Cryomancer26","name":"Mystic Tome (Ice Wall: Magic Igloo)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cryomancer26"}},{"itemId":2040035,"className":"HiddenAbility_Pyromancer30","name":"Mystic Tome (Prominence: Flame Jewel)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Pyromancer30"}},{"itemId":2040036,"className":"HiddenAbility_Pyromancer31","name":"Mystic Tome (Fire Wall: Crossfire)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Pyromancer31"}},{"itemId":2040037,"className":"HiddenAbility_Featherfoot23","name":"Mystic Tome (Levitation: Nullify)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Featherfoot23"}},{"itemId":2040038,"className":"HiddenAbility_Archer35","name":"Mystic Tome (Leap: Dexterity)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Archer35"}},{"itemId":2040039,"className":"HiddenAbility_Appraiser7","name":"Mystic Tome (Blindside: Focus)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Appraiser7"}},{"itemId":2040040,"className":"HiddenAbility_Ranger38","name":"Mystic Tome (Bounce Shot: Insta-Freeze Arrow)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Ranger38"}},{"itemId":2040041,"className":"HiddenAbility_Ranger39","name":"Mystic Tome (Barrage: Perfect Angle)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Ranger39"}},{"itemId":2040042,"className":"HiddenAbility_Matross14","name":"Mystic Tome (Crouching Strike: Lightning)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Matross14"}},{"itemId":2040043,"className":"HiddenAbility_Mergen16","name":"Mystic Tome (Arrow Sprinkle: Barrage)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Mergen16"}},{"itemId":2040044,"className":"HiddenAbility_TigerHunter9","name":"Mystic Tome (Tiger Hunter: Bounty Hunter)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"TigerHunter9"}},{"itemId":2040045,"className":"HiddenAbility_Sapper42","name":"Mystic Tome (Punji Stake: Instance)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sapper42"}},{"itemId":2040046,"className":"HiddenAbility_Fletcher27","name":"Mystic Tome (Magic Arrow: Ember)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Fletcher27"}},{"itemId":2040047,"className":"HiddenAbility_Hunter16","name":"Mystic Tome (Leather Mastery: Imprint)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hunter16"}},{"itemId":2040048,"className":"HiddenAbility_Cleric25","name":"Mystic Tome (Cloth Mastery: Healing)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cleric25"}},{"itemId":2040049,"className":"HiddenAbility_Druid23","name":"Mystic Tome (Chortasmata: Healing Garden)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Druid23"}},{"itemId":2040050,"className":"HiddenAbility_Monk27","name":"Mystic Tome (Monk: Nirvana)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Monk27"}},{"itemId":2040051,"className":"HiddenAbility_Miko9","name":"Mystic Tome (Gohei: O-Gohei)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Miko9"}},{"itemId":2040052,"className":"HiddenAbility_Miko10","name":"Mystic Tome (Omikuji: Financial Fortune)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Miko10"}},{"itemId":2040053,"className":"HiddenAbility_Sadhu26","name":"Mystic Tome (Sadhu: Penance)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sadhu26"}},{"itemId":2040054,"className":"HiddenAbility_Exorcist20","name":"Mystic Tome (Rubric: Corruption)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Exorcist20"}},{"itemId":2040055,"className":"HiddenAbility_Exorcist19","name":"Mystic Tome (Katadikazo: Flame Spear)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Exorcist19"}},{"itemId":2040056,"className":"HiddenAbility_Oracle23","name":"Mystic Tome (Divine Might: Ill Omen)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Oracle23"}},{"itemId":2040057,"className":"HiddenAbility_Chaplain18","name":"Mystic Tome (Visible Talent: In Goddess' Name)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Chaplain18"}},{"itemId":2040058,"className":"HiddenAbility_Kriwi24","name":"Mystic Tome (Aukuras: Mobile Torch)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Kriwi24"}},{"itemId":2040059,"className":"HiddenAbility_Paladin29","name":"Mystic Tome (Barrier: Holy Ground)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Paladin29"}},{"itemId":2040060,"className":"HiddenAbility_PlagueDoctor19","name":"Mystic Tome (Healing Factor: Close Healing)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"PlagueDoctor19"}},{"itemId":2040061,"className":"HiddenAbility_Scout23","name":"Mystic Tome (Cloaking: Successful Ambush)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Scout23"}},{"itemId":2040062,"className":"HiddenAbility_Arditi10","name":"Mystic Tome (Leather Mastery: Plate)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Arditi10"}},{"itemId":2040063,"className":"HiddenAbility_Arditi11","name":"Mystic Tome (Recupero: Endurance)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Arditi11"}},{"itemId":2040064,"className":"HiddenAbility_Assassin18","name":"Mystic Tome (Hallucination Smoke: Commission to Kill)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Assassin18"}},{"itemId":2040065,"className":"HiddenAbility_Rogue22","name":"Mystic Tome (Knife Throw: Zenith)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Rogue22"}},{"itemId":2040066,"className":"HiddenAbility_Linker19","name":"Mystic Tome (Joint Penalty: Chain Heart)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Linker19"}},{"itemId":2040067,"className":"HiddenAbility_Bulletmarker16","name":"Mystic Tome (Freeze Bullet: Fog)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Bulletmarker16"}},{"itemId":2040068,"className":"HiddenAbility_Sheriff8","name":"Mystic Tome (Westraid: Final Roulette)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sheriff8"}},{"itemId":2040069,"className":"HiddenAbility_Sheriff9","name":"Mystic Tome (Peacemaker: Shotgun)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sheriff9"}},{"itemId":2040070,"className":"HiddenAbility_Schwarzereiter20","name":"Mystic Tome (Evasive Action: Cobra)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Schwarzereiter20"}},{"itemId":2040071,"className":"HiddenAbility_Squire14","name":"Mystic Tome (Cloth Mastery: Sewing Master)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Squire14"}},{"itemId":2040072,"className":"HiddenAbility_Squire15","name":"Mystic Tome (Leather Mastery: Master Craftsman)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Squire15"}},{"itemId":2040073,"className":"HiddenAbility_Squire16","name":"Mystic Tome (Plate Mastery: Smelting Master)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Squire16"}},{"itemId":2040074,"className":"HiddenAbility_Shinobi11","name":"Mystic Tome (Bunshin no Jutsu: Mijin no Jutsu)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Shinobi11"}},{"itemId":2040075,"className":"HiddenAbility_Thaumaturge20","name":"Mystic Tome (Swell Brain: Physical)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Thaumaturge20"}},{"itemId":2040076,"className":"HiddenAbility_Thaumaturge21","name":"Mystic Tome (Swell Brain: Magic)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Thaumaturge21"}},{"itemId":2040077,"className":"HiddenAbility_Murmillo21","name":"Mystic Tome (Cassis Crista: Gladiator)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Murmillo21"}},{"itemId":2040078,"className":"HiddenAbility_Fencer13","name":"Mystic Tome (Fencer: Nobility)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Fencer13"}},{"itemId":2040079,"className":"HiddenAbility_Psychokino25","name":"Mystic Tome (Heavy Gravity: Distort)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Psychokino25"}},{"itemId":2040080,"className":"HiddenAbility_Warlock20","name":"Mystic Tome (Pole of Agony: Evil Spirit)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Warlock20"}},{"itemId":2040081,"className":"HiddenAbility_Musketeer31","name":"Mystic Tome (Snipe: Conceal)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Musketeer31"}},{"itemId":2040082,"className":"HiddenAbility_Mergen17","name":"Mystic Tome (Zenith: Whistling Arrow)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Mergen17"}},{"itemId":2040083,"className":"HiddenAbility_Wugushi29","name":"Mystic Tome (Latent Venom: Enervation)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Wugushi29"}},{"itemId":2040084,"className":"HiddenAbility_Falconer23","name":"Mystic Tome (Hanging Shot: Dodge)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Falconer23"}},{"itemId":2040085,"className":"HiddenAbility_Cannoneer25","name":"Mystic Tome (Sweeping Cannon: Siege Shot)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cannoneer25"}},{"itemId":2040086,"className":"HiddenAbility_QuarrelShooter26","name":"Mystic Tome (Deploy Pavise: Fortress)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"QuarrelShooter26"}},{"itemId":2040087,"className":"HiddenAbility_PiedPiper17","name":"Mystic Tome (Stegreifspiel: Marschierendeslied)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"PiedPiper17"}},{"itemId":2040088,"className":"HiddenAbility_PiedPiper18","name":"Mystic Tome (Stegreifspiel: Lied des Weltbaum)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"PiedPiper18"}},{"itemId":2040089,"className":"HiddenAbility_PiedPiper19","name":"Mystic Tome (Stegreifspiel: Wiegenlied)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"PiedPiper19"}},{"itemId":2040090,"className":"HiddenAbility_PiedPiper20","name":"Mystic Tome (Stegreifspiel: Dissonanz)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"PiedPiper20"}},{"itemId":2040091,"className":"HiddenAbility_Dievdirbys21","name":"Mystic Tome (Ausrine Statue: Divine Protection)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dievdirbys21"}},{"itemId":2040092,"className":"HiddenAbility_Inquisitor21","name":"Mystic Tome (Torture Expert: Fire)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Inquisitor21"}},{"itemId":2040093,"className":"HiddenAbility_Zealot12","name":"Mystic Tome (Martyre: Holy Sacrifice)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Zealot12"}},{"itemId":2040094,"className":"HiddenAbility_Kabbalist27","name":"Mystic Tome (Merkabah: Comfort)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Kabbalist27"}},{"itemId":2040095,"className":"HiddenAbility_Pardoner17","name":"Mystic Tome (Discerning Evil: Indulgentia)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Pardoner17"}},{"itemId":2040096,"className":"HiddenAbility_Priest30","name":"Mystic Tome (Resurrection: Quick Regen)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Priest30"}},{"itemId":2040097,"className":"HiddenAbility_Outlaw20","name":"Mystic Tome (Rampage: Lawlessnes)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Outlaw20"}},{"itemId":2040098,"className":"HiddenAbility_Enchanter15","name":"Mystic Tome (Over-Reinforce: ALL)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Enchanter15"}},{"itemId":2040099,"className":"HiddenAbility_Corsair21","name":"Mystic Tome (Jolly Roger: Support Shot)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Corsair21"}},{"itemId":2040100,"className":"HiddenAbility_Swordman34","name":"Mystic Tome (Thrust: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Swordman34"}},{"itemId":2040101,"className":"HiddenAbility_Swordman35","name":"Mystic Tome (Bash: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Swordman35"}},{"itemId":2040102,"className":"HiddenAbility_Peltasta40","name":"Mystic Tome (Umbo Blow: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Peltasta40"}},{"itemId":2040103,"className":"HiddenAbility_Peltasta41","name":"Mystic Tome (Rim Blow: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Peltasta41"}},{"itemId":2040104,"className":"HiddenAbility_Peltasta42","name":"Mystic Tome (Shield Lob: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Peltasta42"}},{"itemId":2040105,"className":"HiddenAbility_Highlander36","name":"Mystic Tome (Wagon Wheel: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Highlander36"}},{"itemId":2040106,"className":"HiddenAbility_Highlander37","name":"Mystic Tome (Cartar Stroke: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Highlander37"}},{"itemId":2040107,"className":"HiddenAbility_Highlander38","name":"Mystic Tome (Crown: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Highlander38"}},{"itemId":2040108,"className":"HiddenAbility_Highlander39","name":"Mystic Tome (Moulinet: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Highlander39"}},{"itemId":2040109,"className":"HiddenAbility_Highlander40","name":"Mystic Tome (Skyliner: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Highlander40"}},{"itemId":2040110,"className":"HiddenAbility_Highlander41","name":"Mystic Tome (Crosscut: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Highlander41"}},{"itemId":2040111,"className":"HiddenAbility_Hoplite34","name":"Mystic Tome (Stabbing: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hoplite34"}},{"itemId":2040112,"className":"HiddenAbility_Hoplite35","name":"Mystic Tome (Pierce: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hoplite35"}},{"itemId":2040113,"className":"HiddenAbility_Hoplite36","name":"Mystic Tome (Synchro Thrusting: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hoplite36"}},{"itemId":2040114,"className":"HiddenAbility_Hoplite37","name":"Mystic Tome (Spear Throw: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hoplite37"}},{"itemId":2040115,"className":"HiddenAbility_Hoplite38","name":"Mystic Tome (Spear Lunge: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hoplite38"}},{"itemId":2040116,"className":"HiddenAbility_Barbarian36","name":"Mystic Tome (Embowel: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Barbarian36"}},{"itemId":2040117,"className":"HiddenAbility_Barbarian37","name":"Mystic Tome (Stomping Kick: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Barbarian37"}},{"itemId":2040118,"className":"HiddenAbility_Barbarian38","name":"Mystic Tome (Pouncing: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Barbarian38"}},{"itemId":2040119,"className":"HiddenAbility_Barbarian39","name":"Mystic Tome (Seism: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Barbarian39"}},{"itemId":2040120,"className":"HiddenAbility_Barbarian40","name":"Mystic Tome (Cleave: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Barbarian40"}},{"itemId":2040121,"className":"HiddenAbility_Rodelero33","name":"Mystic Tome (Shield Charge: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Rodelero33"}},{"itemId":2040122,"className":"HiddenAbility_Rodelero34","name":"Mystic Tome (Montano: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Rodelero34"}},{"itemId":2040123,"className":"HiddenAbility_Rodelero35","name":"Mystic Tome (Targe Smash: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Rodelero35"}},{"itemId":2040124,"className":"HiddenAbility_Rodelero36","name":"Mystic Tome (Shield Push: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Rodelero36"}},{"itemId":2040125,"className":"HiddenAbility_Rodelero37","name":"Mystic Tome (Slithering: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Rodelero37"}},{"itemId":2040126,"className":"HiddenAbility_Rodelero38","name":"Mystic Tome (Shooting Star: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Rodelero38"}},{"itemId":2040127,"className":"HiddenAbility_Rodelero39","name":"Mystic Tome (Shield Shoving: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Rodelero39"}},{"itemId":2040128,"className":"HiddenAbility_Rodelero40","name":"Mystic Tome (Shield Bash: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Rodelero40"}},{"itemId":2040129,"className":"HiddenAbility_Cataphract35","name":"Mystic Tome (Impaler: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cataphract35"}},{"itemId":2040130,"className":"HiddenAbility_Cataphract36","name":"Mystic Tome (Earth Wave: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cataphract36"}},{"itemId":2040131,"className":"HiddenAbility_Cataphract37","name":"Mystic Tome (Steed Charge: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cataphract37"}},{"itemId":2040132,"className":"HiddenAbility_Cataphract38","name":"Mystic Tome (Doom Spike: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cataphract38"}},{"itemId":2040133,"className":"HiddenAbility_Cataphract39","name":"Mystic Tome (Rush: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cataphract39"}},{"itemId":2040134,"className":"HiddenAbility_Doppelsoeldner28","name":"Mystic Tome (Punish: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Doppelsoeldner28"}},{"itemId":2040135,"className":"HiddenAbility_Doppelsoeldner29","name":"Mystic Tome (Cyclone: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Doppelsoeldner29"}},{"itemId":2040136,"className":"HiddenAbility_Doppelsoeldner30","name":"Mystic Tome (Zornhau: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Doppelsoeldner30"}},{"itemId":2040137,"className":"HiddenAbility_Doppelsoeldner31","name":"Mystic Tome (Redel: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Doppelsoeldner31"}},{"itemId":2040138,"className":"HiddenAbility_Doppelsoeldner32","name":"Mystic Tome (Zucken: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Doppelsoeldner32"}},{"itemId":2040139,"className":"HiddenAbility_Doppelsoeldner33","name":"Mystic Tome (Zwerchhau: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Doppelsoeldner33"}},{"itemId":2040140,"className":"HiddenAbility_Doppelsoeldner34","name":"Mystic Tome (Sturtzhau: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Doppelsoeldner34"}},{"itemId":2040141,"className":"HiddenAbility_Fencer14","name":"Mystic Tome (Attaque Composee: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Fencer14"}},{"itemId":2040142,"className":"HiddenAbility_Fencer15","name":"Mystic Tome (Sept Etoiles: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Fencer15"}},{"itemId":2040143,"className":"HiddenAbility_Fencer16","name":"Mystic Tome (Esquive Toucher: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Fencer16"}},{"itemId":2040144,"className":"HiddenAbility_Fencer17","name":"Mystic Tome (Flanconnade: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Fencer17"}},{"itemId":2040145,"className":"HiddenAbility_Fencer18","name":"Mystic Tome (Balestra Fente: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Fencer18"}},{"itemId":2040146,"className":"HiddenAbility_Fencer19","name":"Mystic Tome (Fleche: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Fencer19"}},{"itemId":2040147,"className":"HiddenAbility_Murmillo22","name":"Mystic Tome (Frenzied Burst: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Murmillo22"}},{"itemId":2040148,"className":"HiddenAbility_Murmillo23","name":"Mystic Tome (Evade Thrust: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Murmillo23"}},{"itemId":2040149,"className":"HiddenAbility_Murmillo24","name":"Mystic Tome (Headbutt: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Murmillo24"}},{"itemId":2040150,"className":"HiddenAbility_Murmillo25","name":"Mystic Tome (Scutum Hit: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Murmillo25"}},{"itemId":2040151,"className":"HiddenAbility_Murmillo26","name":"Mystic Tome (Shield Train: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Murmillo26"}},{"itemId":2040152,"className":"HiddenAbility_Murmillo27","name":"Mystic Tome (Emperor's Bane: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Murmillo27"}},{"itemId":2040153,"className":"HiddenAbility_Dragoon22","name":"Mystic Tome (Dragontooth: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dragoon22"}},{"itemId":2040154,"className":"HiddenAbility_Dragoon23","name":"Mystic Tome (Serpentine: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dragoon23"}},{"itemId":2040155,"className":"HiddenAbility_Dragoon24","name":"Mystic Tome (Gae Bulg: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dragoon24"}},{"itemId":2040156,"className":"HiddenAbility_Dragoon25","name":"Mystic Tome (Dragon Soar: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dragoon25"}},{"itemId":2040157,"className":"HiddenAbility_Dragoon26","name":"Mystic Tome (Dethrone: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dragoon26"}},{"itemId":2040158,"className":"HiddenAbility_Dragoon27","name":"Mystic Tome (Dragon Fall: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dragoon27"}},{"itemId":2040159,"className":"HiddenAbility_Templar9","name":"Mystic Tome (Mortal Slash: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Templar9"}},{"itemId":2040160,"className":"HiddenAbility_Templar10","name":"Mystic Tome (Forge: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Templar10"}},{"itemId":2040161,"className":"HiddenAbility_Lancer22","name":"Mystic Tome (Crush: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Lancer22"}},{"itemId":2040162,"className":"HiddenAbility_Lancer23","name":"Mystic Tome (Joust: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Lancer23"}},{"itemId":2040163,"className":"HiddenAbility_Lancer24","name":"Mystic Tome (Unhorsing: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Lancer24"}},{"itemId":2040164,"className":"HiddenAbility_Lancer25","name":"Mystic Tome (Quintain: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Lancer25"}},{"itemId":2040165,"className":"HiddenAbility_Lancer26","name":"Mystic Tome (Rhongomiant: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Lancer26"}},{"itemId":2040166,"className":"HiddenAbility_Lancer27","name":"Mystic Tome (Gigante Marcha: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Lancer27"}},{"itemId":2040167,"className":"HiddenAbility_Matador22","name":"Mystic Tome (Muleta: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Matador22"}},{"itemId":2040168,"className":"HiddenAbility_Matador23","name":"Mystic Tome (Faena: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Matador23"}},{"itemId":2040169,"className":"HiddenAbility_Matador24","name":"Mystic Tome (Paso Doble: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Matador24"}},{"itemId":2040170,"className":"HiddenAbility_Matador25","name":"Mystic Tome (Corrida Finale: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Matador25"}},{"itemId":2040171,"className":"HiddenAbility_NakMuay7","name":"Mystic Tome (Ram Muay: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"NakMuay7"}},{"itemId":2040172,"className":"HiddenAbility_NakMuay8","name":"Mystic Tome (Te Kha: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"NakMuay8"}},{"itemId":2040173,"className":"HiddenAbility_NakMuay9","name":"Mystic Tome (Sok Chiang: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"NakMuay9"}},{"itemId":2040174,"className":"HiddenAbility_NakMuay10","name":"Mystic Tome (Te Trong: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"NakMuay10"}},{"itemId":2040175,"className":"HiddenAbility_NakMuay11","name":"Mystic Tome (Khao Loi: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"NakMuay11"}},{"itemId":2040176,"className":"HiddenAbility_Retiarii20","name":"Mystic Tome (Trident Finish: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Retiarii20"}},{"itemId":2040177,"className":"HiddenAbility_Retiarii21","name":"Mystic Tome (Disarm: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Retiarii21"}},{"itemId":2040178,"className":"HiddenAbility_Retiarii22","name":"Mystic Tome (Dagger Finish: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Retiarii22"}},{"itemId":2040179,"className":"HiddenAbility_Retiarii23","name":"Mystic Tome (Blandir Cadena: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Retiarii23"}},{"itemId":2040180,"className":"HiddenAbility_Hackapell17","name":"Mystic Tome (Skarphuggning: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hackapell17"}},{"itemId":2040181,"className":"HiddenAbility_Hackapell18","name":"Mystic Tome (Cavalry Charge: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hackapell18"}},{"itemId":2040182,"className":"HiddenAbility_Hackapell19","name":"Mystic Tome (Storm Bolt: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hackapell19"}},{"itemId":2040183,"className":"HiddenAbility_Hackapell20","name":"Mystic Tome (Grind Cutter: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hackapell20"}},{"itemId":2040184,"className":"HiddenAbility_Hackapell21","name":"Mystic Tome (Infinite Slash: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hackapell21"}},{"itemId":2040185,"className":"HiddenAbility_Hackapell22","name":"Mystic Tome (Helm Chopper: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hackapell22"}},{"itemId":2040186,"className":"HiddenAbility_Wizard31","name":"Mystic Tome (Energy Bolt: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Wizard31"}},{"itemId":2040187,"className":"HiddenAbility_Wizard32","name":"Mystic Tome (Earthquake: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Wizard32"}},{"itemId":2040188,"className":"HiddenAbility_Wizard33","name":"Mystic Tome (Magic Missile: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Wizard33"}},{"itemId":2040189,"className":"HiddenAbility_Pyromancer32","name":"Mystic Tome (Fireball: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Pyromancer32"}},{"itemId":2040190,"className":"HiddenAbility_Pyromancer33","name":"Mystic Tome (Fire Wall: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Pyromancer33"}},{"itemId":2040191,"className":"HiddenAbility_Pyromancer34","name":"Mystic Tome (Fire Pillar: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Pyromancer34"}},{"itemId":2040192,"className":"HiddenAbility_Pyromancer35","name":"Mystic Tome (Hell Breath: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Pyromancer35"}},{"itemId":2040193,"className":"HiddenAbility_Pyromancer36","name":"Mystic Tome (Flame Ground: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Pyromancer36"}},{"itemId":2040194,"className":"HiddenAbility_Pyromancer37","name":"Mystic Tome (Prominence: E","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Pyromancer37"}},{"itemId":2040195,"className":"HiddenAbility_Cryomancer27","name":"Mystic Tome (Ice Bolt: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cryomancer27"}},{"itemId":2040196,"className":"HiddenAbility_Cryomancer28","name":"Mystic Tome (Ice Pike: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cryomancer28"}},{"itemId":2040197,"className":"HiddenAbility_Cryomancer29","name":"Mystic Tome (Ice Blast: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cryomancer29"}},{"itemId":2040198,"className":"HiddenAbility_Cryomancer30","name":"Mystic Tome (Snow Rolling: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cryomancer30"}},{"itemId":2040199,"className":"HiddenAbility_Cryomancer31","name":"Mystic Tome (Frost Pillar: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cryomancer31"}},{"itemId":2040200,"className":"HiddenAbility_Psychokino26","name":"Mystic Tome (Psychic Pressure: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Psychokino26"}},{"itemId":2040201,"className":"HiddenAbility_Psychokino27","name":"Mystic Tome (Magnetic Force: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Psychokino27"}},{"itemId":2040202,"className":"HiddenAbility_Psychokino28","name":"Mystic Tome (Gravity Pole: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Psychokino28"}},{"itemId":2040203,"className":"HiddenAbility_Psychokino29","name":"Mystic Tome (Heavy Gravity: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Psychokino29"}},{"itemId":2040204,"className":"HiddenAbility_Elementalist34","name":"Mystic Tome (Electrocute: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Elementalist34"}},{"itemId":2040205,"className":"HiddenAbility_Elementalist35","name":"Mystic Tome (Hail: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Elementalist35"}},{"itemId":2040206,"className":"HiddenAbility_Elementalist36","name":"Mystic Tome (Meteor: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Elementalist36"}},{"itemId":2040207,"className":"HiddenAbility_Elementalist37","name":"Mystic Tome (Blizzard Storm: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Elementalist37"}},{"itemId":2040208,"className":"HiddenAbility_Elementalist38","name":"Mystic Tome (Fire Claw: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Elementalist38"}},{"itemId":2040209,"className":"HiddenAbility_Sorcerer20","name":"Mystic Tome (Summon Familiar: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sorcerer20"}},{"itemId":2040210,"className":"HiddenAbility_Sorcerer21","name":"Mystic Tome (Evocation: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sorcerer21"}},{"itemId":2040211,"className":"HiddenAbility_Sorcerer22","name":"Mystic Tome (Desmodus: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sorcerer22"}},{"itemId":2040212,"className":"HiddenAbility_Necromancer27","name":"Mystic Tome (Gather Corpse: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Necromancer27"}},{"itemId":2040213,"className":"HiddenAbility_Necromancer28","name":"Mystic Tome (Create Shoggoth: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Necromancer28"}},{"itemId":2040214,"className":"HiddenAbility_Necromancer29","name":"Mystic Tome (Flesh Cannon: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Necromancer29"}},{"itemId":2040215,"className":"HiddenAbility_Necromancer30","name":"Mystic Tome (Flesh Hoop: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Necromancer30"}},{"itemId":2040216,"className":"HiddenAbility_Necromancer31","name":"Mystic Tome (Corpse Tower: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Necromancer31"}},{"itemId":2040217,"className":"HiddenAbility_Necromancer32","name":"Mystic Tome (Raise Dead: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Necromancer32"}},{"itemId":2040218,"className":"HiddenAbility_Necromancer33","name":"Mystic Tome (Raise Skull Archer: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Necromancer33"}},{"itemId":2040219,"className":"HiddenAbility_Alchemist15","name":"Mystic Tome (Combustion: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Alchemist15"}},{"itemId":2040220,"className":"HiddenAbility_Alchemist16","name":"Mystic Tome (Alchemistic Missile: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Alchemist16"}},{"itemId":2040221,"className":"HiddenAbility_Featherfoot24","name":"Mystic Tome (Blood Bath: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Featherfoot24"}},{"itemId":2040222,"className":"HiddenAbility_Featherfoot25","name":"Mystic Tome (Blood Sucking: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Featherfoot25"}},{"itemId":2040223,"className":"HiddenAbility_Featherfoot26","name":"Mystic Tome (Bone Pointing: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Featherfoot26"}},{"itemId":2040224,"className":"HiddenAbility_Featherfoot27","name":"Mystic Tome (Ngadhundi: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Featherfoot27"}},{"itemId":2040225,"className":"HiddenAbility_Featherfoot28","name":"Mystic Tome (Kurdaitcha: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Featherfoot28"}},{"itemId":2040226,"className":"HiddenAbility_Featherfoot29","name":"Mystic Tome (Kundela Slash: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Featherfoot29"}},{"itemId":2040227,"className":"HiddenAbility_Featherfoot30","name":"Mystic Tome (Blood Curse: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Featherfoot30"}},{"itemId":2040228,"className":"HiddenAbility_Featherfoot31","name":"Mystic Tome (Enervation: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Featherfoot31"}},{"itemId":2040229,"className":"HiddenAbility_Warlock21","name":"Mystic Tome (Pole of Agony: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Warlock21"}},{"itemId":2040230,"className":"HiddenAbility_Warlock22","name":"Mystic Tome (Invocation: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Warlock22"}},{"itemId":2040231,"className":"HiddenAbility_Warlock23","name":"Mystic Tome (Dark Theurge: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Warlock23"}},{"itemId":2040232,"className":"HiddenAbility_Warlock24","name":"Mystic Tome (Mastema: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Warlock24"}},{"itemId":2040233,"className":"HiddenAbility_Warlock25","name":"Mystic Tome (Demon Scratch: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Warlock25"}},{"itemId":2040234,"className":"HiddenAbility_RuneCaster14","name":"Mystic Tome (Rune of Destruction: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"RuneCaster14"}},{"itemId":2040235,"className":"HiddenAbility_RuneCaster15","name":"Mystic Tome (Rune of Earth: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"RuneCaster15"}},{"itemId":2040236,"className":"HiddenAbility_RuneCaster16","name":"Mystic Tome (Rune of Justice: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"RuneCaster16"}},{"itemId":2040237,"className":"HiddenAbility_RuneCaster17","name":"Mystic Tome (Rune of Rock: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"RuneCaster17"}},{"itemId":2040238,"className":"HiddenAbility_Sage23","name":"Mystic Tome (Micro Dimension: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sage23"}},{"itemId":2040239,"className":"HiddenAbility_Sage24","name":"Mystic Tome (Ultimate Dimension: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sage24"}},{"itemId":2040240,"className":"HiddenAbility_Sage25","name":"Mystic Tome (Dimension Compression : Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sage25"}},{"itemId":2040241,"className":"HiddenAbility_Sage26","name":"Mystic Tome (Hole of Darkness: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sage26"}},{"itemId":2040242,"className":"HiddenAbility_Shadowmancer12","name":"Mystic Tome (Shadow Thorn: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Shadowmancer12"}},{"itemId":2040243,"className":"HiddenAbility_Shadowmancer13","name":"Mystic Tome (Shadow Conjuration: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Shadowmancer13"}},{"itemId":2040244,"className":"HiddenAbility_Shadowmancer14","name":"Mystic Tome (Shadow Condensation: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Shadowmancer14"}},{"itemId":2040245,"className":"HiddenAbility_Onmyoji22","name":"Mystic Tome (Soul Fox Shikigami: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Onmyoji22"}},{"itemId":2040246,"className":"HiddenAbility_Onmyoji23","name":"Mystic Tome (Greenwood Shikigami: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Onmyoji23"}},{"itemId":2040247,"className":"HiddenAbility_Onmyoji24","name":"Mystic Tome (Howling White Tiger: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Onmyoji24"}},{"itemId":2040248,"className":"HiddenAbility_Onmyoji25","name":"Mystic Tome (Wind Shikigami: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Onmyoji25"}},{"itemId":2040249,"className":"HiddenAbility_Onmyoji26","name":"Mystic Tome (Toyou: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Onmyoji26"}},{"itemId":2040250,"className":"HiddenAbility_Onmyoji27","name":"Mystic Tome (Yin Yang Harmony: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Onmyoji27"}},{"itemId":2040251,"className":"HiddenAbility_Bokor27","name":"Mystic Tome (Effigy: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Bokor27"}},{"itemId":2040252,"className":"HiddenAbility_Bokor28","name":"Mystic Tome (Bwa Kayiman: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Bokor28"}},{"itemId":2040253,"className":"HiddenAbility_Bokor29","name":"Mystic Tome (Damballa: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Bokor29"}},{"itemId":2040254,"className":"HiddenAbility_Daoshi22","name":"Mystic Tome (Snow Tempest Charm: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Daoshi22"}},{"itemId":2040255,"className":"HiddenAbility_Daoshi23","name":"Mystic Tome (Creeping Death Charm: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Daoshi23"}},{"itemId":2040256,"className":"HiddenAbility_Daoshi24","name":"Mystic Tome (Divine Punishment: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Daoshi24"}},{"itemId":2040257,"className":"HiddenAbility_Daoshi25","name":"Mystic Tome (Eradication: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Daoshi25"}},{"itemId":2040258,"className":"HiddenAbility_Archer36","name":"Mystic Tome (Multi Shot: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Archer36"}},{"itemId":2040259,"className":"HiddenAbility_Archer37","name":"Mystic Tome (Oblique Shot: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Archer37"}},{"itemId":2040260,"className":"HiddenAbility_Archer38","name":"Mystic Tome (Twin Arrow: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Archer38"}},{"itemId":2040261,"className":"HiddenAbility_Ranger40","name":"Mystic Tome (Barrage: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Ranger40"}},{"itemId":2040262,"className":"HiddenAbility_Ranger41","name":"Mystic Tome (High Anchoring: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Ranger41"}},{"itemId":2040263,"className":"HiddenAbility_Ranger42","name":"Mystic Tome (Critical Shot: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Ranger42"}},{"itemId":2040264,"className":"HiddenAbility_Ranger43","name":"Mystic Tome (Bounce Shot: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Ranger43"}},{"itemId":2040265,"className":"HiddenAbility_Ranger44","name":"Mystic Tome (Spiral Arrow: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Ranger44"}},{"itemId":2040266,"className":"HiddenAbility_QuarrelShooter27","name":"Mystic Tome (Scatter Caltrops: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"QuarrelShooter27"}},{"itemId":2040267,"className":"HiddenAbility_QuarrelShooter28","name":"Mystic Tome (Stone Shot: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"QuarrelShooter28"}},{"itemId":2040268,"className":"HiddenAbility_QuarrelShooter29","name":"Mystic Tome (Rapid Fire: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"QuarrelShooter29"}},{"itemId":2040269,"className":"HiddenAbility_QuarrelShooter30","name":"Mystic Tome (Teardown: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"QuarrelShooter30"}},{"itemId":2040270,"className":"HiddenAbility_Sapper43","name":"Mystic Tome (Stake Stockades: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sapper43"}},{"itemId":2040271,"className":"HiddenAbility_Sapper44","name":"Mystic Tome (Claymore: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sapper44"}},{"itemId":2040272,"className":"HiddenAbility_Sapper45","name":"Mystic Tome (Punji Stake: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sapper45"}},{"itemId":2040273,"className":"HiddenAbility_Sapper46","name":"Mystic Tome (Detonate Traps: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sapper46"}},{"itemId":2040274,"className":"HiddenAbility_Sapper47","name":"Mystic Tome (Broom Trap: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sapper47"}},{"itemId":2040275,"className":"HiddenAbility_Sapper48","name":"Mystic Tome (Spike Shooter: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sapper48"}},{"itemId":2040276,"className":"HiddenAbility_Sapper49","name":"Mystic Tome (Spring Trap: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sapper49"}},{"itemId":2040277,"className":"HiddenAbility_Sapper50","name":"Mystic Tome (Leghold Trap: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sapper50"}},{"itemId":2040278,"className":"HiddenAbility_Hunter17","name":"Mystic Tome (Coursing: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hunter17"}},{"itemId":2040279,"className":"HiddenAbility_Hunter18","name":"Mystic Tome (Rush Dog: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hunter18"}},{"itemId":2040280,"className":"HiddenAbility_Hunter19","name":"Mystic Tome (Retrieve: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hunter19"}},{"itemId":2040281,"className":"HiddenAbility_Wugushi30","name":"Mystic Tome (Wugong Gu: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Wugushi30"}},{"itemId":2040282,"className":"HiddenAbility_Wugushi31","name":"Mystic Tome (Poison Pot: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Wugushi31"}},{"itemId":2040283,"className":"HiddenAbility_Wugushi32","name":"Mystic Tome (Golden Frog: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Wugushi32"}},{"itemId":2040284,"className":"HiddenAbility_Wugushi33","name":"Mystic Tome (Latent Venom: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Wugushi33"}},{"itemId":2040285,"className":"HiddenAbility_Wugushi34","name":"Mystic Tome (Wide Miasma: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Wugushi34"}},{"itemId":2040286,"className":"HiddenAbility_Fletcher28","name":"Mystic Tome (Broadhead: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Fletcher28"}},{"itemId":2040287,"className":"HiddenAbility_Fletcher29","name":"Mystic Tome (Bodkin Point: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Fletcher29"}},{"itemId":2040288,"className":"HiddenAbility_Fletcher30","name":"Mystic Tome (Barbed Arrow: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Fletcher30"}},{"itemId":2040289,"className":"HiddenAbility_Fletcher31","name":"Mystic Tome (Crossfire: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Fletcher31"}},{"itemId":2040290,"className":"HiddenAbility_Fletcher32","name":"Mystic Tome (Magic Arrow: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Fletcher32"}},{"itemId":2040291,"className":"HiddenAbility_Fletcher33","name":"Mystic Tome (Divine Machine Arrow: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Fletcher33"}},{"itemId":2040292,"className":"HiddenAbility_Falconer24","name":"Mystic Tome (Pheasant: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Falconer24"}},{"itemId":2040293,"className":"HiddenAbility_Falconer25","name":"Mystic Tome (Sonic Strike: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Falconer25"}},{"itemId":2040294,"className":"HiddenAbility_Falconer26","name":"Mystic Tome (Tomahawk: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Falconer26"}},{"itemId":2040295,"className":"HiddenAbility_Cannoneer26","name":"Mystic Tome (Cannon Shot: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cannoneer26"}},{"itemId":2040296,"className":"HiddenAbility_Cannoneer27","name":"Mystic Tome (Siege Burst: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cannoneer27"}},{"itemId":2040297,"className":"HiddenAbility_Cannoneer28","name":"Mystic Tome (Cannon Blast: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cannoneer28"}},{"itemId":2040298,"className":"HiddenAbility_Cannoneer29","name":"Mystic Tome (Cannon Barrage: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cannoneer29"}},{"itemId":2040299,"className":"HiddenAbility_Cannoneer30","name":"Mystic Tome (Sweeping Cannon: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cannoneer30"}},{"itemId":2040300,"className":"HiddenAbility_Musketeer32","name":"Mystic Tome (Covering Fire: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Musketeer32"}},{"itemId":2040301,"className":"HiddenAbility_Musketeer33","name":"Mystic Tome (Headshot: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Musketeer33"}},{"itemId":2040302,"className":"HiddenAbility_Musketeer34","name":"Mystic Tome (Snipe: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Musketeer34"}},{"itemId":2040303,"className":"HiddenAbility_Musketeer35","name":"Mystic Tome (Penetration Shot: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Musketeer35"}},{"itemId":2040304,"className":"HiddenAbility_Musketeer36","name":"Mystic Tome (Volleyfire: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Musketeer36"}},{"itemId":2040305,"className":"HiddenAbility_Mergen18","name":"Mystic Tome (Spread Shot: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Mergen18"}},{"itemId":2040306,"className":"HiddenAbility_Mergen19","name":"Mystic Tome (Targeted Arrow: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Mergen19"}},{"itemId":2040307,"className":"HiddenAbility_Mergen20","name":"Mystic Tome (Triple Arrow: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Mergen20"}},{"itemId":2040308,"className":"HiddenAbility_Mergen21","name":"Mystic Tome (Arrow Sprinkle: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Mergen21"}},{"itemId":2040309,"className":"HiddenAbility_Mergen22","name":"Mystic Tome (Down Fall: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Mergen22"}},{"itemId":2040310,"className":"HiddenAbility_Mergen23","name":"Mystic Tome (Zenith: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Mergen23"}},{"itemId":2040311,"className":"HiddenAbility_Appraiser8","name":"Mystic Tome (Blindside: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Appraiser8"}},{"itemId":2040312,"className":"HiddenAbility_PiedPiper21","name":"Mystic Tome (Hameln Nagetier: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"PiedPiper21"}},{"itemId":2040313,"className":"HiddenAbility_Matross15","name":"Mystic Tome (Fire and Run: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Matross15"}},{"itemId":2040314,"className":"HiddenAbility_Matross16","name":"Mystic Tome (Explosion: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Matross16"}},{"itemId":2040315,"className":"HiddenAbility_Matross17","name":"Mystic Tome (Crouching Strike: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Matross17"}},{"itemId":2040316,"className":"HiddenAbility_Matross18","name":"Mystic Tome (Canister Shot: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Matross18"}},{"itemId":2040317,"className":"HiddenAbility_TigerHunter10","name":"Mystic Tome (Piercing Shot: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"TigerHunter10"}},{"itemId":2040318,"className":"HiddenAbility_TigerHunter11","name":"Mystic Tome (Rapid Shot: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"TigerHunter11"}},{"itemId":2040319,"className":"HiddenAbility_TigerHunter12","name":"Mystic Tome (Ambush: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"TigerHunter12"}},{"itemId":2040320,"className":"HiddenAbility_Cleric26","name":"Mystic Tome (Heal: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cleric26"}},{"itemId":2040321,"className":"HiddenAbility_Cleric27","name":"Mystic Tome (Smite: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cleric27"}},{"itemId":2040322,"className":"HiddenAbility_Kriwi26","name":"Mystic Tome (Zaibas: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Kriwi26"}},{"itemId":2040323,"className":"HiddenAbility_Kriwi27","name":"Mystic Tome (Divine Stigma: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Kriwi27"}},{"itemId":2040324,"className":"HiddenAbility_Priest31","name":"Mystic Tome (Mass Heal: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Priest31"}},{"itemId":2040325,"className":"HiddenAbility_Priest32","name":"Mystic Tome (Turn Undead: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Priest32"}},{"itemId":2040326,"className":"HiddenAbility_Dievdirbys22","name":"Mystic Tome (Carve Attack: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dievdirbys22"}},{"itemId":2040327,"className":"HiddenAbility_Dievdirbys23","name":"Mystic Tome (Carve Owl: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dievdirbys23"}},{"itemId":2040328,"className":"HiddenAbility_Sadhu27","name":"Mystic Tome (Out of Body: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sadhu27"}},{"itemId":2040329,"className":"HiddenAbility_Sadhu28","name":"Mystic Tome (Vashita Siddhi: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sadhu28"}},{"itemId":2040330,"className":"HiddenAbility_Sadhu29","name":"Mystic Tome (Astral Body Explosion: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sadhu29"}},{"itemId":2040331,"className":"HiddenAbility_Sadhu30","name":"Mystic Tome (Posession: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sadhu30"}},{"itemId":2040332,"className":"HiddenAbility_Paladin30","name":"Mystic Tome (Restoration: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Paladin30"}},{"itemId":2040333,"className":"HiddenAbility_Paladin31","name":"Mystic Tome (Conviction: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Paladin31"}},{"itemId":2040334,"className":"HiddenAbility_Paladin32","name":"Mystic Tome (Demolition: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Paladin32"}},{"itemId":2040335,"className":"HiddenAbility_Monk28","name":"Mystic Tome (Double Punch: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Monk28"}},{"itemId":2040336,"className":"HiddenAbility_Monk29","name":"Mystic Tome (Palm Strike: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Monk29"}},{"itemId":2040337,"className":"HiddenAbility_Monk30","name":"Mystic Tome (Hand Knife: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Monk30"}},{"itemId":2040338,"className":"HiddenAbility_Monk31","name":"Mystic Tome (One Inch Punch: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Monk31"}},{"itemId":2040339,"className":"HiddenAbility_Monk32","name":"Mystic Tome (Energy Blast: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Monk32"}},{"itemId":2040340,"className":"HiddenAbility_Monk33","name":"Mystic Tome (God Finger Flick: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Monk33"}},{"itemId":2040341,"className":"HiddenAbility_Pardoner18","name":"Mystic Tome (Indulgentia: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Pardoner18"}},{"itemId":2040342,"className":"HiddenAbility_Pardoner19","name":"Mystic Tome (Discerning Evil: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Pardoner19"}},{"itemId":2040343,"className":"HiddenAbility_Pardoner20","name":"Mystic Tome (Dekatos: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Pardoner20"}},{"itemId":2040344,"className":"HiddenAbility_Druid24","name":"Mystic Tome (Chortasmata: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Druid24"}},{"itemId":2040345,"className":"HiddenAbility_Druid25","name":"Mystic Tome (Seed Bomb: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Druid25"}},{"itemId":2040346,"className":"HiddenAbility_Druid26","name":"Mystic Tome (Thorn: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Druid26"}},{"itemId":2040347,"className":"HiddenAbility_PlagueDoctor20","name":"Mystic Tome (Incineration: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"PlagueDoctor20"}},{"itemId":2040348,"className":"HiddenAbility_PlagueDoctor21","name":"Mystic Tome (Black Death Steam: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"PlagueDoctor21"}},{"itemId":2040349,"className":"HiddenAbility_Kabbalist28","name":"Mystic Tome (Nachash: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Kabbalist28"}},{"itemId":2040350,"className":"HiddenAbility_Kabbalist29","name":"Mystic Tome (Merkabah: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Kabbalist29"}},{"itemId":2040351,"className":"HiddenAbility_Kabbalist30","name":"Mystic Tome (Tree of Sepiroth: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Kabbalist30"}},{"itemId":2040352,"className":"HiddenAbility_Chaplain19","name":"Mystic Tome (Aspergillum: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Chaplain19"}},{"itemId":2040353,"className":"HiddenAbility_Inquisitor23","name":"Mystic Tome (Pear of Anguish: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Inquisitor23"}},{"itemId":2040354,"className":"HiddenAbility_Inquisitor24","name":"Mystic Tome (Breaking Wheel: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Inquisitor24"}},{"itemId":2040355,"className":"HiddenAbility_Inquisitor25","name":"Mystic Tome (God Smash: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Inquisitor25"}},{"itemId":2040356,"className":"HiddenAbility_Inquisitor26","name":"Mystic Tome (Malleus Maleficarum: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Inquisitor26"}},{"itemId":2040357,"className":"HiddenAbility_Inquisitor27","name":"Mystic Tome (Ripper: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Inquisitor27"}},{"itemId":2040358,"className":"HiddenAbility_Miko11","name":"Mystic Tome (Gohei: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Miko11"}},{"itemId":2040359,"className":"HiddenAbility_Miko12","name":"Mystic Tome (Hamaya: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Miko12"}},{"itemId":2040360,"className":"HiddenAbility_Zealot13","name":"Mystic Tome (Immolation: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Zealot13"}},{"itemId":2040361,"className":"HiddenAbility_Zealot14","name":"Mystic Tome (Fanatic Illusion: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Zealot14"}},{"itemId":2040362,"className":"HiddenAbility_Zealot15","name":"Mystic Tome (Emphatic Trust: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Zealot15"}},{"itemId":2040363,"className":"HiddenAbility_Exorcist21","name":"Mystic Tome (Aqua Benedicta: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Exorcist21"}},{"itemId":2040364,"className":"HiddenAbility_Exorcist22","name":"Mystic Tome (Gregorate: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Exorcist22"}},{"itemId":2040365,"className":"HiddenAbility_Exorcist23","name":"Mystic Tome (Grand Cross: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Exorcist23"}},{"itemId":2040366,"className":"HiddenAbility_Exorcist24","name":"Mystic Tome (Katadikazo: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Exorcist24"}},{"itemId":2040367,"className":"HiddenAbility_Scout24","name":"Mystic Tome (Dagger Slash: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Scout24"}},{"itemId":2040368,"className":"HiddenAbility_Scout25","name":"Mystic Tome (Oblique Fire: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Scout25"}},{"itemId":2040369,"className":"HiddenAbility_Assassin19","name":"Mystic Tome (Behead: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Assassin19"}},{"itemId":2040370,"className":"HiddenAbility_Assassin20","name":"Mystic Tome (Instant Acceleration: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Assassin20"}},{"itemId":2040371,"className":"HiddenAbility_Assassin21","name":"Mystic Tome (Piercing Heart: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Assassin21"}},{"itemId":2040372,"className":"HiddenAbility_Assassin22","name":"Mystic Tome (Annihilation: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Assassin22"}},{"itemId":2040373,"className":"HiddenAbility_Outlaw21","name":"Mystic Tome (Throw Sand: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Outlaw21"}},{"itemId":2040374,"className":"HiddenAbility_Outlaw22","name":"Mystic Tome (Brick Smash: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Outlaw22"}},{"itemId":2040375,"className":"HiddenAbility_Outlaw23","name":"Mystic Tome (Mangle: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Outlaw23"}},{"itemId":2040376,"className":"HiddenAbility_Outlaw24","name":"Mystic Tome (Blindfire: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Outlaw24"}},{"itemId":2040377,"className":"HiddenAbility_Outlaw25","name":"Mystic Tome (Rampage: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Outlaw25"}},{"itemId":2040378,"className":"HiddenAbility_Squire17","name":"Mystic Tome (Deadly Combo: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Squire17"}},{"itemId":2040379,"className":"HiddenAbility_Corsair22","name":"Mystic Tome (Keel Hauling: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Corsair22"}},{"itemId":2040380,"className":"HiddenAbility_Corsair23","name":"Mystic Tome (Dust Devil: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Corsair23"}},{"itemId":2040381,"className":"HiddenAbility_Corsair24","name":"Mystic Tome (Hexen Dropper: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Corsair24"}},{"itemId":2040382,"className":"HiddenAbility_Corsair25","name":"Mystic Tome (Quick and Dead: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Corsair25"}},{"itemId":2040383,"className":"HiddenAbility_Corsair26","name":"Mystic Tome (Impale Dagger: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Corsair26"}},{"itemId":2040384,"className":"HiddenAbility_Shinobi12","name":"Mystic Tome (Mijin no Jutsu: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Shinobi12"}},{"itemId":2040385,"className":"HiddenAbility_Shinobi13","name":"Mystic Tome (Katon no Jutsu: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Shinobi13"}},{"itemId":2040386,"className":"HiddenAbility_Shinobi14","name":"Mystic Tome (Kunai: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Shinobi14"}},{"itemId":2040387,"className":"HiddenAbility_Shinobi15","name":"Mystic Tome (Raiton no Jutsu: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Shinobi15"}},{"itemId":2040388,"className":"HiddenAbility_Linker20","name":"Mystic Tome (Electric Shock: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Linker20"}},{"itemId":2040389,"className":"HiddenAbility_Enchanter16","name":"Mystic Tome (Lightning Hands: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Enchanter16"}},{"itemId":2040390,"className":"HiddenAbility_Rogue23","name":"Mystic Tome (Burrow: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Rogue23"}},{"itemId":2040391,"className":"HiddenAbility_Rogue24","name":"Mystic Tome (Backstab: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Rogue24"}},{"itemId":2040392,"className":"HiddenAbility_Rogue25","name":"Mystic Tome (Knife Throw: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Rogue25"}},{"itemId":2040393,"className":"HiddenAbility_Schwarzereiter21","name":"Mystic Tome (Concentrated Fire: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Schwarzereiter21"}},{"itemId":2040394,"className":"HiddenAbility_Schwarzereiter22","name":"Mystic Tome (Caracole: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Schwarzereiter22"}},{"itemId":2040395,"className":"HiddenAbility_Schwarzereiter23","name":"Mystic Tome (Limacon: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Schwarzereiter23"}},{"itemId":2040396,"className":"HiddenAbility_Schwarzereiter24","name":"Mystic Tome (Retreat Shot: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Schwarzereiter24"}},{"itemId":2040397,"className":"HiddenAbility_Schwarzereiter25","name":"Mystic Tome (Marching Fire: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Schwarzereiter25"}},{"itemId":2040398,"className":"HiddenAbility_Bulletmarker17","name":"Mystic Tome (Napalm Bullet: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Bulletmarker17"}},{"itemId":2040399,"className":"HiddenAbility_Bulletmarker18","name":"Mystic Tome (Full Metal Jacket: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Bulletmarker18"}},{"itemId":2040400,"className":"HiddenAbility_Bulletmarker19","name":"Mystic Tome (R.I.P.: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Bulletmarker19"}},{"itemId":2040401,"className":"HiddenAbility_Bulletmarker20","name":"Mystic Tome (Bloody Overdrive: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Bulletmarker20"}},{"itemId":2040402,"className":"HiddenAbility_Bulletmarker21","name":"Mystic Tome (Smash Bullet: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Bulletmarker21"}},{"itemId":2040403,"className":"HiddenAbility_Bulletmarker22","name":"Mystic Tome (Mozambique Drill: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Bulletmarker22"}},{"itemId":2040404,"className":"HiddenAbility_Bulletmarker23","name":"Mystic Tome (Outrage: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Bulletmarker23"}},{"itemId":2040405,"className":"HiddenAbility_Arditi12","name":"Mystic Tome (Granata: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Arditi12"}},{"itemId":2040406,"className":"HiddenAbility_Arditi13","name":"Mystic Tome (Tre Granata: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Arditi13"}},{"itemId":2040407,"className":"HiddenAbility_Arditi14","name":"Mystic Tome (Ritirarsi: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Arditi14"}},{"itemId":2040408,"className":"HiddenAbility_Arditi15","name":"Mystic Tome (Invasione: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Arditi15"}},{"itemId":2040409,"className":"HiddenAbility_Arditi16","name":"Mystic Tome (Taglio: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Arditi16"}},{"itemId":2040410,"className":"HiddenAbility_Sheriff10","name":"Mystic Tome (Quick Draw: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sheriff10"}},{"itemId":2040411,"className":"HiddenAbility_Sheriff11","name":"Mystic Tome (Fanning: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sheriff11"}},{"itemId":2040412,"className":"HiddenAbility_Sheriff12","name":"Mystic Tome (Peacemaker: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sheriff12"}},{"itemId":2040413,"className":"HiddenAbility_Sheriff13","name":"Mystic Tome (Aiming Shot: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sheriff13"}},{"itemId":2040414,"className":"HiddenAbility_Daoshi26","name":"Mystic Tome (Begone Demon: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Daoshi26"}},{"itemId":2040415,"className":"HiddenAbility_Exorcist25","name":"Mystic Tome (Rubric: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Exorcist25"}},{"itemId":2040416,"className":"HiddenAbility_Exorcist26","name":"Mystic Tome (Entity: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Exorcist26"}},{"itemId":2040417,"className":"HiddenAbility_Blossomblader12","name":"Mystic Tome (Fallen Blossom: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Blossomblader12"}},{"itemId":2040418,"className":"HiddenAbility_Blossomblader13","name":"Mystic Tome (Control Blade: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Blossomblader13"}},{"itemId":2040419,"className":"HiddenAbility_Blossomblader14","name":"Mystic Tome (Flash: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Blossomblader14"}},{"itemId":2040420,"className":"HiddenAbility_Blossomblader15","name":"Mystic Tome (Blossom Slash: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Blossomblader15"}},{"itemId":2040421,"className":"HiddenAbility_Blossomblader18","name":"Mystic Tome (Control Blade: Hiten Blade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Blossomblader18"}},{"itemId":2040422,"className":"HiddenAbility_Terramancer10","name":"Mystic Tome (Sand Blast: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Terramancer10"}},{"itemId":2040423,"className":"HiddenAbility_Terramancer12","name":"Mystic Tome (Stone Shower: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Terramancer12"}},{"itemId":2040424,"className":"HiddenAbility_Terramancer13","name":"Mystic Tome (Rolling Stone: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Terramancer13"}},{"itemId":2040425,"className":"HiddenAbility_Terramancer14","name":"Mystic Tome (Implosion: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Terramancer14"}},{"itemId":2040426,"className":"HiddenAbility_Terramancer15","name":"Mystic Tome (Horn of Golem: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Terramancer15"}},{"itemId":2040427,"className":"HiddenAbility_Terramancer16","name":"Mystic Tome (Horn of Golem: Circle Trap)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Terramancer16"}},{"itemId":2040428,"className":"HiddenAbility_Arbalester9","name":"Mystic Tome (Dark Judgement: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Arbalester9"}},{"itemId":2040429,"className":"HiddenAbility_Arbalester10","name":"Mystic Tome (Dark Judgement: Black Curtain)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Arbalester10"}},{"itemId":2040430,"className":"HiddenAbility_Arbalester11","name":"Mystic Tome (Guided Shot: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Arbalester11"}},{"itemId":2040431,"className":"HiddenAbility_Arbalester12","name":"Mystic Tome (Fanwise Shots: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Arbalester12"}},{"itemId":2040432,"className":"HiddenAbility_Arbalester13","name":"Mystic Tome (Escape: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Arbalester13"}},{"itemId":2040433,"className":"HiddenAbility_Arbalester14","name":"Mystic Tome (Dead Zone: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Arbalester14"}},{"itemId":2040434,"className":"HiddenAbility_Arbalester15","name":"Mystic Tome (Shining Burst: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Arbalester15"}},{"itemId":2040435,"className":"HiddenAbility_Crusader7","name":"Mystic Tome (Holy Smash: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Crusader7"}},{"itemId":2040436,"className":"HiddenAbility_Crusader8","name":"Mystic Tome (Protection of Goddess: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Crusader8"}},{"itemId":2040437,"className":"HiddenAbility_Crusader9","name":"Mystic Tome (Retaliation: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Crusader9"}},{"itemId":2040438,"className":"HiddenAbility_Crusader10","name":"Mystic Tome (Condemn: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Crusader10"}},{"itemId":2040439,"className":"HiddenAbility_Crusader13","name":"Mystic Tome (Ring of Light: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Crusader13"}},{"itemId":2040440,"className":"HiddenAbility_Crusader14","name":"Mystic Tome (Sacred: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Crusader14"}},{"itemId":2040441,"className":"HiddenAbility_Crusader15","name":"Mystic Tome (Chant: Goddess' Blessing)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Crusader15"}},{"itemId":2040442,"className":"HiddenAbility_Rangda6","name":"Mystic Tome (Luka: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Rangda6"}},{"itemId":2040443,"className":"HiddenAbility_Rangda7","name":"Mystic Tome (Kutukan: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Rangda7"}},{"itemId":2040444,"className":"HiddenAbility_Rangda8","name":"Mystic Tome (Rawa: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Rangda8"}},{"itemId":2040445,"className":"HiddenAbility_Rangda14","name":"Mystic Tome (Penyerapan: Energy Drain)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Rangda14"}},{"itemId":2040446,"className":"HiddenAbility_Hunter20","name":"Mystic Tome (Rush Dog: Onslaught)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hunter20"}},{"itemId":2040447,"className":"HiddenAbility_NakMuay12","name":"Mystic Tome (Muay Thai: Muay Boran)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"NakMuay12"}},{"itemId":2040448,"className":"HiddenAbility_Doppelsoeldner35","name":"Mystic Tome (Cyclone: Tornado)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Doppelsoeldner35"}},{"itemId":2040449,"className":"HiddenAbility_Dragoon28","name":"Mystic Tome (Dragontooth: Long Canine)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dragoon28"}},{"itemId":2040450,"className":"HiddenAbility_Lancer28","name":"Mystic Tome (Joust: Destroy Base)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Lancer28"}},{"itemId":2040451,"className":"HiddenAbility_Retiarii24","name":"Mystic Tome (Throw Rete: Large Rete)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Retiarii24"}},{"itemId":2040452,"className":"HiddenAbility_Rodelero41","name":"Mystic Tome (Shooting Star: Violence)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Rodelero41"}},{"itemId":2040453,"className":"HiddenAbility_Matador26","name":"Mystic Tome (Muleta: Faena)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Matador26"}},{"itemId":2040454,"className":"HiddenAbility_Blossomblader19","name":"Mystic Tome (Flash: Thunderbolt)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Blossomblader19"}},{"itemId":2040455,"className":"HiddenAbility_Murmillo28","name":"Mystic Tome (Shield Train: Secondary Shock)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Murmillo28"}},{"itemId":2040456,"className":"HiddenAbility_Barbarian41","name":"Mystic Tome (Pouncing: Trance)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Barbarian41"}},{"itemId":2040457,"className":"HiddenAbility_Cataphract40","name":"Mystic Tome (Steed Charge: Fire Chariot)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cataphract40"}},{"itemId":2040458,"className":"HiddenAbility_Templar11","name":"Mystic Tome (Forge: Recall)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Templar11"}},{"itemId":2040459,"className":"HiddenAbility_Fencer20","name":"Mystic Tome (Epee Garde: Fleuret)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Fencer20"}},{"itemId":2040460,"className":"HiddenAbility_Peltasta44","name":"Mystic Tome (Swash Buckling: Swear Word)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Peltasta44"}},{"itemId":2040461,"className":"HiddenAbility_Highlander42","name":"Mystic Tome (Skyliner: Fury)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Highlander42"}},{"itemId":2040462,"className":"HiddenAbility_Hackapell23","name":"Mystic Tome (Cavalry Charge: Elite Cavalry)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hackapell23"}},{"itemId":2040463,"className":"HiddenAbility_Hoplite40","name":"Mystic Tome (Synchro Thrusting: Repeated Hits)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hoplite40"}},{"itemId":2040464,"className":"HiddenAbility_Necromancer35","name":"Mystic Tome (Raise Skeleton Soldier: Elite)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Necromancer35"}},{"itemId":2040465,"className":"HiddenAbility_Daoshi30","name":"Mystic Tome (Divine Punishment: Storm)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Daoshi30"}},{"itemId":2040466,"className":"HiddenAbility_RuneCaster18","name":"Mystic Tome (Rune of Justice: Judgement)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"RuneCaster18"}},{"itemId":2040467,"className":"HiddenAbility_Bokor30","name":"Mystic Tome (Samediveve: Enhance Pattern)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Bokor30"}},{"itemId":2040468,"className":"HiddenAbility_Psychokino30","name":"Mystic Tome (Gravity Pole: Rotation)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Psychokino30"}},{"itemId":2040469,"className":"HiddenAbility_Shadowmancer16","name":"Mystic Tome (Shadow Pool: Darkness Armor)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Shadowmancer16"}},{"itemId":2040470,"className":"HiddenAbility_Sage27","name":"Mystic Tome (Blink: Paradox)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sage27"}},{"itemId":2040471,"className":"HiddenAbility_Sorcerer24","name":"Mystic Tome (Desmodus: Formation)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sorcerer24"}},{"itemId":2040472,"className":"HiddenAbility_Elementalist40","name":"Mystic Tome (Blizzard Storm: Whirlpool)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Elementalist40"}},{"itemId":2040473,"className":"HiddenAbility_Warlock26","name":"Mystic Tome (Evil: Expand)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Warlock26"}},{"itemId":2040474,"className":"HiddenAbility_Onmyoji28","name":"Mystic Tome (Genbu Armor: Possessed)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Onmyoji28"}},{"itemId":2040475,"className":"HiddenAbility_Chronomancer19","name":"Mystic Tome (Stop: Aging)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Chronomancer19"}},{"itemId":2040476,"className":"HiddenAbility_Cryomancer32","name":"Mystic Tome (Cryomancer: Thin Ice)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cryomancer32"}},{"itemId":2040477,"className":"HiddenAbility_Terramancer19","name":"Mystic Tome (Sand Wall: Quicksand)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Terramancer19"}},{"itemId":2040478,"className":"HiddenAbility_Pyromancer38","name":"Mystic Tome (Hell Breath: Napalm)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Pyromancer38"}},{"itemId":2040479,"className":"HiddenAbility_Featherfoot34","name":"Mystic Tome (Bone Pointing: Bone Necklace)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Featherfoot34"}},{"itemId":2040480,"className":"HiddenAbility_Appraiser9","name":"Mystic Tome (Insurance: Life Insurance)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Appraiser9"}},{"itemId":2040481,"className":"HiddenAbility_Ranger45","name":"Mystic Tome (Spiral Arrow: Piercing Shot)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Ranger45"}},{"itemId":2040482,"className":"HiddenAbility_Matross19","name":"Mystic Tome (Canister Shot: Gravity Adjustment)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Matross19"}},{"itemId":2040483,"className":"HiddenAbility_Musketeer37","name":"Mystic Tome (Sniper's Serenity: Large Caliber)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Musketeer37"}},{"itemId":2040484,"className":"HiddenAbility_Mergen24","name":"Mystic Tome (Down Fall: Rapid Shot)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Mergen24"}},{"itemId":2040485,"className":"HiddenAbility_Wugushi36","name":"Mystic Tome (Jincan Gu: Golden Frog)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Wugushi36"}},{"itemId":2040486,"className":"HiddenAbility_TigerHunter13","name":"Mystic Tome (Ambush: Agile Movement)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"TigerHunter13"}},{"itemId":2040487,"className":"HiddenAbility_Sapper51","name":"Mystic Tome (Spike Shooter: Penetration)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sapper51"}},{"itemId":2040488,"className":"HiddenAbility_Arbalester18","name":"Mystic Tome (Dead Zone: Exterminate)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Arbalester18"}},{"itemId":2040489,"className":"HiddenAbility_Falconer27","name":"Mystic Tome (Tomahawk: Scorched)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Falconer27"}},{"itemId":2040490,"className":"HiddenAbility_Cannoneer31","name":"Mystic Tome (Bazooka: Nimble)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cannoneer31"}},{"itemId":2040491,"className":"HiddenAbility_QuarrelShooter35","name":"Mystic Tome (Block and Shoot: Covered Shot)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"QuarrelShooter35"}},{"itemId":2040492,"className":"HiddenAbility_PiedPiper22","name":"Mystic Tome (Friedenslied: SmileClap)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"PiedPiper22"}},{"itemId":2040493,"className":"HiddenAbility_Fletcher34","name":"Mystic Tome (Divine Machine Arrow: Chain Explosion)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Fletcher34"}},{"itemId":2040494,"className":"HiddenAbility_Hunter21","name":"Mystic Tome (Coursing: Grip)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hunter21"}},{"itemId":2040495,"className":"HiddenAbility_Druid27","name":"Mystic Tome (Lycanthropy: Wolf's Spirit)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Druid27"}},{"itemId":2040496,"className":"HiddenAbility_Dievdirbys24","name":"Mystic Tome (Carve Attack: Create Statue)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dievdirbys24"}},{"itemId":2040497,"className":"HiddenAbility_Monk34","name":"Mystic Tome (Palm Strike: Tathagata)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Monk34"}},{"itemId":2040498,"className":"HiddenAbility_Miko13","name":"Mystic Tome (Hamaya: Heal)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Miko13"}},{"itemId":2040499,"className":"HiddenAbility_Sadhu31","name":"Mystic Tome (Sadhu: Penance)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sadhu31"}},{"itemId":2040500,"className":"HiddenAbility_Exorcist27","name":"Mystic Tome (Entity: Search)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Exorcist27"}},{"itemId":2040501,"className":"HiddenAbility_Oracle24","name":"Mystic Tome (Foretell: Ominous Prophecy)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Oracle24"}},{"itemId":2040502,"className":"HiddenAbility_Inquisitor29","name":"Mystic Tome (Judgment: Summary Decision)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Inquisitor29"}},{"itemId":2040503,"className":"HiddenAbility_Zealot16","name":"Mystic Tome (Fanatic Illusion: Blind Faith)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Zealot16"}},{"itemId":2040504,"className":"HiddenAbility_Chaplain21","name":"Mystic Tome (Aspergillum: Magnus Exorcismus)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Chaplain21"}},{"itemId":2040505,"className":"HiddenAbility_Kabbalist32","name":"Mystic Tome (Revenged Sevenfold: Last Chance)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Kabbalist32"}},{"itemId":2040506,"className":"HiddenAbility_Crusader21","name":"Mystic Tome (Protection of Goddess: Dispersion)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Crusader21"}},{"itemId":2040507,"className":"HiddenAbility_Kriwi29","name":"Mystic Tome (Zaibas: Catatumbo)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Kriwi29"}},{"itemId":2040508,"className":"HiddenAbility_Paladin43","name":"Mystic Tome (Conviction: Radiance)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Paladin43"}},{"itemId":2040509,"className":"HiddenAbility_Priest33","name":"Mystic Tome (Mass Heal: Shield)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Priest33"}},{"itemId":2040510,"className":"HiddenAbility_PlagueDoctor23","name":"Mystic Tome (Bird Beak Mask: White Mask)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"PlagueDoctor23"}},{"itemId":2040511,"className":"HiddenAbility_Rangda15","name":"Mystic Tome (Luka: Redakan)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Rangda15"}},{"itemId":2040512,"className":"HiddenAbility_Rogue26","name":"Mystic Tome (Lachrymator: Lethal Gas)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Rogue26"}},{"itemId":2040513,"className":"HiddenAbility_Linker21","name":"Mystic Tome (Hangman's Knot: Mine)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Linker21"}},{"itemId":2040514,"className":"HiddenAbility_Bulletmarker25","name":"Mystic Tome (Bloody Overdrive: Broadside)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Bulletmarker25"}},{"itemId":2040515,"className":"HiddenAbility_Sheriff15","name":"Mystic Tome (Aiming Shot: PM Shot)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sheriff15"}},{"itemId":2040516,"className":"HiddenAbility_Schwarzereiter27","name":"Mystic Tome (Limacon: Additional Distress)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Schwarzereiter27"}},{"itemId":2040517,"className":"HiddenAbility_Shinobi19","name":"Mystic Tome (Raiton no Jutsu: Hirai)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Shinobi19"}},{"itemId":2040518,"className":"HiddenAbility_Thaumaturge22","name":"Mystic Tome (Swell Body: Ally)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Thaumaturge22"}},{"itemId":2040519,"className":"HiddenAbility_Thaumaturge23","name":"Mystic Tome (Shrink Body: Ally)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Thaumaturge23"}},{"itemId":2040520,"className":"HiddenAbility_Arditi18","name":"Mystic Tome (Ritirarsi: Attach)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Arditi18"}},{"itemId":2040521,"className":"HiddenAbility_Outlaw26","name":"Mystic Tome (Brick Smash: Shatter)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Outlaw26"}},{"itemId":2040522,"className":"HiddenAbility_Assassin23","name":"Mystic Tome (Annihilation: High Speed)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Assassin23"}},{"itemId":2040523,"className":"HiddenAbility_Corsair30","name":"Mystic Tome (Corsair: Lucky Coin)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Corsair30"}},{"itemId":2040524,"className":"HiddenAbility_QuarrelShooter36","name":"Mystic Tome (Block and Shoot: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"QuarrelShooter36"}},{"itemId":2040525,"className":"HiddenAbility_Fencer22","name":"Mystic Tome (Fencer: Parrying Dagger)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Fencer22"}},{"itemId":2040526,"className":"HiddenAbility_Fencer23","name":"Mystic Tome (Esquive Toucher: Clean Dodge)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Fencer23"}},{"itemId":2040527,"className":"HiddenAbility_Rangda5","name":"Mystic Tome (Barong: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Rangda5"}},{"itemId":2040528,"className":"HiddenAbility_Chaplain22","name":"Mystic Tome (Binatio: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Chaplain22"}},{"itemId":2040529,"className":"HiddenAbility_Daoshi33","name":"Mystic Tome (Flame Radiation Charm: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Daoshi33"}},{"itemId":2040530,"className":"HiddenAbility_Daoshi35","name":"Mystic Tome (Fire Charm: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Daoshi35"}},{"itemId":2040531,"className":"HiddenAbility_Daoshi37","name":"Mystic Tome (Creeping Death Charm: Explosion)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Daoshi37"}},{"itemId":2040532,"className":"HiddenAbility_Elementalist42","name":"Mystic Tome (Lightning Orb: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Elementalist42"}},{"itemId":2040533,"className":"HiddenAbility_Elementalist44","name":"Mystic Tome (Elemental Burst: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Elementalist44"}},{"itemId":2040534,"className":"HiddenAbility_Bokor32","name":"Mystic Tome (Curse of Debility: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Bokor32"}},{"itemId":2040535,"className":"HiddenAbility_Bokor34","name":"Mystic Tome (Samediveve: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Bokor34"}},{"itemId":2040536,"className":"HiddenAbility_Bokor35","name":"Mystic Tome (Curse of Debility: Dark Force)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Bokor35"}},{"itemId":2040537,"className":"HiddenAbility_RuneCaster21","name":"Mystic Tome (Rune of Gravity: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"RuneCaster21"}},{"itemId":2040538,"className":"HiddenAbility_RuneCaster24","name":"Mystic Tome (Rune of Repulsion: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"RuneCaster24"}},{"itemId":2040539,"className":"HiddenAbility_Onmyoji33","name":"Mystic Tome (Essence of Shikigami: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Onmyoji33"}},{"itemId":2040540,"className":"HiddenAbility_Pyromancer39","name":"Mystic Tome (Enchant Fire: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Pyromancer39"}},{"itemId":2040541,"className":"HiddenAbility_Sadhu33","name":"Mystic Tome (Spirit Strike: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sadhu33"}},{"itemId":2040542,"className":"HiddenAbility_Peltasta45","name":"Mystic Tome (Langort: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Peltasta45"}},{"itemId":2040543,"className":"HiddenAbility_Murmillo31","name":"Mystic Tome (Butterfly: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Murmillo31"}},{"itemId":2040544,"className":"HiddenAbility_Arquebusier7","name":"Mystic Tome (Pinpoint Fire: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Arquebusier7"}},{"itemId":2040545,"className":"HiddenAbility_Arquebusier8","name":"Mystic Tome (Lucky Strike: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Arquebusier8"}},{"itemId":2040546,"className":"HiddenAbility_Arquebusier9","name":"Mystic Tome (Arquebus Barrage: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Arquebusier9"}},{"itemId":2040547,"className":"HiddenAbility_Arquebusier10","name":"Mystic Tome (Dusty Salute: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Arquebusier10"}},{"itemId":2040548,"className":"HiddenAbility_Arquebusier11","name":"Mystic Tome (Precision Fire: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Arquebusier11"}},{"itemId":2040549,"className":"HiddenAbility_Arquebusier17","name":"Mystic Tome (Prediction: Perfect Hit)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Arquebusier17"}},{"itemId":2040550,"className":"HiddenAbility_Arquebusier18","name":"Mystic Tome (Desperate Defense: Courage)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Arquebusier18"}},{"itemId":2040551,"className":"HiddenAbility_Clown6","name":"Mystic Tome (Spinning Knife: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Clown6"}},{"itemId":2040552,"className":"HiddenAbility_Clown7","name":"Mystic Tome (Replica: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Clown7"}},{"itemId":2040553,"className":"HiddenAbility_Clown8","name":"Mystic Tome (Fatal Roulette: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Clown8"}},{"itemId":2040554,"className":"HiddenAbility_Clown9","name":"Mystic Tome (Climax: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Clown9"}},{"itemId":2040555,"className":"HiddenAbility_Clown13","name":"Mystic Tome (Spinning Knife: Juggling)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Clown13"}},{"itemId":2040556,"className":"HiddenAbility_Clown14","name":"Mystic Tome (Replica: Trickery)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Clown14"}},{"itemId":2040557,"className":"HiddenAbility_NakMuay13","name":"Mystic Tome (Khao Loi: Khao Trong)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"NakMuay13"}},{"itemId":2040558,"className":"HiddenAbility_QuarrelShooter37","name":"Mystic Tome (Running Shot: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"QuarrelShooter37"}},{"itemId":2040559,"className":"HiddenAbility_Cleric34","name":"Mystic Tome (Heal: Corrupted Sphere Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cleric34"}},{"itemId":2040560,"className":"HiddenAbility_Arbalester19","name":"Mystic Tome (Targeted Arrows: Additional Damage)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Arbalester19"}},{"itemId":2040561,"className":"HiddenAbility_Kriwi31","name":"Mystic Tome (Piety: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Kriwi31"}},{"itemId":2040562,"className":"HiddenAbility_Kriwi33","name":"Mystic Tome (Piety: Focus)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Kriwi33"}},{"itemId":2040563,"className":"HiddenAbility_Crusader22","name":"Mystic Tome (Ring of Light: Divine Hammer)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Crusader22"}},{"itemId":2040564,"className":"HiddenAbility_Doppelsoeldner37","name":"Mystic Tome (Deeds of Valor: Double Pay Earn)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Doppelsoeldner37"}},{"itemId":2040565,"className":"HiddenAbility_Blossomblader21","name":"Mystic Tome (Flowering: Blossom Flows)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Blossomblader21"}},{"itemId":2040566,"className":"HiddenAbility_PiedPiper23","name":"Mystic Tome (Pied Piper: Hameln Nagetier)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"PiedPiper23"}},{"itemId":2040567,"className":"HiddenAbility_PiedPiper25","name":"Mystic Tome (Stegreifspiel: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"PiedPiper25"}},{"itemId":2040568,"className":"HiddenAbility_PiedPiper27","name":"Mystic Tome (Hypnotische Floete: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"PiedPiper27"}},{"itemId":2040569,"className":"HiddenAbility_PiedPiper29","name":"Mystic Tome (Friedenslied: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"PiedPiper29"}},{"itemId":2040570,"className":"HiddenAbility_PiedPiper31","name":"Mystic Tome (Dissonanz: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"PiedPiper31"}},{"itemId":2040571,"className":"HiddenAbility_Thaumaturge29","name":"Mystic Tome (Friedenslied: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Thaumaturge29"}},{"itemId":2040572,"className":"HiddenAbility_Thaumaturge30","name":"Mystic Tome (Birth of Inanity: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Thaumaturge30"}},{"itemId":2040573,"className":"HiddenAbility_Thaumaturge31","name":"Mystic Tome (Abrupt Change: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Thaumaturge31"}},{"itemId":2040574,"className":"HiddenAbility_Enchanter24","name":"Mystic Tome (Magic Absorption: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Enchanter24"}},{"itemId":2040575,"className":"HiddenAbility_Enchanter25","name":"Mystic Tome (Mana Eruption: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Enchanter25"}},{"itemId":2040576,"className":"HiddenAbility_Enchanter26","name":"Mystic Tome (Enchant Field: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Enchanter26"}},{"itemId":2040577,"className":"HiddenAbility_Enchanter27","name":"Mystic Tome (Enchant Round: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Enchanter27"}},{"itemId":2040578,"className":"HiddenAbility_Enchanter28","name":"Mystic Tome (Fragility: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Enchanter28"}},{"itemId":2040579,"className":"HiddenAbility_Chronomancer21","name":"Mystic Tome (Time Forward: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Chronomancer21"}},{"itemId":2040580,"className":"HiddenAbility_Chronomancer23","name":"Mystic Tome (Time Eruption: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Chronomancer23"}},{"itemId":2040581,"className":"HiddenAbility_Chronomancer27","name":"Mystic Tome (Time Restriction: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Chronomancer27"}},{"itemId":2040582,"className":"HiddenAbility_Schwarzereiter30","name":"Mystic Tome (Marching Fire: Taking Cover)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Schwarzereiter30"}},{"itemId":2040583,"className":"HiddenAbility_Rangda17","name":"Mystic Tome (Penyerapan: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Rangda17"}},{"itemId":2040584,"className":"HiddenAbility_Rangda18","name":"Mystic Tome (Keletihan: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Rangda18"}},{"itemId":2040585,"className":"HiddenAbility_Schwarzereiter32","name":"Mystic Tome (Limacon: Additional Damage)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Schwarzereiter32"}},{"itemId":2040586,"className":"HiddenAbility_Schwarzereiter29","name":"Mystic Tome (Serial Bullet: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Schwarzereiter29"}},{"itemId":2040587,"className":"HiddenAbility_Corsair34","name":"Mystic Tome (Hook Swing: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Corsair34"}},{"itemId":2040588,"className":"HiddenAbility_Corsair37","name":"Mystic Tome (Iron Hook: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Corsair37"}},{"itemId":2040589,"className":"HiddenAbility_Linker26","name":"Mystic Tome (Joint Penalty: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Linker26"}},{"itemId":2040590,"className":"HiddenAbility_Linker24","name":"Mystic Tome (Hangman's Knot: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Linker24"}},{"itemId":2040591,"className":"HiddenAbility_Appraiser16","name":"Mystic Tome (High Scale Magnifying Glass: Focus Trim)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Appraiser16"}},{"itemId":2040592,"className":"HiddenAbility_Appraiser11","name":"Mystic Tome (Huge Magnifier: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Appraiser11"}},{"itemId":2040593,"className":"HiddenAbility_Appraiser14","name":"Mystic Tome (Triplet Lense: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Appraiser14"}},{"itemId":2040594,"className":"HiddenAbility_Appraiser15","name":"Mystic Tome (Devaluation: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Appraiser15"}},{"itemId":2040595,"className":"HiddenAbility_Wugushi37","name":"Mystic Tome (Zhendu: Poison Water)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Wugushi37"}},{"itemId":2040596,"className":"HiddenAbility_Schwarzereiter34","name":"Mystic Tome (Evasive Action: Duration)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Schwarzereiter34"}},{"itemId":2040597,"className":"HiddenAbility_Sadhu41","name":"Mystic Tome (Enira: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sadhu41"}},{"itemId":2040598,"className":"HiddenAbility_Sadhu42","name":"Mystic Tome (Tanoti: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sadhu42"}},{"itemId":2040599,"className":"HiddenAbility_Sadhu43","name":"Mystic Tome (Patati: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sadhu43"}},{"itemId":2040600,"className":"HiddenAbility_Sadhu44","name":"Mystic Tome (Moksha: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sadhu44"}},{"itemId":2040601,"className":"HiddenAbility_Sadhu45","name":"Mystic Tome (Prakriti: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sadhu45"}},{"itemId":2040602,"className":"HiddenAbility_Sadhu46","name":"Mystic Tome (Spirit Expert: Wandering Soul)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sadhu35"}},{"itemId":2040603,"className":"HiddenAbility_Sadhu47","name":"Mystic Tome (Prakriti: Penance)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sadhu46"}},{"itemId":2040604,"className":"HiddenAbility_Keraunos10","name":"Mystic Tome (Overload: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Keraunos10"}},{"itemId":2040605,"className":"HiddenAbility_Keraunos11","name":"Mystic Tome (Electric Orb: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Keraunos11"}},{"itemId":2040606,"className":"HiddenAbility_Keraunos12","name":"Mystic Tome (Lightning Spear: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Keraunos12"}},{"itemId":2040607,"className":"HiddenAbility_Keraunos13","name":"Mystic Tome (Electrode: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Keraunos13"}},{"itemId":2040608,"className":"HiddenAbility_Keraunos14","name":"Mystic Tome (Static: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Keraunos14"}},{"itemId":2040609,"className":"HiddenAbility_Keraunos15","name":"Mystic Tome (Electric Drive: Enhanced Upgrade)","type":"Etc","group":"HiddenAbility","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Keraunos15"}},{"itemId":699001,"className":"Weapon_icor","name":"Astri Ichor","type":"Etc","group":"Icor","weight":1,"maxStack":1,"price":10,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_CONVERT_ICOR_TO_VIBORA"}},{"itemId":699002,"className":"Armor_icor","name":"Stiprus Ichor","type":"Etc","group":"Icor","weight":1,"maxStack":1,"price":10,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_CONVERT_ICOR_TO_VIBORA"}},{"itemId":2050022,"className":"Market_Weapon_icor","name":"Goddess Ichor - Weapons","type":"Etc","group":"Icor","weight":1,"maxStack":1,"price":10,"sellPrice":10,"minLevel":1},{"itemId":2050023,"className":"Market_Armor_icor","name":"Goddess Ichor - Armor","type":"Etc","group":"Icor","weight":1,"maxStack":1,"price":10,"sellPrice":10,"minLevel":1},{"itemId":11201002,"className":"EP14_GoddessIcor_Armor","name":"[Lv.480] Goddess Ichor (Armor)","type":"Etc","group":"Icor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":480,"script":{"strArg":"piece_EP14_GoddessIcor_Armor","numArg1":1}},{"itemId":11201003,"className":"EP14_GoddessIcor_Armor_high","name":"[Lv.480] Advanced Goddess Ichor (Armor)","type":"Etc","group":"Icor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":480,"script":{"strArg":"piece_EP14_GoddessIcor_Armor","numArg1":20}},{"itemId":11201007,"className":"EP14_GoddessIcor_Weapon","name":"[Lv.480] Goddess Ichor (Weapon)","type":"Etc","group":"Icor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":480,"script":{"strArg":"piece_EP14_GoddessIcor_Weapon","numArg1":1}},{"itemId":11201008,"className":"EP14_GoddessIcor_Weapon_high","name":"[Lv.480] Advanced Goddess Ichor (Weapon)","type":"Etc","group":"Icor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":480,"script":{"strArg":"piece_EP14_GoddessIcor_Weapon","numArg1":20}},{"itemId":11201037,"className":"NoTrade_EP14_GoddessIcor_Armor_high","name":"[Event][Lv.480] Advanced Goddess Ichor (Armor)","type":"Etc","group":"Icor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":480,"script":{"strArg":"piece_EP14_GoddessIcor_Armor","numArg1":20}},{"itemId":11201038,"className":"NoTrade_EP14_GoddessIcor_Weapon_high","name":"[Event][Lv.480] Advanced Goddess Ichor (Weapon)","type":"Etc","group":"Icor","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":480,"script":{"strArg":"piece_EP14_GoddessIcor_Weapon","numArg1":20}},{"itemId":647024,"className":"misc_Planium","name":"Planium","type":"Etc","group":"LegendMaterial","weight":1,"maxStack":32767,"price":300,"sellPrice":5,"minLevel":1},{"itemId":647049,"className":"misc_Planium_NoTrade","name":"ITEM_20230130_028357","type":"Etc","group":"LegendMaterial","weight":1,"maxStack":32767,"price":300,"sellPrice":5,"minLevel":1},{"itemId":11030011,"className":"misc_Brikynite","name":"Brikynite","type":"Etc","group":"LegendMaterial","weight":1,"maxStack":32767,"price":300,"sellPrice":5,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030012,"className":"piece_misc_Brikynite","name":"Brikynite Fragment","type":"Consume","group":"LegendMaterial","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"Addition_consume_piece_misc_Brikynite","strArg":"misc_Brikynite/1","numArg1":20}},{"itemId":648001,"className":"magicAmulet_1","name":"String Amulet","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648002,"className":"magicAmulet_2","name":"Cube Amulet","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648003,"className":"magicAmulet_3","name":"Pumpkin Amulet","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648004,"className":"magicAmulet_4","name":"Skull Amulet","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648005,"className":"magicAmulet_5","name":"Divine Amulet","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648006,"className":"magicAmulet_6","name":"Rose Amulet","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648007,"className":"magicAmulet_7","name":"Tini Amulet","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648008,"className":"magicAmulet_8","name":"Crescent Amulet","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648009,"className":"magicAmulet_9","name":"Sun Amulet","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648010,"className":"magicAmulet_10","name":"Fortune Amulet","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648011,"className":"magicAmulet_11","name":"Bead Amulet","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648012,"className":"magicAmulet_12","name":"Cross Medal Amulet","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648013,"className":"magicAmulet_13","name":"Pumpkin Amulet","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648014,"className":"magicAmulet_14","name":"Gem Amulet","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648015,"className":"magicAmulet_15","name":"Demono Amulet","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648016,"className":"magicAmulet_16","name":"Augalo Amulet","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648017,"className":"magicAmulet_17","name":"Perejimo Amulet","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648018,"className":"magicAmulet_18","name":"Zveries Amulet","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648019,"className":"magicAmulet_19","name":"Vabalo Amulet","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648020,"className":"magicAmulet_20","name":"Magijos Amulet","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648021,"className":"magicAmulet_21","name":"For Testing","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648022,"className":"magicAmulet_22","name":"Vinies Amulet","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648023,"className":"magicAmulet_23","name":"Palemidas Amulet","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648024,"className":"magicAmulet_24","name":"Pertraukos Amulet","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648025,"className":"magicAmulet_25","name":"For Testing","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":648026,"className":"magicAmulet_26","name":"For Testing","type":"Consume","group":"MagicAmulet","weight":10,"maxStack":32767,"price":10,"sellPrice":10000,"minLevel":1,"script":{"function":"SCR_MAGICAMULET_EQUIP"}},{"itemId":300000,"className":"misc_collect_gimk_001","name":"Sage Master's Red Bookmark","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":300001,"className":"misc_collect_gimk_002","name":"Sage Master's Orange Bookmark","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":300002,"className":"misc_collect_gimk_003","name":"Sage Master's Yellow Bookmark","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":300003,"className":"misc_collect_gimk_004","name":"Sage Master's Green Bookmark","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":300004,"className":"misc_collect_gimk_005","name":"Sage Master's Blue Bookmark","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":300005,"className":"misc_collect_gimk_006","name":"Sage Master's Indigo Bookmark","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":300006,"className":"misc_collect_gimk_007","name":"Sage Master's Violet Bookmark","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":300007,"className":"misc_collect_gimk_008","name":"Small Mithril Ore Fragment","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":300008,"className":"misc_collect_gimk_009","name":"Small Ithildin Ore Fragment","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":300009,"className":"misc_collect_gimk_010","name":"Small Phydecium Fragment","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":300010,"className":"misc_collect_gimk_011","name":"Small Opal Fragment","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":300011,"className":"misc_collect_gimk_012","name":"Small Garnet Fragment","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":300012,"className":"misc_collect_gimk_013","name":"Small Obsidian Fragment","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":300013,"className":"misc_collect_gimk_014","name":"Small Peridot Fragment","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":300014,"className":"misc_collect_gimk_015","name":"Small Zircon Fragment","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":300015,"className":"misc_collect_gimk_016","name":"Wilting Weeds","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":300016,"className":"misc_collect_gimk_017","name":"Someone's Mallet","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":300017,"className":"misc_collect_gimk_018","name":"Fresh Fish","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":300018,"className":"misc_collect_gimk_019","name":"Rusty Screw","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":300019,"className":"misc_collect_gimk_020","name":"Unripe Apple","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":300020,"className":"misc_collect_gimk_021","name":"Torn Wood Pieces","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":300021,"className":"misc_collect_gimk_022","name":"Dented Knife","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":350000,"className":"misc_collect_qst_001","name":"Dimensional Search Scroll","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":350001,"className":"misc_collect_qst_002","name":"Dimensional Essence","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":350002,"className":"misc_collect_qst_003","name":"Demon's Magic Source","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":350003,"className":"misc_collect_qst_004","name":"Monumental Magic Source","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":350004,"className":"misc_collect_qst_005","name":"Light Blue Wing","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":350005,"className":"misc_collect_qst_006","name":"Resistance Supplies Match","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":350006,"className":"misc_collect_qst_007","name":"Used Arrow","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":350007,"className":"misc_collect_qst_008","name":"Lakeland Leaves","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":350008,"className":"misc_collect_qst_009","name":"Moist Roots","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":350009,"className":"misc_collect_qst_010","name":"Resistance Supplies Bottle","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":1,"minLevel":1},{"itemId":350010,"className":"misc_collect_ep14_2_1","name":"Ferret's Sword","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":25,"minLevel":1},{"itemId":350011,"className":"misc_collect_ep14_2_2","name":"Ferret's Spear","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":25,"minLevel":1},{"itemId":350012,"className":"misc_collect_ep14_2_3","name":"Ferret Fur","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":25,"minLevel":1},{"itemId":350013,"className":"misc_collect_ep14_2_4","name":"Corrupt Ferret Leather","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":25,"minLevel":1},{"itemId":350014,"className":"misc_collect_ep14_2_5","name":"Grasme Feather","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":25,"minLevel":1},{"itemId":350015,"className":"misc_collect_ep14_2_6","name":"Grasme Beak","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":25,"minLevel":1},{"itemId":350016,"className":"misc_collect_ep15_1_1","name":"ITEM_20230130_028343","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":25,"minLevel":1},{"itemId":350017,"className":"misc_collect_ep15_1_2","name":"ITEM_20230130_028345","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":25,"minLevel":1},{"itemId":350018,"className":"misc_collect_ep15_1_3","name":"ITEM_20230130_028347","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":1,"sellPrice":25,"minLevel":1},{"itemId":494208,"className":"Premium_Sandra_Glass_14d","name":"Sandra's Magnifier (14 Days)","type":"Consume","group":"Material","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":495123,"className":"Premium_awakeningStone14_Team","name":"Premium Awakening Stone (14 Days)","type":"Etc","group":"Material","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":640031,"className":"food_007","name":"Gyslotis","type":"Etc","group":"Material","weight":0,"maxStack":999999,"price":35,"sellPrice":4,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640040,"className":"food_016","name":"Nukella","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640068,"className":"Drug_holywater","name":"Holy Water","type":"Etc","group":"Material","weight":0,"maxStack":999999,"price":50,"sellPrice":5,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640069,"className":"Drug_powder","name":"Holy Powder","type":"Etc","group":"Material","weight":0,"maxStack":999999,"price":20,"sellPrice":2,"minLevel":1,"script":{"strArg":"ham_obj"}},{"itemId":640154,"className":"Guild_Forge01","name":"Forge","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":1000,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_AGIT_ACADEMY","strArg":"Forge"}},{"itemId":640155,"className":"Guild_ShieldCharger01","name":"Shield Charger","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":1000,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_AGIT_ACADEMY","strArg":"ShieldCharger"}},{"itemId":640263,"className":"misc_gemExpStone_randomQuest1_TA","name":"Shining Lv2 Gem Abrasive","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1},{"itemId":640264,"className":"misc_gemExpStone_randomQuest2_TA","name":"Shining Lv3 Gem Abrasive","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1},{"itemId":640265,"className":"misc_gemExpStone_randomQuest3_TA","name":"Shining Lv4 Gem Abrasive","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1},{"itemId":640266,"className":"misc_gemExpStone_randomQuest4_TA","name":"Shining Lv5 Gem Abrasive","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1},{"itemId":640276,"className":"misc_gemExpStone_5000_TA","name":"Gem Abrasive: 5,000","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1},{"itemId":641814,"className":"card_Xpupkit02_event","name":"Shining Enhancement Card","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":1000,"minLevel":1},{"itemId":641819,"className":"Gem_Gacha_gold_coin","name":"Ancient Golden Coin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":641821,"className":"card_Xpupkit10","name":"Lv 10 Enhancement Card","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":1000,"minLevel":1},{"itemId":641822,"className":"card_Xpupkit10_Team","name":"Lv 10 Enhancement Card","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":641823,"className":"Gem_Gacha_gold_coin_Team","name":"Ancient Golden Coin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":641976,"className":"Event1907_guild_exp_up_lv1","name":"[Event] Guild Quest Reward Coin: Bronze","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Guild_EXP","numArg1":100}},{"itemId":641977,"className":"Event1907_guild_exp_up_lv2","name":"[Event] Guild Quest Reward Coin: Silver","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Guild_EXP","numArg1":200}},{"itemId":641978,"className":"Event1907_guild_exp_up_lv3","name":"[Event] Guild Quest Reward Coin: Gold","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Guild_EXP","numArg1":400}},{"itemId":643001,"className":"Moru_W_01Q","name":"Practice Anvil","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":643002,"className":"Moru_W_01","name":"Anvil","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":300,"sellPrice":45,"minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":643003,"className":"Moru_Gold","name":"Golden Anvil","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":643004,"className":"Moru_Silver","name":"Silver Anvil (14 Days)","type":"Consume","group":"Material","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"SILVER","numArg1":3,"numArg2":3}},{"itemId":643007,"className":"Moru_Event160609","name":"Lightweight Anvil","type":"Consume","group":"Material","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":643008,"className":"Moru_Silver_NoDay","name":"Silver Anvil","type":"Consume","group":"Material","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"SILVER","numArg1":3,"numArg2":3}},{"itemId":643009,"className":"Moru_Event160929_14d","name":"Light Anvil (14 Days)","type":"Consume","group":"Material","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":643010,"className":"Moru_Gold_14d","name":"Golden Anvil (14 Days)","type":"Consume","group":"Material","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":643014,"className":"Moru_Gold_TA_NR","name":"Shining Advanced Golden Anvil","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":643015,"className":"Moru_Gold_Team_Trade","name":"Golden Anvil","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":643017,"className":"Moru_Silver_DLC","name":"Silver Anvil","type":"Consume","group":"Material","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"SILVER","numArg1":3,"numArg2":3}},{"itemId":643020,"className":"Extract_kit","name":"Ichor Extraction Kit","type":"Etc","group":"Material","weight":4,"maxStack":32767,"price":100000,"sellPrice":600,"minLevel":1,"script":{"strArg":"Extract_kit"}},{"itemId":643021,"className":"Extract_kit_Sliver","name":"Silver Ichor Extraction Kit","type":"Etc","group":"Material","weight":4,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Extract_kit_Sliver"}},{"itemId":643022,"className":"Extract_kit_Gold","name":"Shining Golden Ichor Extraction Kit","type":"Etc","group":"Material","weight":4,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":643026,"className":"Extract_kit_Gold_NotFail","name":"[Re:Build] 100% Ichor Extraction Kit","type":"Etc","group":"Material","weight":4,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Extract_kit_Gold_NotFail"}},{"itemId":643028,"className":"Extract_kit_Gold_NotFail_Rand","name":"[Re:Build] 100% Ichor Extraction Kit: Random Stat","type":"Etc","group":"Material","weight":4,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Extract_kit_Gold_NotFail_Rand"}},{"itemId":643029,"className":"Extract_kit_Gold_NotFail_Recipe","name":"[Re:Build] 100% Ichor Extraction Kit: Craft","type":"Etc","group":"Material","weight":4,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Extract_kit_Gold_NotFail_Recipe"}},{"itemId":643035,"className":"Moru_Stone_TN","name":"Steel Anvil","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":300,"sellPrice":45,"minLevel":1,"script":{"strArg":"Reinforce_Discount_50","numArg1":3,"numArg2":3}},{"itemId":643036,"className":"Moru_Silver_Team","name":"Silver Anvil (14 Days)","type":"Consume","group":"Material","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"SILVER","numArg1":3,"numArg2":3}},{"itemId":643037,"className":"Moru_Stone_Team","name":"Steel Anvil (14 Days)","type":"Consume","group":"Material","weight":1,"maxStack":1,"price":300,"sellPrice":45,"minLevel":1,"script":{"strArg":"Reinforce_Discount_50","numArg1":3,"numArg2":3}},{"itemId":643038,"className":"Dirbtumas_kit","name":"Ichor Transmutation Kit","type":"Etc","group":"Material","weight":4,"maxStack":32767,"price":100000,"sellPrice":0,"minLevel":1,"script":{"strArg":"Dirbtumas_kit"}},{"itemId":643039,"className":"Dirbtumas_kit_Sliver","name":"Silver Ichor Transmutation Kit","type":"Etc","group":"Material","weight":4,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Dirbtumas_kit_Sliver"}},{"itemId":643041,"className":"Moru_Silver_Team_Able","name":"Silver Anvil (14 Days)","type":"Consume","group":"Material","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"SILVER","numArg1":3,"numArg2":3}},{"itemId":643050,"className":"Moru_Gold_14d_Team_event1909","name":"[Event] Golden Anvil (14 Days)","type":"Consume","group":"Material","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":643056,"className":"Moru_Ruby_Charge","name":"Ruby Anvil","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":643057,"className":"Moru_Ruby_14d_event","name":"[Event] Ruby Anvil (14 Days)","type":"Consume","group":"Material","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":643063,"className":"Moru_Diamond_30d_Team_Lv440","name":"[Lv.440] Diamond Anvil (30 Days)","type":"Consume","group":"Material","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"DIAMOND","numArg1":3,"numArg2":3}},{"itemId":643064,"className":"Moru_Diamond_30d_Team_Lv450","name":"[Lv.450] Diamond Anvil (30 Days)","type":"Consume","group":"Material","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"DIAMOND","numArg1":3,"numArg2":3}},{"itemId":643065,"className":"Moru_Gold_TA_NR_Team_Trade","name":"Shining Advanced Golden Anvil","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":645024,"className":"leaf_hanaming","name":"Hanaming Petal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":8,"sellPrice":1,"minLevel":1},{"itemId":645025,"className":"TreasureboxKey2","name":"Lv2 Treasure Chest Key","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645026,"className":"TreasureboxKey3","name":"Lv3 Treasure Chest Key","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645027,"className":"TreasureboxKey4","name":"Lv4 Treasure Chest Key","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645028,"className":"TreasureboxKey5","name":"Lv5 Treasure Chest Key","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645117,"className":"misc_0001","name":"Kepa Stem","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":5,"sellPrice":1,"minLevel":1},{"itemId":645118,"className":"misc_0002","name":"Leaf Bug Shell","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":6,"sellPrice":1,"minLevel":1},{"itemId":645120,"className":"misc_0004","name":"Chinency Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645121,"className":"misc_0005","name":"Infrorocktor Shell","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":15,"sellPrice":3,"minLevel":1},{"itemId":645122,"className":"misc_0006","name":"Chupacabra Tooth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":12,"sellPrice":2,"minLevel":1},{"itemId":645124,"className":"misc_0008","name":"Weaver Feeler","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":11,"sellPrice":2,"minLevel":1},{"itemId":645125,"className":"misc_0009","name":"Pokubu Skin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":24,"sellPrice":4,"minLevel":1},{"itemId":645126,"className":"misc_0010","name":"Jukopus Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":12,"sellPrice":2,"minLevel":1},{"itemId":645127,"className":"misc_0011","name":"Red Kepa Crystal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645128,"className":"misc_0012","name":"Large Monster Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645129,"className":"misc_0013","name":"Vubbe Token","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":22,"sellPrice":4,"minLevel":1},{"itemId":645130,"className":"misc_0014","name":"Stone Orca Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":39,"sellPrice":7,"minLevel":1},{"itemId":645131,"className":"misc_0015","name":"Crystal Spider Feelers","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":16,"sellPrice":3,"minLevel":1},{"itemId":645132,"className":"misc_0016","name":"Yekubite Antennae","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":19,"sellPrice":3,"minLevel":1},{"itemId":645134,"className":"misc_0018","name":"Panto Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":34,"sellPrice":6,"minLevel":1},{"itemId":645135,"className":"misc_0019","name":"Zignuts Stem","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":18,"sellPrice":3,"minLevel":1},{"itemId":645136,"className":"misc_0020","name":"Butterfly Wing","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645137,"className":"misc_0021","name":"Seed's Seed","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645138,"className":"misc_0022","name":"Firent Flower","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":78,"sellPrice":15,"minLevel":1},{"itemId":645141,"className":"misc_0025","name":"Egnome Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":26,"sellPrice":5,"minLevel":1},{"itemId":645142,"className":"misc_0026","name":"Yognome Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":44,"sellPrice":8,"minLevel":1},{"itemId":645143,"className":"misc_0027","name":"Violet Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645144,"className":"misc_0028","name":"Rafflet Flower","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645150,"className":"misc_0034","name":"Tanu Stem","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645151,"className":"misc_0035","name":"Beetow Feeler","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":34,"sellPrice":6,"minLevel":1},{"itemId":645152,"className":"misc_0036","name":"Maize Spore Pocket","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645153,"className":"misc_0037","name":"Ultanun Feather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1},{"itemId":645154,"className":"misc_0038","name":"Karkash Mushroom","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645155,"className":"misc_0039","name":"Elravine Bones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645156,"className":"misc_0040","name":"Upent Bark","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":98,"sellPrice":19,"minLevel":1},{"itemId":645157,"className":"misc_0041","name":"Mantiwood Wing","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645159,"className":"misc_0043","name":"Thornball Thorn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645160,"className":"misc_0044","name":"Operor Thorn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":26,"sellPrice":5,"minLevel":1},{"itemId":645161,"className":"misc_0045","name":"Bagworm Shell","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":30,"sellPrice":6,"minLevel":1},{"itemId":645162,"className":"misc_0046","name":"Truffle Crystal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":20,"sellPrice":4,"minLevel":1},{"itemId":645163,"className":"misc_0047","name":"Matsum Stem","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":34,"sellPrice":6,"minLevel":1},{"itemId":645164,"className":"misc_0048","name":"Merog Heart","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":84,"sellPrice":16,"minLevel":1},{"itemId":645165,"className":"misc_0049","name":"Chafperor Wing","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":23,"sellPrice":4,"minLevel":1},{"itemId":645166,"className":"misc_0050","name":"Catacomb Leafbug Shell","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645167,"className":"misc_0051","name":"Candle","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":13,"sellPrice":2,"minLevel":1},{"itemId":645168,"className":"misc_0052","name":"Catacomb Maggot Feeler","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":13,"sellPrice":2,"minLevel":1},{"itemId":645169,"className":"misc_0053","name":"Tontooth Thorn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":18,"sellPrice":3,"minLevel":1},{"itemId":645170,"className":"misc_0054","name":"Pino Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645171,"className":"misc_0055","name":"Geppetto Stem","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":25,"sellPrice":5,"minLevel":1},{"itemId":645172,"className":"misc_0056","name":"Zinute Skin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":34,"sellPrice":6,"minLevel":1},{"itemId":645173,"className":"misc_0057","name":"Desert Chupacabra Meat","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":29,"sellPrice":5,"minLevel":1},{"itemId":645174,"className":"misc_0058","name":"Wendigo Tooth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":67,"sellPrice":13,"minLevel":1},{"itemId":645175,"className":"misc_0059","name":"Sauga Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":60,"sellPrice":12,"minLevel":1},{"itemId":645176,"className":"misc_0060","name":"Lauzinute Skin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":37,"sellPrice":7,"minLevel":1},{"itemId":645177,"className":"misc_0061","name":"Hogma Tusk","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":130,"sellPrice":26,"minLevel":1},{"itemId":645178,"className":"misc_0062","name":"Varv Feeler","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":32,"sellPrice":6,"minLevel":1},{"itemId":645179,"className":"misc_0063","name":"Zinutekas Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":66,"sellPrice":13,"minLevel":1},{"itemId":645180,"className":"misc_0064","name":"Vesper Counterweight","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":32,"sellPrice":6,"minLevel":1},{"itemId":645181,"className":"misc_0065","name":"Vikaras Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":92,"sellPrice":18,"minLevel":1},{"itemId":645182,"className":"misc_0066","name":"Shtayim Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645183,"className":"misc_0067","name":"Wheelen Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645185,"className":"misc_0069","name":"Rusrat Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645186,"className":"misc_0070","name":"Mauros Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":126,"sellPrice":25,"minLevel":1},{"itemId":645187,"className":"misc_0071","name":"Wax","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645188,"className":"misc_0072","name":"Stumpy Tree Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645189,"className":"misc_0073","name":"Long-Branched Tree Crystal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645190,"className":"misc_0074","name":"Infroburk Shell","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645191,"className":"misc_0075","name":"Zolem Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":150,"sellPrice":30,"minLevel":1},{"itemId":645192,"className":"misc_0076","name":"Gravegolem Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":175,"sellPrice":35,"minLevel":1},{"itemId":645193,"className":"misc_0077","name":"Hallowventer Spirit Matter","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":1260,"sellPrice":252,"minLevel":1},{"itemId":645194,"className":"misc_0078","name":"Cockat Heart","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":2640,"sellPrice":528,"minLevel":1},{"itemId":645195,"className":"misc_0079","name":"Drake Meat","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":45,"sellPrice":9,"minLevel":1},{"itemId":645196,"className":"misc_0080","name":"Phyracon Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1},{"itemId":645197,"className":"misc_0081","name":"Shaman Doll Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":68,"sellPrice":13,"minLevel":1},{"itemId":645198,"className":"misc_0082","name":"Slime Piece","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645199,"className":"misc_0083","name":"Arma Thorn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":56,"sellPrice":11,"minLevel":1},{"itemId":645200,"className":"misc_0084","name":"Red Infrorocktor Shell","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":212,"sellPrice":42,"minLevel":1},{"itemId":645201,"className":"misc_0085","name":"Flask Piece","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645202,"className":"misc_0086","name":"Desmodus Tooth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":57,"sellPrice":11,"minLevel":1},{"itemId":645204,"className":"misc_0088","name":"Black Shaman Doll Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":74,"sellPrice":14,"minLevel":1},{"itemId":645205,"className":"misc_0089","name":"Dimmer Marble","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645206,"className":"misc_0090","name":"Black Drake Heart","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645208,"className":"misc_0092","name":"Rocktor Skin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645209,"className":"misc_0093","name":"Venucelos Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":124,"sellPrice":24,"minLevel":1},{"itemId":645210,"className":"misc_0094","name":"Echad Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":105,"sellPrice":21,"minLevel":1},{"itemId":645211,"className":"misc_0095","name":"Tama Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645212,"className":"misc_0096","name":"Lizardman Tooth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645213,"className":"misc_0097","name":"Hook","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":93,"sellPrice":18,"minLevel":1},{"itemId":645214,"className":"misc_0098","name":"Winged Frog Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645215,"className":"misc_0099","name":"Cockatrice Bones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645216,"className":"misc_0100","name":"Drake Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":104,"sellPrice":20,"minLevel":1},{"itemId":645218,"className":"misc_0102","name":"Groll Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1},{"itemId":645219,"className":"misc_0103","name":"Blue Fragaras Stem","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":26,"sellPrice":5,"minLevel":1},{"itemId":645220,"className":"misc_0104","name":"Vekarabe Shell","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":135,"sellPrice":27,"minLevel":1},{"itemId":645221,"className":"misc_0105","name":"Boowook Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":77,"sellPrice":15,"minLevel":1},{"itemId":645222,"className":"misc_0106","name":"Vubbe Bow","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":65,"sellPrice":13,"minLevel":1},{"itemId":645223,"className":"misc_0107","name":"Vubbe Pickaxe","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645224,"className":"misc_0108","name":"Vubbe Hood","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645225,"className":"misc_0109","name":"Dandel Wing","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":22,"sellPrice":4,"minLevel":1},{"itemId":645226,"className":"misc_0110","name":"Panto Eyebrow","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645227,"className":"misc_0111","name":"Panto Spear Shaft","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645228,"className":"misc_0112","name":"Tipio Stamen","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":12,"sellPrice":2,"minLevel":1},{"itemId":645229,"className":"misc_0113","name":"Doyor Leaf Bunch","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":20,"sellPrice":4,"minLevel":1},{"itemId":645230,"className":"misc_0114","name":"Hogma Archer Belt","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645231,"className":"misc_0115","name":"Panto Spearhead","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":210,"sellPrice":42,"minLevel":1},{"itemId":645232,"className":"misc_0116","name":"Phlogistone","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":320,"sellPrice":80,"minLevel":1},{"itemId":645233,"className":"misc_0117","name":"Sulfur","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":96,"sellPrice":19,"minLevel":1},{"itemId":645234,"className":"misc_0118","name":"Cinnabar","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":38,"sellPrice":7,"minLevel":1},{"itemId":645235,"className":"misc_0119","name":"Bat Wing","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":6,"sellPrice":1,"minLevel":1},{"itemId":645237,"className":"misc_0121","name":"Glass Piece","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":5,"sellPrice":1,"minLevel":1},{"itemId":645238,"className":"wood_01","name":"Oak Wood","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":18,"sellPrice":3,"minLevel":1},{"itemId":645239,"className":"wood_02","name":"Ash Wood","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":12,"sellPrice":2,"minLevel":1},{"itemId":645240,"className":"wood_03","name":"Pine Wood","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":12,"sellPrice":2,"minLevel":1},{"itemId":645241,"className":"wood_04","name":"Cedar Wood","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":20,"sellPrice":4,"minLevel":1},{"itemId":645242,"className":"timber_01","name":"Oak Lumber","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":300,"sellPrice":0,"minLevel":1},{"itemId":645243,"className":"timber_02","name":"Ash Lumber","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":300,"sellPrice":0,"minLevel":1},{"itemId":645244,"className":"timber_03","name":"Pine Lumber","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":300,"sellPrice":0,"minLevel":1},{"itemId":645245,"className":"timber_04","name":"Cedar Lumber","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":300,"sellPrice":0,"minLevel":1},{"itemId":645246,"className":"misc_0122","name":"Coliflower Stem","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":31,"sellPrice":6,"minLevel":1},{"itemId":645247,"className":"misc_0123","name":"Altered Sauga Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":124,"sellPrice":24,"minLevel":1},{"itemId":645248,"className":"misc_0124","name":"Dandel Crystal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":88,"sellPrice":17,"minLevel":1},{"itemId":645249,"className":"misc_0125","name":"Bagworm Poison","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":88,"sellPrice":17,"minLevel":1,"script":{"function":"SCR_USE_ITEM_Poison","numArg1":150,"numArg2":200}},{"itemId":645250,"className":"arrow_01","name":"Broadhead Arrow","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":1,"sellPrice":1,"minLevel":1},{"itemId":645251,"className":"arrow_02","name":"Bodkin Point Arrow","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":1,"sellPrice":1,"minLevel":1},{"itemId":645252,"className":"arrow_03","name":"Hail Mary Arrow","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":1,"sellPrice":1,"minLevel":1},{"itemId":645256,"className":"misc_0126","name":"Wendigo Fang","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":420,"sellPrice":84,"minLevel":1},{"itemId":645257,"className":"misc_goldbar","name":"Gold Bar","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":50000,"sellPrice":50000,"minLevel":1},{"itemId":645259,"className":"misc_quicksilver","name":"Mercury","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645260,"className":"misc_onion2","name":"Kepa Skin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645261,"className":"misc_onion3","name":"Kepa Crystal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645262,"className":"misc_leaf_diving2","name":"Leaf Bug Feeler","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645263,"className":"misc_leaf_diving3","name":"Shiny Skin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645264,"className":"misc_hanaming2","name":"Hanaming Aroma","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645265,"className":"misc_hanaming3","name":"Hanaming Crystal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645266,"className":"misc_bokchoy2","name":"Chinency Root","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645267,"className":"misc_infroRocktor2","name":"Infrorocktor Bones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":792,"sellPrice":158,"minLevel":1},{"itemId":645268,"className":"misc_talt","name":"Talt","type":"Etc","group":"Material","weight":10,"maxStack":32767,"price":2500,"sellPrice":5000,"minLevel":1,"script":{"strArg":"Guild_EXP","numArg1":20}},{"itemId":645269,"className":"misc_chupacabra2","name":"Chupacabra Skin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":42,"sellPrice":8,"minLevel":1},{"itemId":645270,"className":"misc_chupacabra3","name":"Chupacabra Eyeball","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645271,"className":"misc_popolion2","name":"Popolion Bones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645272,"className":"misc_popolion3","name":"Popolion Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645273,"className":"misc_weaver2","name":"Weaver Skin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645274,"className":"misc_weaver3","name":"Weaver Venom","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645275,"className":"misc_pokubu2","name":"Pokubu Meat","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645276,"className":"misc_pokubu3","name":"Pokubu Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645277,"className":"misc_jukopus2","name":"Discolored Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645278,"className":"misc_jukopus3","name":"Jukopus Rope","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645279,"className":"misc_onion_red2","name":"Red Kepa Stem","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645280,"className":"misc_onion_red3","name":"Red Kepa Crystal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645281,"className":"misc_goblin_spear2","name":"Vubbe Spear Head","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645282,"className":"misc_bubeBlood","name":"Vubbe Blood","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645283,"className":"misc_whip_vine_ra2","name":"Raflower Root","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645284,"className":"misc_whip_vine_ra3","name":"Raflower Crystal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645285,"className":"misc_stonOrca2","name":"Stone Orca Piece","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645286,"className":"misc_bat2","name":"Bat Tooth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645287,"className":"misc_shredded2","name":"Shredded Piece of Cloth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":150,"sellPrice":30,"minLevel":1},{"itemId":645288,"className":"misc_shredded3","name":"Shredded Spirit Matter","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":346,"sellPrice":69,"minLevel":1},{"itemId":645289,"className":"misc_yekubite2","name":"Yekubite Teeth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645290,"className":"misc_yekubite3","name":"Yekubite Crystal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645291,"className":"misc_quartz_weaver2","name":"Crystal Spider Shell","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645292,"className":"misc_quartz_weaver3","name":"Crystal Spider Crystal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645293,"className":"misc_bubeWarriorBlood","name":"Vubbe Fighter Blood","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":326,"sellPrice":65,"minLevel":1},{"itemId":645294,"className":"misc_zignuts2","name":"Zignuts Fruit","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645295,"className":"misc_zignuts3","name":"Zignuts Seed","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645296,"className":"misc_panto2","name":"Panto Leaf Decoration","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645297,"className":"misc_humming_bud","name":"Hummingbird Wing","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":42,"sellPrice":8,"minLevel":1},{"itemId":645298,"className":"misc_humming_bud2","name":"Hummingbird Feeler","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645299,"className":"misc_humming_bud3","name":"Hummingbird Wing Power","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645300,"className":"misc_leafly","name":"Leafly Wing","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":16,"sellPrice":3,"minLevel":1},{"itemId":645301,"className":"misc_leafly2","name":"Leafly Feeler","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645302,"className":"misc_leafly3","name":"Leafly Egg","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645303,"className":"misc_seedmia","name":"Seedmia Seed","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":27,"sellPrice":5,"minLevel":1},{"itemId":645304,"className":"misc_seedmia3","name":"Seedmia Pollen","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645305,"className":"misc_drakeResc","name":"Drake Epaulet","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645306,"className":"misc_firent2","name":"Firent Skin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":1515,"sellPrice":303,"minLevel":1},{"itemId":645307,"className":"misc_pantoSword","name":"Broken Panto Sword","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":170,"sellPrice":34,"minLevel":1},{"itemId":645308,"className":"misc_panto3","name":"Panto Hoof","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645309,"className":"misc_pantoStaff","name":"Panto Magician Cane Decoration","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645310,"className":"misc_mallardu","name":"Mallardu Meat","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":15,"sellPrice":3,"minLevel":1},{"itemId":645311,"className":"misc_mallardu2","name":"Mallardu Feather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645312,"className":"misc_mallardu3","name":"Mallardu Beak","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645313,"className":"misc_udumbara","name":"Udumbara","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645314,"className":"misc_violet","name":"Violet Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645315,"className":"misc_violet2","name":"Violet Flower","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645316,"className":"misc_violet3","name":"Violet Crystal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645317,"className":"misc_yognome","name":"Yognome Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645318,"className":"misc_yognome2","name":"Yognome Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645319,"className":"misc_egnome","name":"Egnome Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645320,"className":"misc_egnome2","name":"Egnome Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":420,"sellPrice":84,"minLevel":1},{"itemId":645322,"className":"misc_rodelin2","name":"Rodelin Wing","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645323,"className":"misc_rodelin3","name":"Rodelin Cloth Piece","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645325,"className":"misc_pawnd2","name":"Pawnd Hair","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645326,"className":"misc_pawnd3","name":"Pawnd Bow","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645328,"className":"misc_pawndel2","name":"Pawndel Hair","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645329,"className":"misc_pawndel3","name":"Pawndel Shaft","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":4444,"sellPrice":888,"minLevel":1},{"itemId":645330,"className":"misc_galok","name":"Galok Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":60,"sellPrice":12,"minLevel":1},{"itemId":645332,"className":"misc_galok3","name":"Galok Claw","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645333,"className":"misc_glizardon","name":"Glizardon Bones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":38,"sellPrice":7,"minLevel":1},{"itemId":645334,"className":"misc_glizardon2","name":"Glizardon Heart","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":84,"sellPrice":16,"minLevel":1},{"itemId":645335,"className":"misc_glizardon3","name":"Glizardon Tail","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645336,"className":"misc_brcCrystal","name":"Pure Crystal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645337,"className":"misc_campfireKit","name":"Firewood","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":30,"sellPrice":6,"minLevel":1},{"itemId":645338,"className":"misc_lapasResin","name":"Lapas Resin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645339,"className":"misc_judasCrystal","name":"Judas Crystal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645340,"className":"misc_seedOil","name":"Seed Oil","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645341,"className":"misc_maize","name":"Maize Spore Pocket","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":23,"sellPrice":4,"minLevel":1},{"itemId":645342,"className":"misc_maize2","name":"Maize Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645343,"className":"misc_maize3","name":"Maize Eyeball","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645344,"className":"misc_Fisherman","name":"Fishing Rod","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":20,"sellPrice":4,"minLevel":1},{"itemId":645345,"className":"misc_Fisherman2","name":"Fisherman Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645346,"className":"misc_zigri","name":"Kitchen Knife","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":18,"sellPrice":3,"minLevel":1},{"itemId":645347,"className":"misc_puragi","name":"Large Hook","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":31,"sellPrice":6,"minLevel":1},{"itemId":645348,"className":"misc_banshee","name":"Banshee Spirit Matter","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":17,"sellPrice":3,"minLevel":1},{"itemId":645349,"className":"arrow_04","name":"Barbed Arrow","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":1,"sellPrice":1,"minLevel":1},{"itemId":645350,"className":"misc_shtayim3","name":"Red Eye of Shtayim","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645351,"className":"misc_Echad3","name":"Blue Eye of Echad","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645352,"className":"misc_Grummer","name":"Grummer Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":21,"sellPrice":4,"minLevel":1},{"itemId":645353,"className":"Briquetting_01","name":"Sticky Liquid","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645354,"className":"Briquetting_02","name":"Latex","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645355,"className":"Briquetting_03","name":"Fat","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645356,"className":"misc_arburn_pokubu","name":"Pokubon Meat","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":98,"sellPrice":19,"minLevel":1},{"itemId":645357,"className":"misc_Rudas_loxodon","name":"Loxodon Meat","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645358,"className":"Tincturing_01","name":"Ansur","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645359,"className":"Tincturing_02","name":"Veonol","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645360,"className":"Tincturing_03","name":"Daer","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645361,"className":"Tincturing_04","name":"Penol","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645362,"className":"Tincturing_05","name":"Arah","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645363,"className":"misc_Bushspider_purple","name":"Bushspider Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":27,"sellPrice":5,"minLevel":1},{"itemId":645364,"className":"misc_hogma_warrior2","name":"Gigantic Shinbone","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":737,"sellPrice":147,"minLevel":1},{"itemId":645365,"className":"misc_New_desmodus_black2","name":"Black Desmodus Tooth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":45,"sellPrice":9,"minLevel":1},{"itemId":645366,"className":"misc_mushroom_ent_black","name":"Big Black Griba Bamboo Hat","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":14,"sellPrice":2,"minLevel":1},{"itemId":645367,"className":"misc_egg","name":"Egg","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":67,"sellPrice":13,"minLevel":1},{"itemId":645368,"className":"misc_kodomor","name":"Oxygen Pocket","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645369,"className":"misc_groll2","name":"Groll Tooth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":75,"sellPrice":15,"minLevel":1},{"itemId":645370,"className":"misc_Mushroom_boy","name":"Griba Bamboo Hat","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":57,"sellPrice":11,"minLevel":1},{"itemId":645372,"className":"misc_Lantern_mushroom","name":"Gribaru Bamboo Hat","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645373,"className":"misc_kowak","name":"Wooden Pile","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":40,"sellPrice":8,"minLevel":1},{"itemId":645374,"className":"misc_bubbe_fighter","name":"Rusted Scrap Metal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645376,"className":"misc_slime_dark","name":"Dark Slime Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645377,"className":"misc_duckey","name":"Ducky Beak","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645378,"className":"misc_New_desmodus","name":"Desmodus Tooth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645379,"className":"misc_Denden","name":"Denden Petal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645380,"className":"misc_Doyor2","name":"Doyor Claw","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":34,"sellPrice":6,"minLevel":1},{"itemId":645381,"className":"misc_Fire_Dragon2","name":"Drake Film","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":297,"sellPrice":59,"minLevel":1},{"itemId":645383,"className":"misc_Drape","name":"Drape Poisoned Needle","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645384,"className":"misc_Lapasape","name":"Lafsave Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645385,"className":"misc_rafflesia_purple","name":"Rafflesia Poison Extract","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":84,"sellPrice":16,"minLevel":1},{"itemId":645386,"className":"misc_Rambear","name":"Rambear Bones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645387,"className":"misc_RavineLerva","name":"Ravinelarvae Acid Sap","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645388,"className":"misc_rublem","name":"Rubblem Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":53,"sellPrice":10,"minLevel":1},{"itemId":645389,"className":"misc_rublem2","name":"Rubblem Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":132,"sellPrice":26,"minLevel":1},{"itemId":645390,"className":"misc_Lemur","name":"Lemur Tail","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645391,"className":"misc_Lemuria","name":"Lemuria Tail","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645392,"className":"misc_Repusbunny","name":"Lepusbunny Hair","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645393,"className":"misc_Rudas_loxodon3","name":"Loxodon Ivory","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":192,"sellPrice":38,"minLevel":1},{"itemId":645394,"className":"misc_Rudas_loxodon2","name":"Loxodon Backbones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":96,"sellPrice":19,"minLevel":1},{"itemId":645395,"className":"misc_Rubabos","name":"Rubabos Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645396,"className":"misc_Lizardman2","name":"Lizardman Claw","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":165,"sellPrice":33,"minLevel":1},{"itemId":645397,"className":"misc_Lizardman","name":"Lizardman Fang","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":62,"sellPrice":12,"minLevel":1},{"itemId":645398,"className":"misc_Leafnut","name":"Leafnut Wing","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645400,"className":"misc_banshee_purple","name":"Specter Hood","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645401,"className":"misc_schlesien_darkmage3","name":"Medakia Metal Decoration","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":171,"sellPrice":34,"minLevel":1},{"itemId":645402,"className":"misc_schlesien_darkmage","name":"Medakia Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":60,"sellPrice":12,"minLevel":1},{"itemId":645403,"className":"misc_Mentiwood","name":"Mantiwood Skin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645404,"className":"misc_Meleech","name":"Meleech Foreleg","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645405,"className":"misc_Moglan","name":"Moglan Meat","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":64,"sellPrice":12,"minLevel":1},{"itemId":645406,"className":"misc_Moyabu","name":"Moyabu Bones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645407,"className":"misc_minivern","name":"Minivern Skin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":73,"sellPrice":14,"minLevel":1},{"itemId":645409,"className":"misc_Bavon","name":"Bavon Feather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645410,"className":"misc_varv2","name":"Varv Skin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":160,"sellPrice":32,"minLevel":1},{"itemId":645411,"className":"misc_schlesien_guard","name":"Wheel","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":102,"sellPrice":20,"minLevel":1},{"itemId":645412,"className":"misc_banshee3","name":"Banshee Hood","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":480,"sellPrice":96,"minLevel":1},{"itemId":645413,"className":"misc_Velwriggler","name":"Velwriggler Feather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":50,"sellPrice":10,"minLevel":1},{"itemId":645414,"className":"misc_raffly","name":"Violet Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":36,"sellPrice":7,"minLevel":1},{"itemId":645415,"className":"misc_Goblin_Spear_red","name":"Red Vubbe Token","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645417,"className":"misc_Beeteros","name":"Beeteros Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645418,"className":"misc_mushroom_ent","name":"Big Griba Bamboo Hat","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645419,"className":"misc_Big_Cockatries2","name":"Cockat Beak","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":3780,"sellPrice":756,"minLevel":1},{"itemId":645420,"className":"misc_chupacabra_desert2","name":"Desert Chupacabra Skin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":85,"sellPrice":17,"minLevel":1},{"itemId":645421,"className":"misc_Sauga_s3","name":"Sauga Motor Drive","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":900,"sellPrice":180,"minLevel":1},{"itemId":645422,"className":"misc_Cire","name":"Cire Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645423,"className":"misc_Sakmoli","name":"Sakmoli Stem","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":47,"sellPrice":9,"minLevel":1},{"itemId":645426,"className":"misc_Shardstatue","name":"Shardstatue Claw","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645427,"className":"misc_resin","name":"Resin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":130,"sellPrice":26,"minLevel":1},{"itemId":645428,"className":"misc_shtayim","name":"Shtayim Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":47,"sellPrice":9,"minLevel":1},{"itemId":645429,"className":"misc_Stoulet","name":"Stoulet Heart","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645430,"className":"misc_Spector_Gh","name":"Corpse Hand","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645431,"className":"misc_Armory","name":"Armori Plate","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":54,"sellPrice":10,"minLevel":1},{"itemId":645432,"className":"misc_Ammon","name":"Ammon Backbone","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":21,"sellPrice":4,"minLevel":1},{"itemId":645433,"className":"misc_jellyfish","name":"Glow Spore","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":56,"sellPrice":11,"minLevel":1},{"itemId":645435,"className":"misc_Ultanun","name":"Ultanun Bones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":520,"sellPrice":104,"minLevel":1},{"itemId":645436,"className":"misc_ellogua","name":"Ellogua Petal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645437,"className":"misc_ellomago","name":"Ellomago Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":38,"sellPrice":7,"minLevel":1},{"itemId":645438,"className":"misc_ellom","name":"Ellom Bell","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645439,"className":"misc_ellom2","name":"Ellom Crystal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":75,"sellPrice":15,"minLevel":1},{"itemId":645442,"className":"misc_Infroholder","name":"Infro Holder Bones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645443,"className":"misc_TerraNymph","name":"Terra Imp Decoration","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":89,"sellPrice":17,"minLevel":1},{"itemId":645445,"className":"misc_Geppetto2","name":"Geppetto Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":96,"sellPrice":19,"minLevel":1},{"itemId":645446,"className":"misc_Dumaro","name":"Shackle","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":38,"sellPrice":7,"minLevel":1},{"itemId":645447,"className":"misc_tower_of_firepuppet2","name":"Shaman Doll Cotton","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":68,"sellPrice":13,"minLevel":1},{"itemId":645448,"className":"misc_ellom_green","name":"Green Ellom Bell","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":56,"sellPrice":11,"minLevel":1},{"itemId":645449,"className":"misc_chupaluka","name":"Chupaluka Meat","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645450,"className":"misc_Karas","name":"Karas Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":84,"sellPrice":16,"minLevel":1},{"itemId":645451,"className":"misc_Caro","name":"Caro Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":12,"sellPrice":2,"minLevel":1},{"itemId":645452,"className":"misc_raider","name":"Kepa Raider Tooth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645453,"className":"misc_Corylus","name":"Corylus Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":32,"sellPrice":6,"minLevel":1},{"itemId":645454,"className":"misc_Cockatries2","name":"Cockatrice Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":255,"sellPrice":51,"minLevel":1},{"itemId":645455,"className":"misc_Cockatries","name":"Cockatrice Feather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":102,"sellPrice":20,"minLevel":1},{"itemId":645457,"className":"misc_colimen","name":"Colimen Flower","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645458,"className":"misc_colitile","name":"Colitile Feeler","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645459,"className":"misc_Cronewt","name":"Cronewt Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645460,"className":"misc_chromadog","name":"Chromadog Bones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":57,"sellPrice":11,"minLevel":1},{"itemId":645461,"className":"misc_Tanu","name":"Tanu Flower","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":864,"sellPrice":172,"minLevel":1},{"itemId":645462,"className":"misc_Tama","name":"Tama Skin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":93,"sellPrice":18,"minLevel":1},{"itemId":645463,"className":"misc_Tontulia","name":"Tontulia Thorn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":56,"sellPrice":11,"minLevel":1},{"itemId":645464,"className":"misc_Tucen","name":"Tucen Skin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":38,"sellPrice":7,"minLevel":1},{"itemId":645465,"className":"misc_Ticen","name":"Ticen Bones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":47,"sellPrice":9,"minLevel":1},{"itemId":645468,"className":"misc_Hound","name":"Pipe","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645469,"className":"misc_arburn_pokubu_blue2","name":"Pokubon Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":47,"sellPrice":9,"minLevel":1},{"itemId":645471,"className":"misc_arburn_pokubu_blue3","name":"Pokubon Backbone","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":97,"sellPrice":19,"minLevel":1},{"itemId":645473,"className":"misc_GoblinWarrior_blue","name":"Blue Vubbe Fighter Token","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":176,"sellPrice":35,"minLevel":1},{"itemId":645475,"className":"misc_raffly-b","name":"Flibo Stem","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":60,"sellPrice":12,"minLevel":1},{"itemId":645476,"className":"misc_Pino","name":"Pino Stem","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":45,"sellPrice":9,"minLevel":1},{"itemId":645477,"className":"misc_Haming2","name":"Hamming Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":75,"sellPrice":15,"minLevel":1},{"itemId":645478,"className":"misc_Bume_Goblin_Archer2","name":"High Vubbe Cross Stick","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":29,"sellPrice":5,"minLevel":1},{"itemId":645479,"className":"misc_Bume_Goblin","name":"High Vubbe Token","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":32,"sellPrice":6,"minLevel":1},{"itemId":645481,"className":"misc_Hallowventor","name":"Hallowventer Hand Bones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":126,"sellPrice":25,"minLevel":1},{"itemId":645482,"className":"misc_warleader_hogma","name":"Hogma Battle Boss Fang","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":188,"sellPrice":37,"minLevel":1},{"itemId":645483,"className":"misc_Jukopus_gray","name":"Gray Yukopus Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645484,"className":"misc_flenrem","name":"Fallenlem Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":56,"sellPrice":11,"minLevel":1},{"itemId":645485,"className":"misc_silverbar","name":"Silver Bar","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":30000,"sellPrice":30000,"minLevel":1},{"itemId":645494,"className":"misc_blackMarket","name":"Black Market Seal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645495,"className":"rsc_2_1","name":"White Mucus","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645496,"className":"rsc_2_2","name":"Florr","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645497,"className":"rsc_2_3","name":"Rough Bones Powder","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645498,"className":"rsc_2_4","name":"Tendon","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645499,"className":"rsc_3_1","name":"Hardener","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645500,"className":"rsc_3_2","name":"Tough Tendon","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645501,"className":"rsc_4_1","name":"Resinate","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645502,"className":"hrsc_2_1","name":"Spell Reservoir","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645503,"className":"arrow_stone","name":"Stone Bullet","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":12,"sellPrice":2,"minLevel":1},{"itemId":645504,"className":"misc_boss_Chafer","name":"Chafer Material","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645505,"className":"misc_expensiveGem","name":"Lush Jewel","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":500,"sellPrice":100,"minLevel":1},{"itemId":645506,"className":"misc_magicEngine","name":"Spell Engineering Engine","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":2000,"sellPrice":400,"minLevel":1},{"itemId":645507,"className":"misc_boss_Deathweaver","name":"Tormented Soul","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":3000,"sellPrice":600,"minLevel":1},{"itemId":645508,"className":"misc_boss_BiteRegina","name":"Biteregina's Thorn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645509,"className":"misc_boss_Kerberos","name":"Cerberus' Canine","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645510,"className":"misc_boss_Chapparition","name":"Chapparition's Soul Matter","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645511,"className":"misc_mission_gele","name":"Siela","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":20,"sellPrice":4,"minLevel":1},{"itemId":645512,"className":"misc_FOOT02_119_1","name":"Veyo Boots Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645513,"className":"misc_FOOT02_119_2","name":"Veyo Boots Laces","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645514,"className":"misc_NECK03_104_1","name":"Saphie Chain","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645515,"className":"misc_NECK03_104_2","name":"Saphie Stone","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645516,"className":"misc_NECK03_104_3","name":"Bramble Thorn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645517,"className":"misc_yonazolem_Q1","name":"Yonazolem Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645518,"className":"misc_Denoptic","name":"Denoptic Eye","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645519,"className":"misc_Confinedion","name":"Scorpio Hook","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645520,"className":"misc_gemExpStone01","name":"Gem Abrasive: 3,000","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1},{"itemId":645521,"className":"misc_BRC03_105_1","name":"Tomb Lord Chain","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645522,"className":"misc_BRC03_105_2","name":"Bearkaras Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645523,"className":"misc_BRC03_105_3","name":"Rexipher's Innocent Evil","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645524,"className":"misc_HV_583_SQ01","name":"Aging Relic","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":6000,"sellPrice":1200,"minLevel":1},{"itemId":645525,"className":"misc_whetstone","name":"Charcoal Stone","type":"Etc","group":"Material","weight":2,"maxStack":999999,"price":180,"sellPrice":36,"minLevel":1},{"itemId":645526,"className":"misc_liena_pants_1","name":"Unicorn Bones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645527,"className":"misc_liena_pants_2","name":"Reaverpede Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645528,"className":"misc_liena_top_1","name":"Devilglove Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645529,"className":"misc_liena_top_2","name":"Moa Feather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645530,"className":"misc_parchment","name":"Parchment","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":200,"sellPrice":40,"minLevel":1},{"itemId":645531,"className":"misc_briquetting_1","name":"Synthetic Stone","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":1000,"sellPrice":0,"minLevel":1},{"itemId":645532,"className":"misc_flask","name":"Flask","type":"Etc","group":"Material","weight":3,"maxStack":32767,"price":120,"sellPrice":24,"minLevel":1},{"itemId":645533,"className":"misc_catalyst_1","name":"Calcite","type":"Etc","group":"Material","weight":4,"maxStack":32767,"price":3000,"sellPrice":600,"minLevel":1},{"itemId":645534,"className":"misc_repairkit_1","name":"Repair Kit","type":"Etc","group":"Material","weight":3,"maxStack":999999,"price":80,"sellPrice":16,"minLevel":1},{"itemId":645539,"className":"misc_0127","name":"Old Kepa Shell","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645540,"className":"misc_0128","name":"Ridimed Stem","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645541,"className":"misc_0129","name":"Meduja Tentacle","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645542,"className":"misc_0130","name":"Bite Stinger","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645543,"className":"misc_0131","name":"Griba Stem","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645544,"className":"misc_0132","name":"Meleech Shell","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645545,"className":"misc_0133","name":"Slick Sap","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645546,"className":"misc_0134","name":"Treegool Stem","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645547,"className":"misc_0135","name":"Cronewt Bones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645548,"className":"misc_0136","name":"Hoglan Beak","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645549,"className":"misc_0137","name":"Ducky Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645550,"className":"misc_0138","name":"Kepa Wing","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645551,"className":"misc_0139","name":"Kepo Skin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645552,"className":"misc_0140","name":"Kepo Fluff","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645553,"className":"misc_0141","name":"Rondo Shell","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645555,"className":"misc_0143","name":"Kodomor Thorn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645556,"className":"misc_0144","name":"Lomor Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645557,"className":"misc_0145","name":"Red Plate","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645558,"className":"misc_0146","name":"Wooden Pile","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645559,"className":"misc_0147","name":"Moya Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645560,"className":"misc_0148","name":"Colifly Stamen","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645561,"className":"misc_0149","name":"Loftlem Debris","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645562,"className":"misc_0150","name":"Stoulet Heart","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645563,"className":"misc_0151","name":"Hoglan Beak","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645564,"className":"misc_0152","name":"Infro Blood Stem","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645565,"className":"misc_0153","name":"Chupaluka Fur","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645566,"className":"crystal_piece","name":"Crystal Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":220,"sellPrice":0,"minLevel":1},{"itemId":645567,"className":"arrow_05","name":"Divine Machine Arrow","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":1,"sellPrice":1,"minLevel":1},{"itemId":645568,"className":"arrow_06","name":"Magic Arrow","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":1,"sellPrice":1,"minLevel":1},{"itemId":645570,"className":"misc_campkit","name":"Camping Tools","type":"Etc","group":"Material","weight":6,"maxStack":32767,"price":1250,"sellPrice":250,"minLevel":1},{"itemId":645571,"className":"misc_gunpowder","name":"Gunpowder","type":"Etc","group":"Material","weight":6,"maxStack":32767,"price":550,"sellPrice":110,"minLevel":1},{"itemId":645572,"className":"misc_0154","name":"Kepo Fluff","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645573,"className":"misc_0155","name":"Ashrong Stem","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645574,"className":"misc_0156","name":"Yellow Yognome Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645575,"className":"misc_0157","name":"Yellow Egnome Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645576,"className":"misc_0158","name":"Yellow Gorgon Golem Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645577,"className":"misc_0159","name":"Moyabu Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645578,"className":"misc_0160","name":"Lemuria Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645579,"className":"misc_0161","name":"Harugal Bones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645580,"className":"misc_0162","name":"Socket Shell","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645581,"className":"misc_0163","name":"Elma Hair","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645582,"className":"misc_0164","name":"Hohen Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645583,"className":"misc_0165","name":"Lizardman Bones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645584,"className":"misc_0166","name":"Tama Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645585,"className":"misc_0167","name":"Short Timber","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645586,"className":"misc_0168","name":"Cyst Needle","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645587,"className":"misc_0169","name":"Mole Claw","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645588,"className":"misc_0170","name":"Melatinun Heart","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645589,"className":"misc_0171","name":"Gribaru Drop","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645590,"className":"misc_0172","name":"Siaulamb Fur Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645591,"className":"misc_0173","name":"Pendinmire Mask","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645592,"className":"misc_0174","name":"Rabbee Fur","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645593,"className":"misc_0175","name":"Honeybean Stinger","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645594,"className":"misc_0176","name":"Fan Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645595,"className":"misc_0177","name":"Honeymeli Stinger","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645596,"className":"misc_0178","name":"Siaulamb Mask","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645597,"className":"misc_0179","name":"Big Siaulamb Sinew","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645598,"className":"misc_0180","name":"Siaulamb Mask","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645599,"className":"misc_0181","name":"Blood Eyeball","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645600,"className":"misc_0182","name":"Moyabu Crystal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645601,"className":"misc_0183","name":"Harugal Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645602,"className":"misc_0184","name":"Tripede Thorn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645603,"className":"trg_crystal","name":"Resonance Crystal","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645604,"className":"misc_claymore","name":"Claymore","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":300,"sellPrice":60,"minLevel":1},{"itemId":645605,"className":"misc_wire","name":"Wire","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":320,"sellPrice":64,"minLevel":1},{"itemId":645606,"className":"misc_spacepiece","name":"Time Crystal","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":2000,"sellPrice":400,"minLevel":1},{"itemId":645607,"className":"wood_05","name":"Oak","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":20,"sellPrice":4,"minLevel":1},{"itemId":645608,"className":"misc_gemExpStone02","name":"Gem Abrasive: 15,500","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1},{"itemId":645609,"className":"misc_Marionette","name":"Complex Gear","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1},{"itemId":645610,"className":"misc_durahan","name":"Dullahan Armor Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1},{"itemId":645611,"className":"misc_anchor","name":"Anchor","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645612,"className":"misc_velffigy","name":"Velfiggy Bead","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645613,"className":"misc_glyquare","name":"Glyquare Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":60,"sellPrice":12,"minLevel":1},{"itemId":645614,"className":"misc_Minos1","name":"Minos Bones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":96,"sellPrice":19,"minLevel":1},{"itemId":645615,"className":"misc_Stoulet1","name":"Thick Chain","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":24,"minLevel":1},{"itemId":645616,"className":"misc_goblin","name":"Goblin Talisman","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":22,"sellPrice":4,"minLevel":1},{"itemId":645617,"className":"tree_root_mole1","name":"Mole Claw","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":34,"sellPrice":6,"minLevel":1},{"itemId":645618,"className":"misc_pawn1","name":"Small Demon Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":34,"sellPrice":6,"minLevel":1},{"itemId":645619,"className":"misc_marblepiece","name":"Marble Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645620,"className":"misc_stone","name":"Stone","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645621,"className":"misc_soil","name":"Dried Earth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645622,"className":"misc_mud","name":"Mud","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645623,"className":"misc_grass","name":"Weeds","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645624,"className":"misc_dirtywater","name":"Contaminated Water","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645625,"className":"misc_icepiece","name":"Ice Piece","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645626,"className":"misc_twig","name":"Tree Branch","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645627,"className":"misc_clothpiece","name":"Cloth Piece","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645628,"className":"misc_moss","name":"Moss","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645629,"className":"misc_pebble","name":"Pebble","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645630,"className":"PILGRIM51_ITEM_09","name":"Purifier","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":10000,"sellPrice":1,"minLevel":1},{"itemId":645631,"className":"card_Xpupkit01","name":"Enhancement Card Lv1","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":2000,"minLevel":1},{"itemId":645634,"className":"misc_gemExpStone03","name":"Gem Abrasive: 31,000","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1},{"itemId":645635,"className":"misc_gemExpStone04","name":"Gem Abrasive: 62,000","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1},{"itemId":645636,"className":"misc_gemExpStone05","name":"Gem Abrasive: 124,000","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1},{"itemId":645637,"className":"misc_gemExpStone_randomQuest1","name":"2-Star Gem Abrasive","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1},{"itemId":645638,"className":"misc_gemExpStone_randomQuest2","name":"3-Star Gem Abrasive","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1},{"itemId":645639,"className":"misc_gemExpStone_randomQuest3","name":"4-Star Gem Abrasive","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1},{"itemId":645640,"className":"misc_gemExpStone_randomQuest4","name":"5-Star Gem Abrasive","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1},{"itemId":645641,"className":"misc_Chafperor","name":"Chafperor Shell","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645642,"className":"misc_Socket","name":"Socket Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":34,"sellPrice":6,"minLevel":1},{"itemId":645643,"className":"misc_ticen_mage","name":"Magic Moss","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":5,"sellPrice":1,"minLevel":1},{"itemId":645644,"className":"misc_dandel_white","name":"White Dandel Fur","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645645,"className":"misc_Rambear_brown","name":"Brown Rambear Bones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645646,"className":"misc_Deadbornscab","name":"Deadborn Scap Mask","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645647,"className":"misc_Kepari","name":"Kepari Shell","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645648,"className":"misc_Templeslave","name":"Straw Mat","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645649,"className":"misc_saltisdaughter","name":"White Chain","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":24,"minLevel":1},{"itemId":645650,"className":"misc_Siaulav_blue","name":"Blue Siaulav Mask","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645651,"className":"misc_0185","name":"Green Eldigo Claw","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645652,"className":"misc_0186","name":"Red Truffle Mushroom","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645653,"className":"misc_0187","name":"Pungent Stem","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645654,"className":"misc_0188","name":"Blue Spion Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645655,"className":"misc_0189","name":"Gray Stoulet Tendon","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645656,"className":"misc_0190","name":"Orange Siaulav Mask","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645657,"className":"misc_0191","name":"Green Hohen Mane","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645658,"className":"misc_0192","name":"Green Hohen Horns","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645659,"className":"misc_0193","name":"Broken Hohen Staff","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645660,"className":"misc_0194","name":"Hohen Flag Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645661,"className":"misc_0195","name":"Green Hohen Orben Crystal Sphere","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645662,"className":"misc_0196","name":"Blue Wendigo Fur","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645663,"className":"misc_0197","name":"Orange Minos Hoof","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645664,"className":"misc_0198","name":"Yellow Colifly Stamen","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645665,"className":"misc_0199","name":"Black Colifly Stamen","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645666,"className":"misc_0200","name":"Green Minos Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645667,"className":"misc_0201","name":"Brown Colimen Flower","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645668,"className":"misc_0202","name":"Spike","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645669,"className":"misc_0203","name":"Red Infra Holder Heart","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645670,"className":"misc_0204","name":"Blue Lapasape Fangs","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645671,"className":"misc_0205","name":"Blue Colimen Flower","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645672,"className":"misc_0206","name":"Red Lepusbunny Tail","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645673,"className":"misc_0207","name":"Blue Cronewt Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645674,"className":"misc_0208","name":"Blue Cronewt Stinger","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645675,"className":"misc_0209","name":"Blue Hohen Claw","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645676,"className":"misc_0210","name":"Blue Tini Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645677,"className":"misc_0211","name":"White Spion Fur","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645678,"className":"misc_0212","name":"Brown Lapasape Leaves","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645679,"className":"misc_0213","name":"Red Hohen Orben Crystal Sphere","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645680,"className":"misc_0214","name":"White Wendigo Bow","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645681,"className":"misc_0215","name":"Blue Hohen Gulak Horns","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645682,"className":"misc_0216","name":"Black Kepari Leaves","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645683,"className":"misc_0217","name":"Brown Tini Bones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645684,"className":"misc_0218","name":"Brown Tini Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645685,"className":"misc_0219","name":"Blue Harugal Mane","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645686,"className":"misc_0220","name":"Blue Harugal Heart","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645687,"className":"misc_0221","name":"Green Socket Wing","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645688,"className":"misc_0222","name":"Brown Stoulet Helmet Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645689,"className":"misc_0223","name":"Blue Ridimed Stems","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645690,"className":"misc_0224","name":"Red Straw Sheaves","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645691,"className":"misc_0225","name":"Black Old Kepa Skin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645692,"className":"misc_0226","name":"Yellow Griba Stems","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645693,"className":"misc_0227","name":"Green Meduja Tentacles","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645694,"className":"misc_0228","name":"Terranium","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645695,"className":"misc_0229","name":"Dawn Crystal Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645696,"className":"misc_0230","name":"Blue Elet Mask","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645697,"className":"misc_0231","name":"Blue Nuo Horns","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645698,"className":"misc_0232","name":"Blue Nuo Sword Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645699,"className":"misc_0233","name":"Blue Guardian Spider Leg","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645700,"className":"misc_0234","name":"Red Socket Horns","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645701,"className":"misc_0235","name":"Red Socket Wings","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645702,"className":"misc_0236","name":"Darkness Crystal Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645703,"className":"misc_0237","name":"Blue Nuka Armor Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645704,"className":"misc_0238","name":"Blue Temple Slave Hood","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645705,"className":"misc_0239","name":"Green Tini Tail","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645706,"className":"misc_0240","name":"Red Spion Fur","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645707,"className":"misc_0241","name":"Green Tini Magician Bones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645708,"className":"misc_0242","name":"Blue Dumaro Claw","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645709,"className":"misc_0243","name":"Blue Lepusbunny Bones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645710,"className":"misc_0244","name":"Blue Beard","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645711,"className":"misc_0245","name":"Red Elma Broken Staff","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645712,"className":"misc_0246","name":"Red Ticen Horns","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645713,"className":"misc_0247","name":"Red Nuo Horns","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645714,"className":"misc_0248","name":"Red Cockat Feather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645715,"className":"misc_0249","name":"Red Cockat Crest","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645716,"className":"misc_0250","name":"Big Red Griba Bamboo Hat","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645717,"className":"misc_0251","name":"Gray Winged Frog Bones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645718,"className":"misc_0252","name":"Red Guardian Spider Eyes","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645719,"className":"misc_0253","name":"Green Rafflesia Stamen","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645720,"className":"misc_0254","name":"Green Rafflesia Branch","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645721,"className":"misc_0255","name":"Jukotail Tail","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645722,"className":"misc_0256","name":"Jukotail Ore","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645723,"className":"misc_0257","name":"Blue Hohen Mane","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645724,"className":"misc_0258","name":"Green Minos Fur","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645725,"className":"misc_0259","name":"Green Minos Jaw Bones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645726,"className":"misc_0260","name":"Brown Nuka Armor Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645727,"className":"misc_0261","name":"Corrupt Brown Lapasape Mushroom","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645728,"className":"misc_0262","name":"Red Ticen Spearhead","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645729,"className":"misc_0263","name":"Tough Shell","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645730,"className":"misc_0264","name":"Pincers","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645731,"className":"misc_0265","name":"Yellow Dumaro Claw","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645732,"className":"misc_awakeningStone1","name":"Awakening Stone: 14 Days","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":33,"sellPrice":6,"minLevel":1},{"itemId":645733,"className":"misc_0266","name":"Beeteroxia Leaves","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645734,"className":"misc_0267","name":"Ferret Marauder Shell","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645735,"className":"misc_0268","name":"Ferret Marauder Horns","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645736,"className":"misc_0269","name":"Parrot Stems","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645737,"className":"misc_0270","name":"Polibu Leaves","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645738,"className":"misc_0271","name":"Leafnut Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645739,"className":"misc_0272","name":"Loktanun Feather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645740,"className":"misc_0273","name":"Ponpon Branch","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645741,"className":"misc_0274","name":"Gosaru Bones","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645742,"className":"misc_0275","name":"Raffly Stems","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645743,"className":"misc_0276","name":"Kenol Crystal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645744,"className":"misc_0277","name":"Pag Cloth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645745,"className":"misc_0278","name":"Glyphring Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645746,"className":"misc_0279","name":"Ferret Fur","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645747,"className":"misc_bombShinobi","name":"Ninjutsu Bomb","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":100,"sellPrice":60,"minLevel":1},{"itemId":645748,"className":"misc_cape","name":"Cape","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":200,"sellPrice":200,"minLevel":1},{"itemId":645749,"className":"misc_oldIron","name":"Scrap Iron","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645750,"className":"misc_runeStone","name":"Rune Stone","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1},{"itemId":645751,"className":"event_alphabet_T","name":"Alphabet T","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645752,"className":"event_alphabet_R","name":"Alphabet R","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645753,"className":"event_alphabet_E","name":"Alphabet E","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645754,"className":"event_alphabet_O","name":"Alphabet O","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645755,"className":"event_alphabet_F","name":"Alphabet F","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645756,"className":"event_alphabet_S","name":"Alphabet S","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645757,"className":"event_alphabet_A","name":"Alphabet A","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645758,"className":"event_alphabet_V","name":"Alphabet V","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645759,"className":"event_alphabet_I","name":"Alphabet I","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645760,"className":"misc_earthTower","name":"Lv1 Earth Fragment","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645761,"className":"misc_earthTower5_boss","name":"Pyroego Essence","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645762,"className":"misc_earthTower10_boss","name":"Gosarius Essence","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645763,"className":"misc_earthTower15_boss","name":"Turtai Essence","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645764,"className":"misc_earthTower20_boss","name":"G'bb Essence","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645765,"className":"misc_gemExpStone09","name":"7-Star Gem Abrasive","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645766,"className":"misc_gemExpStone10","name":"8-Star Gem Abrasive","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645768,"className":"misc_awakeningStone1_test","name":"Awakening Stone: 1 Minute","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":33,"sellPrice":6,"minLevel":1},{"itemId":645769,"className":"misc_earthTower_2","name":"Lv2 Earth Fragment","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645770,"className":"misc_earthTower25_boss","name":"Neop Essence","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645771,"className":"misc_earthTower30_boss","name":"Organ Essence","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645772,"className":"misc_earthTower35_boss","name":"Plokste Essence","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645773,"className":"misc_earthTower40_boss","name":"Grim Reaper Essence","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645774,"className":"misc_earthTower5_toll","name":"Symbol of Pyroego","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645775,"className":"misc_earthTower10_toll","name":"Symbol of Gosarius","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645776,"className":"misc_earthTower15_toll","name":"Symbol of Turtai","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645777,"className":"misc_earthTower20_toll","name":"Symbol of G'bb","type":"Etc","group":"Material","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645778,"className":"Premium_itemUpgradeStone_Weapon","name":"Goddesses' Blessed Gem: Weapon","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645779,"className":"Premium_itemUpgradeStone_Armor","name":"Goddesses' Blessed Gem: Armor","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645780,"className":"Premium_itemUpgradeStone_Acc","name":"Goddesses' Blessed Gem: Accessory","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645781,"className":"Premium_itemDissassembleStone","name":"Hammer of Dismantlement","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645782,"className":"Premium_deleteTranscendStone","name":"Spell Rod","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645783,"className":"misc_BlessedStone","name":"Blessed Shard","type":"Etc","group":"Material","weight":0,"maxStack":9999999,"price":0,"sellPrice":0,"minLevel":1},{"itemId":645801,"className":"misc_0280","name":"Black Ingot","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645802,"className":"misc_0281","name":"Golden Ingot","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645803,"className":"misc_0282","name":"Unknown Hide","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645804,"className":"misc_0283","name":"Brown Glue","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645805,"className":"misc_0284","name":"Broken Crystal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645806,"className":"misc_0285","name":"Red Strand","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645807,"className":"misc_0286","name":"Red Crystal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645808,"className":"misc_0287","name":"Yellow Crystal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645809,"className":"misc_0288","name":"Purple Crystal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645810,"className":"misc_EnchantedPowder","name":"Magic Powder","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":100,"sellPrice":0,"minLevel":1},{"itemId":645811,"className":"misc_impurities","name":"Alchemy Residue","type":"Etc","group":"Material","weight":10,"maxStack":32767,"price":100,"sellPrice":0,"minLevel":1},{"itemId":645812,"className":"misc_Magicscroll","name":"Magic Scroll","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":2000,"sellPrice":0,"minLevel":1},{"itemId":645813,"className":"misc_0289","name":"Red Fur","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645814,"className":"misc_0290","name":"Glossy Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645815,"className":"misc_0291","name":"Plant Thorn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645816,"className":"misc_0292","name":"Peculiar Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645817,"className":"misc_0293","name":"Golden Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645818,"className":"misc_0294","name":"Refined Ingot","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645819,"className":"misc_TruthMirror","name":"Mirror of Truth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645820,"className":"misc_BlokenMirror","name":"Crystal Fragment of Change","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":645821,"className":"misc_guehangji","name":"Strange Yellow Paper","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":50,"sellPrice":2,"minLevel":1},{"itemId":645822,"className":"misc_0295","name":"Akhlass's Mask","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645823,"className":"misc_0296","name":"Akhlass's Armor Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645824,"className":"misc_0297","name":"Prison Fighter's Armor Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645825,"className":"misc_0298","name":"Flak's Armor Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645826,"className":"misc_0299","name":"Moglan Shell","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645827,"className":"misc_0300","name":"Sturdy Rondo Shell","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645828,"className":"misc_0301","name":"Ragged Butcher's Axe Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645829,"className":"misc_0302","name":"Akhlass Bishop's Cloak Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645830,"className":"misc_0303","name":"Akhlass Wings","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645831,"className":"misc_0304","name":"Black Shardstatue Wings","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645832,"className":"misc_0305","name":"Ragbird Wings","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645833,"className":"misc_0306","name":"Yellow Leafnut Wings","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645834,"className":"misc_0307","name":"Orange Grummer Wings","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645835,"className":"misc_0308","name":"Yellow Pyran Wings","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645836,"className":"misc_0309","name":"Blue Beetow Wings","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645837,"className":"misc_0310","name":"Green Bavon Wings","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645838,"className":"misc_0311","name":"Red Maize Wings","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645839,"className":"misc_0312","name":"Lyecorn Wings","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645840,"className":"misc_0313","name":"Tuthrycon Wings","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645841,"className":"misc_0314","name":"Mouringaka Wings","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645842,"className":"misc_0315","name":"Mourningbird Wings","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645843,"className":"misc_0316","name":"Red Slime Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645844,"className":"misc_0317","name":"Red Wizard Shaman Doll Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645845,"className":"misc_0318","name":"Lakhorn Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645846,"className":"misc_0319","name":"Lakhof Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645847,"className":"misc_0320","name":"Lakhtanon Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645848,"className":"misc_0321","name":"Green Rubblem Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645849,"className":"misc_0322","name":"Green Blindlem Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645850,"className":"misc_0323","name":"Yellow Arma Tail","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645851,"className":"misc_0324","name":"Bunkeyto's Tail","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645852,"className":"misc_0325","name":"Nabu's Tail","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645853,"className":"misc_0326","name":"Blue Gosaru Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645854,"className":"misc_0327","name":"Green Flamag Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645855,"className":"misc_0328","name":"Green Wood Goblin Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645856,"className":"misc_0329","name":"Horned Golem Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645857,"className":"misc_0330","name":"Rhodenabean Down","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645858,"className":"misc_0331","name":"Kugheri Down","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645859,"className":"misc_0332","name":"Flowlevi Down","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645860,"className":"misc_0333","name":"Bunkeybo Down","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645861,"className":"misc_0334","name":"Nukhalong Down","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645862,"className":"misc_0335","name":"Green Goblin Cloth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645863,"className":"misc_0336","name":"Blue Pag Doper Cloth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645864,"className":"misc_0337","name":"Yellow Pag Clamper Cloth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645865,"className":"misc_0338","name":"Green Pag Nurse Cloth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645866,"className":"misc_0339","name":"Yellow Pag Shearer Cloth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645867,"className":"misc_0340","name":"Kugheri Cloth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645868,"className":"misc_0341","name":"Tala Mage Cloth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645869,"className":"misc_0342","name":"Green Flamme's Broken Staff","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645870,"className":"misc_0343","name":"Green Flamme Mage's Broken Staff","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645871,"className":"misc_0344","name":"Green Flamme Archer's Broken Arrow","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645872,"className":"misc_0345","name":"Tala Archer's Broken Arrow","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645873,"className":"misc_0346","name":"Vilkas Archer's Broken Arrow","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645874,"className":"misc_0347","name":"Blue Pag Doper's Weapon Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645875,"className":"misc_0348","name":"Yellow Pag Clamper's Weapon Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645876,"className":"misc_0349","name":"Green Pag Nurse's Weapon Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645877,"className":"misc_0350","name":"Yellow Pag Shearer's Weapon Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645878,"className":"misc_0351","name":"Green Flak's Weapon Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645879,"className":"misc_0352","name":"Green Flamil's Weapon Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645880,"className":"misc_0353","name":"Akhlass's Ripped Cloth Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645881,"className":"misc_0354","name":"Akhlacia Hair","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645882,"className":"misc_0355","name":"Kugheri Numani Hair","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645883,"className":"misc_0356","name":"Kugheri Balzer Hair","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645884,"className":"misc_0357","name":"Amber","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645885,"className":"misc_0358","name":"Straw","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645886,"className":"misc_0359","name":"Green Ellomago Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645887,"className":"misc_0360","name":"Bloom Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645888,"className":"misc_0361","name":"Virdney Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645889,"className":"misc_0362","name":"Flowlon Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645890,"className":"misc_0363","name":"Blue Tanu Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645891,"className":"misc_0364","name":"Flowlon Seeds","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645892,"className":"misc_0365","name":"Blue Woodluwa Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645893,"className":"misc_0366","name":"Rhodenabean Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645894,"className":"misc_0367","name":"Rhodenag Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645895,"className":"misc_0368","name":"Rhodetad Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645896,"className":"misc_0369","name":"Elder Rhode Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645897,"className":"misc_0370","name":"Rhodedoe Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645898,"className":"misc_0371","name":"Rhodeliot Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645899,"className":"misc_0372","name":"Nuttafly Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645900,"className":"misc_0373","name":"Nuttabug Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645901,"className":"misc_0374","name":"Rhodeyokel Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645902,"className":"misc_0375","name":"Yellow Caro Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645903,"className":"misc_0376","name":"Yellow Polibu Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645904,"className":"misc_0377","name":"Nukhalong Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645905,"className":"misc_0378","name":"Romplenuka Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645906,"className":"misc_0379","name":"Vilkas Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645907,"className":"misc_0380","name":"Vilkas Archer Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645908,"className":"misc_0381","name":"Vilkas Assassin Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645909,"className":"misc_0382","name":"Vilkas Spearman Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645910,"className":"misc_0383","name":"Vilkas Fighter Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645911,"className":"misc_0384","name":"Vilkas Mage Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645912,"className":"misc_0385","name":"Blue Dojoru Spores","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645913,"className":"misc_0386","name":"Red Glyquare Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645914,"className":"misc_0387","name":"Red Anchor Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645915,"className":"misc_0388","name":"Green Zolem Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645916,"className":"misc_0389","name":"Green Charcoal Walker Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645917,"className":"misc_0390","name":"Green Charog Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645918,"className":"misc_0391","name":"Green Goblin Token","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645919,"className":"misc_0392","name":"Vilkas Fur","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645920,"className":"misc_0393","name":"Red Ducky Thorns","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645921,"className":"misc_0394","name":"Mouringaka Spores","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645922,"className":"misc_talt_event","name":"Talt [Event]","type":"Etc","group":"Material","weight":10,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1,"script":{"strArg":"Guild_EXP","numArg1":20}},{"itemId":645923,"className":"misc_emptySpellBook","name":"Empty Spellbook","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":2000,"sellPrice":2000,"minLevel":1},{"itemId":645924,"className":"misc_brokenwheel","name":"Wheel of Judgement","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":1000,"sellPrice":40,"minLevel":1},{"itemId":645925,"className":"misc_gemExpStone_randomQuest3_14d","name":"4-Star Gem Abrasive: 14 Days","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1},{"itemId":645926,"className":"misc_gemExpStone_randomQuest4_14d","name":"5-Star Gem Abrasive: 14 Days","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1},{"itemId":645927,"className":"misc_gemExpStone_randomQuest5","name":"6-Star Gem Abrasive","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1},{"itemId":645928,"className":"misc_0395","name":"Rhodenabean Fruit","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645929,"className":"misc_0396","name":"Rhodenag Thorn Vine","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645930,"className":"misc_0397","name":"Rhodetad Fruit","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645931,"className":"misc_0398","name":"Rhodetad Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645932,"className":"misc_0399","name":"Rhodedoe Tail","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645933,"className":"misc_0400","name":"Rhodedoe Fruit","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645934,"className":"misc_0401","name":"Rhodeliot's Hammer","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645935,"className":"misc_0402","name":"Rhodeliot Wooden Horse","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645936,"className":"misc_0403","name":"Elder Rhode Staff","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645937,"className":"misc_0404","name":"Nuttabug's Fruit","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645938,"className":"misc_0405","name":"Nuttafly's Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645939,"className":"misc_0406","name":"Rodejokel's Wooden Spear","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645940,"className":"misc_0407","name":"Blue Pag Doper's Medicine Bottle","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645941,"className":"misc_0408","name":"Yellow Pag Shearer's Weapon","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645942,"className":"misc_0409","name":"Yellow Pag Clamper's Tweezer","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645943,"className":"misc_0410","name":"Green Pag Nurse's Pikestaff","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645944,"className":"misc_0411","name":"Green Flak's Axe","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645945,"className":"misc_0412","name":"Tala Mage Staff","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645946,"className":"misc_0413","name":"Green Flamme Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645947,"className":"misc_0414","name":"Tala Archer's Head Feather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645948,"className":"misc_0415","name":"Tala Battle Boss' Hammer","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645949,"className":"misc_0416","name":"Green Flamme's Staff","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645950,"className":"misc_0417","name":"Green Rubblem Stone","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645951,"className":"misc_0418","name":"Green Bavon Wings","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645952,"className":"misc_0419","name":"Green Bavon Horns","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645953,"className":"misc_0420","name":"Green Zolem Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645954,"className":"misc_0421","name":"Green Zolem Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645955,"className":"misc_0422","name":"Green Flamag's Axe","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645956,"className":"misc_0423","name":"Green Flamag Undamaged Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645957,"className":"misc_0424","name":"Green Flamme Archer's Broken Bow","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645958,"className":"misc_0425","name":"Green Wood Goblin Undamaged Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645959,"className":"misc_0426","name":"Orange Lakhof Core","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645960,"className":"misc_0427","name":"Green Flamil's Weapon Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645961,"className":"misc_0428","name":"Thick Rondo Shell","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645962,"className":"misc_0429","name":"Rondo Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645963,"className":"misc_0430","name":"Black Shardstatue Undamaged Wings","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645964,"className":"misc_0431","name":"Black Shardstatue Rope","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645965,"className":"misc_0432","name":"Black Temple Slave Assassin's Dagger","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645966,"className":"misc_0433","name":"Black Temple Slave's Cape","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645967,"className":"misc_0434","name":"Amberdog's Cone Hat","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645968,"className":"misc_0435","name":"Scarecrow Scyth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645969,"className":"misc_0436","name":"Straw Walker Scyth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645970,"className":"misc_0437","name":"Ragbird Feather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645971,"className":"misc_0438","name":"Ragbird Undamaged Wings","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645972,"className":"misc_0439","name":"Ragged Butcher's Ring","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645973,"className":"misc_0440","name":"Green Ellomago Tail","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645974,"className":"misc_0441","name":"Blue Woodluwa Claw","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645975,"className":"misc_0442","name":"Green Goblin Wizard Staff","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645976,"className":"misc_0443","name":"Green Goblin Warrior Shoulder Ornament","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645977,"className":"misc_0444","name":"Green Goblin Shaman Molar","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645978,"className":"misc_0445","name":"Green Goblin Tooth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645979,"className":"misc_0446","name":"Red Maize Spore","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645980,"className":"misc_0447","name":"Red Siaulav Mask","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645981,"className":"misc_0448","name":"Black Temple Slave's Crossbow","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645982,"className":"misc_0449","name":"Black Temple Slave's Glove","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645983,"className":"misc_0450","name":"Lyecorn Undamaged Wings","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645984,"className":"misc_0451","name":"Tuthrycon Tail","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645985,"className":"misc_0452","name":"Tuthrycon Undamaged Wings","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645986,"className":"misc_0453","name":"Horned Golem Undamage Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645987,"className":"misc_0454","name":"Bunkeybo Hair","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645988,"className":"misc_0455","name":"Nukhalong Antenna","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645989,"className":"misc_0456","name":"Nukhalong Wrist Ornament","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645990,"className":"misc_0457","name":"Black Siaulav Archer Mask","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645991,"className":"misc_0458","name":"Black Siaulav Mage Broken Staff","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645992,"className":"misc_0459","name":"Vilkas Wooden Club","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645993,"className":"misc_0460","name":"Vilkas Archer's Bow","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645994,"className":"misc_0461","name":"Vilkas Archer's Hood","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645995,"className":"misc_0462","name":"Romplenuka Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645996,"className":"misc_0463","name":"Romplenuka's Wrist Ornament","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645997,"className":"misc_0464","name":"Vilkas Assassin's Dagger","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645998,"className":"misc_0465","name":"Vilkas Assassin's Belt","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":645999,"className":"misc_0466","name":"Vilkas Spearman's Weapon","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646000,"className":"misc_0467","name":"Vilkas Mage Tail","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646001,"className":"misc_0468","name":"Vilkas Mage's Hood","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646002,"className":"misc_0469","name":"Red Slime's Chain","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646003,"className":"misc_0470","name":"Red Slime's Slime","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646004,"className":"misc_0471","name":"Yellow Arma Undamaged Tail","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646005,"className":"misc_0472","name":"Yellow Arma Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646006,"className":"misc_0473","name":"Yellow Pyran Tail","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646007,"className":"misc_0474","name":"Dirty Cloth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646008,"className":"misc_0475","name":"Kugheri Lyoni Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646009,"className":"misc_0476","name":"Kugheri Sommi Ribbon","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646010,"className":"misc_0477","name":"Kugheri Sommi Tambourine","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646011,"className":"misc_0478","name":"Kugheri Tot's Necklace","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646012,"className":"misc_0479","name":"Kugheri Tot Fruit","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646013,"className":"misc_0480","name":"Yellow Leafnut Tail","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646014,"className":"misc_0481","name":"Yellow Leafnut Undamaged Wings","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646015,"className":"misc_0482","name":"Orange Grummer Undamaged Wings","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646016,"className":"misc_0483","name":"Orange Grummer Antenna","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646017,"className":"misc_0484","name":"Red Colimen Flower Leaf","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646018,"className":"misc_0485","name":"Yellow Caro Antenna","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646019,"className":"misc_0486","name":"Kugheri Numani's Hat","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646020,"className":"misc_0487","name":"Kugheri Numani's Bell","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646021,"className":"misc_0488","name":"Kugheri Zabbi's Cymbals","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646022,"className":"misc_0489","name":"Kugheri Zabbi's Mask","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646023,"className":"misc_0490","name":"Kugheri Zeuni's Cloth Piece","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646024,"className":"misc_0491","name":"Green Charog Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646025,"className":"misc_0492","name":"Green Charog Nail","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646026,"className":"misc_0493","name":"Green Charcoal Walker Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646027,"className":"misc_0494","name":"Green Blindlem's Moss-covered Stone","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646028,"className":"misc_0495","name":"Green Blindlem Teeth","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646029,"className":"misc_0496","name":"Cave Ravinelarva Thorn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646030,"className":"misc_0497","name":"Kugheri Balzer's Flower Basket","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646031,"className":"misc_0498","name":"Kugheri Balzer's Braid","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646032,"className":"misc_0499","name":"Kugheri Symbani's Sword","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646033,"className":"misc_0500","name":"Kugheri Symbani's Hat Ornament","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646034,"className":"misc_0501","name":"Kugheri Zeffi's Ornament","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646035,"className":"misc_0502","name":"Mouringaka Undamaged Wings","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646036,"className":"misc_0503","name":"Mouringaka Antenna","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646037,"className":"misc_0504","name":"Nabu's Undamaged Tail","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646038,"className":"misc_0505","name":"Mourningbird Tail","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646039,"className":"misc_0506","name":"Mourningbird Undamaged Wings","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646040,"className":"misc_scrollskulp","name":"Ripped Piece of Paper","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":48,"sellPrice":9,"minLevel":1},{"itemId":646041,"className":"misc_gemExpStone09_TA","name":"Shining 7-Star Gem Abrasive","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":646042,"className":"misc_gemExpStone10_TA","name":"Shining 8-Star Gem Abrasive","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":646043,"className":"card_Xpupkit01_500","name":"Enhancement Card:500","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":2000,"minLevel":1},{"itemId":646044,"className":"misc_0507","name":"Magnifying Glass","type":"Etc","group":"Material","weight":1,"maxStack":999999,"price":100,"sellPrice":25,"minLevel":1},{"itemId":646045,"className":"Premium_item_transcendence_Stone","name":"Goddesses' Blessed Gem","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":646046,"className":"misc_gemExpStone07_TA","name":"Shining Gem Abrasive: 145,340","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":646047,"className":"Team_Bat_Card_01","name":"Enhancement Card: 300 (TBL Reward)","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":646048,"className":"Exp_Card_300","name":"Enhancement Card: 300","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":646049,"className":"PVP_Misc_1","name":"GTW Battle Coin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":100000,"minLevel":1},{"itemId":646050,"className":"misc_id_330_gimmick_01","name":"Red Valerijonas","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":0,"minLevel":1},{"itemId":646051,"className":"misc_id_330_gimmick_02","name":"Blue Aurorapas","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":0,"minLevel":1},{"itemId":646052,"className":"misc_id_330_gimmick_03","name":"Yellow Vjolulidas","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":0,"minLevel":1},{"itemId":646053,"className":"misc_0508","name":"Broken Nimrah Damsel Orb","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1},{"itemId":646054,"className":"misc_0509","name":"Nimrah Lancer's Spear","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1},{"itemId":646055,"className":"misc_0510","name":"Nimrah Soldier's Broken Rapier","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1},{"itemId":646056,"className":"misc_0511","name":"Lunar Angel Trumpet","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1},{"itemId":646057,"className":"misc_0512","name":"Varle Gunner Cannon Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1},{"itemId":646058,"className":"misc_0513","name":"Varle Skipper Sword Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1},{"itemId":646059,"className":"misc_0514","name":"Varle Helmsman Mace Head","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1},{"itemId":646060,"className":"misc_0515","name":"Beur Beak","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1},{"itemId":646061,"className":"misc_0516","name":"Quality Neuk Leather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1},{"itemId":646062,"className":"misc_0517","name":"Yakyak Horn","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1},{"itemId":646063,"className":"misc_0518","name":"Creto Feather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1},{"itemId":646064,"className":"misc_portalstone","name":"Portal Stone","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":5000,"sellPrice":25,"minLevel":1},{"itemId":646065,"className":"misc_shredded_paper","name":"Ripped Book","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":5000,"sellPrice":25,"minLevel":1},{"itemId":646066,"className":"guild_exp_up_lv1","name":"Guild Quest Reward Coin: Bronze","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Guild_EXP","numArg1":100}},{"itemId":646067,"className":"guild_exp_up_lv2","name":"Guild Quest Reward Coin: Silver","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Guild_EXP","numArg1":200}},{"itemId":646068,"className":"guild_exp_up_lv3","name":"Guild Quest Reward Coin: Gold","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Guild_EXP","numArg1":400}},{"itemId":646069,"className":"legend_card_reinforce_misc","name":"Belorb","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":1000000,"sellPrice":0,"minLevel":1},{"itemId":646070,"className":"misc_timepiece","name":"Time Crystal Fragment","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":100,"sellPrice":0,"minLevel":1},{"itemId":646071,"className":"card_Xpupkit01_100","name":"Enhancement Card: 100","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":646072,"className":"Retiarii_Net","name":"Rete","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":200,"sellPrice":0,"minLevel":1},{"itemId":646073,"className":"Onmyoji_paper","name":"Onmyoji Paper Doll","type":"Etc","group":"Material","weight":10,"maxStack":32767,"price":100,"sellPrice":0,"minLevel":1},{"itemId":646074,"className":"misc_paperdoll","name":"Paper Doll","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":50,"sellPrice":0,"minLevel":1},{"itemId":646076,"className":"misc_pvp_mine2","name":"Mercenary Badge","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":1,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_MISC_PVP_MINE2"}},{"itemId":646077,"className":"misc_pvp_mine1","name":"Gemstone","type":"Quest","group":"Material","weight":0,"maxStack":101,"price":0,"sellPrice":0,"minLevel":1},{"itemId":646078,"className":"misc_torturetools","name":"Torture Tools","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":300,"sellPrice":30,"minLevel":1},{"itemId":646079,"className":"misc_trapkit","name":"Trap Kit","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":30,"sellPrice":3,"minLevel":1},{"itemId":646080,"className":"wood_06","name":"Sculpting Wood","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":12,"sellPrice":2,"minLevel":1},{"itemId":646081,"className":"misc_wakepowder","name":"Awakening Powder","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":3000,"sellPrice":30,"minLevel":1},{"itemId":646082,"className":"PVP_Misc_1_Beta","name":"GTW Battle Coin","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":646083,"className":"PVP_Misc_1_KOR_Beta","name":"GTW Coin [Event]","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":100000,"minLevel":1},{"itemId":647000,"className":"misc_0519","name":"Lydia's Red Flower","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1},{"itemId":647001,"className":"misc_0520","name":"Starry Dew","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1},{"itemId":647002,"className":"misc_0521","name":"Schaffen's Black Flower","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1},{"itemId":647003,"className":"misc_0522","name":"Star Guide Lamp","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1},{"itemId":647004,"className":"misc_0523","name":"Lydia Schaffen's Lens","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1},{"itemId":647005,"className":"misc_0524","name":"Chestnut Shell Arrow","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1},{"itemId":647006,"className":"misc_0525","name":"Candlestick of Honor","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1},{"itemId":647007,"className":"misc_0526","name":"Nicopolis Star Drop","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1},{"itemId":647008,"className":"misc_0527","name":"Nicopolis Feline","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1},{"itemId":647009,"className":"misc_0528","name":"Royal Blade Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1},{"itemId":647010,"className":"misc_0529","name":"Hasisas Potion","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1},{"itemId":647011,"className":"misc_0530","name":"Magic Stone","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":25,"minLevel":1},{"itemId":647012,"className":"misc_gemExpStone_randomQuest4_14d_Team","name":"5-Star Gem Abrasive: 14 Days","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1},{"itemId":647013,"className":"PVP_Misc_1_KOR_Reward","name":"GTW Coin [Reward]","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":100000,"minLevel":1},{"itemId":647014,"className":"misc_0531","name":"Irredian Brooch","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":0,"minLevel":1},{"itemId":647015,"className":"misc_0532","name":"Irredian Crystal Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":0,"minLevel":1},{"itemId":647016,"className":"misc_0533","name":"Wings of Vaivora Coin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":0,"minLevel":1},{"itemId":647017,"className":"misc_gemExpStone10_Premium","name":"Shining 8-Star Gem Abrasive","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":647018,"className":"widnium_piece_Premium","name":"Widnium Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":647019,"className":"misc_bernice_coin","name":"Remnants of Bernice Coin","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":1,"sellPrice":1,"minLevel":1},{"itemId":647020,"className":"misc_0534","name":"Med Kit","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":300,"sellPrice":5,"minLevel":1},{"itemId":647025,"className":"misc_lensterseum","name":"Lensterseum","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":300,"sellPrice":5,"minLevel":1},{"itemId":647026,"className":"misc_riperium","name":"Riperium","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":300,"sellPrice":5,"minLevel":1},{"itemId":647027,"className":"misc_0535","name":"Luminous Red Leaf","type":"Etc","group":"Material","weight":15,"maxStack":32767,"price":300,"sellPrice":5,"minLevel":1},{"itemId":647028,"className":"misc_0536","name":"White Cosmos","type":"Etc","group":"Material","weight":15,"maxStack":32767,"price":300,"sellPrice":5,"minLevel":1},{"itemId":647029,"className":"misc_0537","name":"Purple Lavender","type":"Etc","group":"Material","weight":15,"maxStack":32767,"price":300,"sellPrice":5,"minLevel":1},{"itemId":647030,"className":"misc_0538","name":"Red Tulip","type":"Etc","group":"Material","weight":15,"maxStack":32767,"price":300,"sellPrice":5,"minLevel":1},{"itemId":647031,"className":"misc_0539","name":"Round Golden Emblem","type":"Etc","group":"Material","weight":30,"maxStack":32767,"price":300,"sellPrice":5,"minLevel":1},{"itemId":647032,"className":"misc_0540","name":"Complete Golden Emblem","type":"Etc","group":"Material","weight":30,"maxStack":32767,"price":300,"sellPrice":5,"minLevel":1},{"itemId":647033,"className":"misc_0541","name":"Broken Emblem Fragment","type":"Etc","group":"Material","weight":30,"maxStack":32767,"price":300,"sellPrice":5,"minLevel":1},{"itemId":647034,"className":"misc_0542","name":"[Event] Growth Gem","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":300,"sellPrice":5,"minLevel":1},{"itemId":647035,"className":"misc_0543","name":"[Episode 11] Adventure Sprout","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":300,"sellPrice":5,"minLevel":1},{"itemId":647036,"className":"misc_0544","name":"[Event] Popolion Badge","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":300,"sellPrice":5,"minLevel":1},{"itemId":647037,"className":"EQUIP_RENTAL_POINT","name":"Battle Point Coin","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":647039,"className":"card_Xpupkit01_500_Notrade","name":"Enhancement Card:500","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":2000,"minLevel":1},{"itemId":647042,"className":"misc_gemExpStone09_Team","name":"7-Star Gem Abrasive","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":647044,"className":"misc_silver_gacha_mileage","name":"Demon God's Temptation Point","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":1,"sellPrice":1,"minLevel":1},{"itemId":647045,"className":"TOSHERO_TRADE_POINT","name":"[Heroic Tale] Equipment Summon Voucher","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":649000,"className":"misc_ore01","name":"Copper Ore","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1},{"itemId":649001,"className":"misc_ore02","name":"Iron Ore","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1},{"itemId":649002,"className":"misc_ore03","name":"Steel Ore","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1},{"itemId":649003,"className":"misc_ore04","name":"Titanium Ore","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1},{"itemId":649004,"className":"misc_ore05","name":"Mithril Ore","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1},{"itemId":649005,"className":"misc_ore06","name":"Orichalcum Ore","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1},{"itemId":649006,"className":"misc_ore07","name":"Ithildin Ore","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1},{"itemId":649007,"className":"misc_ore08","name":"Annotation","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":775,"sellPrice":155,"minLevel":1},{"itemId":649008,"className":"misc_ore09","name":"Chromite","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1},{"itemId":649009,"className":"misc_ore10","name":"Phydecium","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":649010,"className":"misc_ore11","name":"Ferinium","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":649011,"className":"misc_ore12","name":"Portium","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":649012,"className":"misc_ore13","name":"Andesium","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":649013,"className":"misc_ore14","name":"Ionium","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":649014,"className":"misc_ore15","name":"Practonium","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":649015,"className":"misc_ore16","name":"Artilonium","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":649016,"className":"misc_ore17","name":"Absidium Ore","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":649017,"className":"misc_ore18","name":"Ominous Spirit Fragment","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":649018,"className":"misc_ore19","name":"Ominous Spirit Piece","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":649019,"className":"misc_ore20","name":"Ominous Spirit Mineral","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":649020,"className":"misc_ore21","name":"Ominous Spirit Crystal","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":649025,"className":"misc_ore22","name":"Nucle Powder","type":"Etc","group":"Material","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"minLevel":1},{"itemId":649026,"className":"misc_ore23","name":"Sierra Powder","type":"Etc","group":"Material","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"minLevel":1},{"itemId":649027,"className":"misc_ore24","name":"Pheltremin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":649028,"className":"misc_ore25","name":"Ulstermite","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":649029,"className":"misc_ore26","name":"Velcoffer Spirit Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":649030,"className":"misc_ore27","name":"Skiaclipse Feather","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"legend_skiaclips_piece"}},{"itemId":649031,"className":"misc_ore23_stone","name":"Sierra Stone","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1},{"itemId":649200,"className":"misc_jore01","name":"Amber","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":33,"sellPrice":6,"minLevel":1},{"itemId":649201,"className":"misc_jore02","name":"Fossilized Lizard Amber","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":5000,"sellPrice":1000,"minLevel":1},{"itemId":649202,"className":"misc_jore03","name":"Topaz","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":9570,"sellPrice":1914,"minLevel":1},{"itemId":649203,"className":"misc_jore04","name":"Opal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":12600,"sellPrice":2520,"minLevel":1},{"itemId":649204,"className":"misc_jore05","name":"Garnet","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":2375,"sellPrice":475,"minLevel":1},{"itemId":649205,"className":"misc_jore06","name":"Obsidian","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10600,"sellPrice":2120,"minLevel":1},{"itemId":649206,"className":"misc_jore07","name":"Peridot","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10600,"sellPrice":2120,"minLevel":1},{"itemId":649207,"className":"misc_jore08","name":"Zircon","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":4500,"sellPrice":900,"minLevel":1},{"itemId":649208,"className":"misc_jore09","name":"Pyrite","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":80,"sellPrice":16,"minLevel":1},{"itemId":649209,"className":"misc_jore10","name":"Bloodstone","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":41230,"sellPrice":8246,"minLevel":1},{"itemId":649210,"className":"misc_jore11","name":"Cryorite","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":80,"sellPrice":0,"minLevel":1},{"itemId":649211,"className":"misc_jore12","name":"Pyrostone","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":649212,"className":"misc_jore13","name":"Cryostone","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":649213,"className":"misc_jore14","name":"Pyranium","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":649214,"className":"misc_jore15","name":"Cryonium","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":2,"minLevel":1},{"itemId":649215,"className":"misc_jore16","name":"Diamond","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":95200,"sellPrice":19040,"minLevel":1},{"itemId":649216,"className":"misc_jore17","name":"Sapphire","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":39840,"sellPrice":7968,"minLevel":1},{"itemId":649217,"className":"misc_jore18","name":"Ruby","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":2375,"sellPrice":475,"minLevel":1},{"itemId":661014,"className":"STARTOWER_60_1_CANDLE","name":"Faded Starlight Crystal","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":661015,"className":"STARTOWER_60_1_STARSTORN_PIECE_ITEM","name":"Star Stone Crystal","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":661200,"className":"WTREES_21_1_SQ_6_ITEM_C","name":"Token of the Demon Treaty","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":661201,"className":"WTREES_21_1_SQ_8_ITEM_C","name":"Token of the Goddess' Treaty","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":661202,"className":"WTREES_21_1_SQ_10_ITEM_C","name":"Treaty Slate","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":661204,"className":"Collection_Base_KATYN12_HQ1","name":"Ring's Inscription","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":661205,"className":"Collection_Base_PRISON62_2_HQ1","name":"Hidden Silver Bar","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":662275,"className":"event1912_4thAnniversary_FireCracker_LV2","name":"[Event] New Year Firecracker","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT1912_4TH_BUFF1_RUN"}},{"itemId":662276,"className":"event1912_4thAnniversary_FireCracker_LV3","name":"[Event] New Year Together Firecracker","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT1912_4TH_BUFF2_RUN"}},{"itemId":662277,"className":"event19xmas_RoyalBox_Key_1","name":"[Event] Royal Christmas Key","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662278,"className":"event19xmas_Box_Key_1","name":"NA","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664800,"className":"RVR_BK_KEYITEM_URVAS_1","name":"Urbas Seal","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664801,"className":"RVR_BK_KEYITEM_EVENT_OPEN","name":"[Event] Urbas Seal","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664802,"className":"RVR_BK_MEDAL_BORUTOS_KAPAS_1","name":"Medal of Honor: Boruta","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666203,"className":"Point_Stone_100_Q","name":"Attribute Points: 100","type":"Quest","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":100}},{"itemId":667190,"className":"FD_STARTOWER762_EVENT2_ITEM","name":"Hazy Sphere","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667191,"className":"FD_STARTOWER762_STARSOUL","name":"Starlight Essence","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668137,"className":"CATACOMB_80_CRYSTAL","name":"Magic Stone Fragment","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":10,"sellPrice":10,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668141,"className":"CORAL_44_3_SQ_80_ITEM","name":"Demon Device Fragment","type":"Quest","group":"Material","weight":0,"maxStack":32767,"price":10,"sellPrice":10,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":680000,"className":"Dungeon_Key01","name":"Raid Portal Stone","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1},{"itemId":689001,"className":"Dungeon_Key02","name":"Legend Raid Portal Stone","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"SCR_Get_Legend_Raid_Key02_Arg"}},{"itemId":689003,"className":"Dungeon_Key04","name":"Res Sacrae Raid: Challenge One Entry Voucher","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1},{"itemId":689004,"className":"Dungeon_Key01_NoTrade","name":"Raid Portal Stone (Untradable)","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1},{"itemId":689005,"className":"Dungeon_Key02_NoTrade","name":"Legend Raid Portal Stone (Untradable)","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"Dungeon_Key01_NoTrade/10;GabijaCertificateCoin_215p/1;"}},{"itemId":700000,"className":"KQ_token_hethran_1","name":"Hethran Badge Lv1","type":"Consume","group":"Material","weight":1,"maxStack":1,"price":100,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_KQ_SELECT_LV_1"}},{"itemId":700001,"className":"KQ_token_hethran_2","name":"Hethran Badge Lv2","type":"Consume","group":"Material","weight":1,"maxStack":1,"price":100,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_KQ_SELECT_LV_2"}},{"itemId":700002,"className":"KQ_token_hethran_3","name":"Hethran Badge Lv3","type":"Consume","group":"Material","weight":1,"maxStack":1,"price":100,"sellPrice":2000,"minLevel":9999},{"itemId":700501,"className":"KQ_recipe_hethran_material_3_7","name":"Velghehunt Lv1","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_KQ_SELECT_100"}},{"itemId":700502,"className":"KQ_recipe_hethran_material_1_1","name":"Sadiefi Crystal Lv1","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_KQ_SELECT_100"}},{"itemId":700503,"className":"KQ_recipe_hethran_material_2_1","name":"Sadiefi Crystal Lv2","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_KQ_SELECT_100"}},{"itemId":700504,"className":"KQ_recipe_hethran_material_3_1","name":"Sadiefi Crystal Lv3","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_KQ_SELECT_100"}},{"itemId":700505,"className":"KQ_recipe_hethran_material_3_6","name":"Asaghatel Lv1","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_KQ_SELECT_100"}},{"itemId":700506,"className":"KQ_recipe_hethran_material_1_4","name":"Etenium Lv1","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_KQ_SELECT_100"}},{"itemId":700507,"className":"KQ_recipe_hethran_material_2_4","name":"Etenium Lv2","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_KQ_SELECT_100"}},{"itemId":700508,"className":"KQ_recipe_hethran_material_3_4","name":"Etenium Lv3","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_KQ_SELECT_100"}},{"itemId":700509,"className":"KQ_recipe_hethran_material_1_2","name":"Ounen Mineral Lv1","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_KQ_SELECT_100"}},{"itemId":700510,"className":"KQ_recipe_hethran_material_2_2","name":"Ounen Mineral Lv2","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_KQ_SELECT_100"}},{"itemId":700511,"className":"KQ_recipe_hethran_material_3_2","name":"Ounen Mineral Lv3","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_KQ_SELECT_100"}},{"itemId":700512,"className":"KQ_recipe_hethran_material_1_3","name":"Pharlam Fragment Lv1","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_KQ_SELECT_100"}},{"itemId":700513,"className":"KQ_recipe_hethran_material_2_3","name":"Pharlam Fragment Lv2","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_KQ_SELECT_100"}},{"itemId":700514,"className":"KQ_recipe_hethran_material_3_3","name":"Pharlam Fragment Lv3","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_KQ_SELECT_100"}},{"itemId":700515,"className":"KQ_recipe_hethran_material_2_5","name":"Plafeanpoe Lv1","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_KQ_SELECT_100"}},{"itemId":700516,"className":"KQ_recipe_hethran_material_3_5","name":"Plafeanpoe Lv2","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_KQ_SELECT_100"}},{"itemId":730900,"className":"Fish_Card","name":"Soaked Enhancement Card","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":810000,"className":"Companion_Exchange_Ticket","name":"Baby Pig Companion Voucher","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":810003,"className":"misc_gemExpStone_randomQuest4_Adv","name":"5-Star Gem Abrasive","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1},{"itemId":810006,"className":"Companion_Exchange_Ticket2","name":"Armadillo Companion Voucher","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":810007,"className":"Companion_Exchange_Ticket3","name":"Dodo Bird Companion Voucher","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":810008,"className":"Companion_Exchange_Ticket4","name":"Spotted Baby Pig Companion Voucher","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":860001,"className":"reputation_relief_ep13_all","name":"Relief Supply Bag","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":860002,"className":"reputation_relief_ep13_f_siauliai_1","name":"Relief Supply Bag - Lemprasa Pond","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":860003,"className":"reputation_relief_ep13_f_siauliai_2","name":"Relief Supply Bag - Woods of the Linked Bridges","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":860004,"className":"reputation_relief_ep13_f_siauliai_3","name":"Relief Supply Bag - Paupys Crossing","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":860005,"className":"reputation_relief_ep13_f_siauliai_4","name":"Relief Supply Bag - Issaugoti Forest","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":860006,"className":"reputation_relief_ep13_f_siauliai_5","name":"Relief Supply Bag - Kirtimas Forest","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":860007,"className":"reputation_relief_ep13_mini","name":"Relief Supply Pouch","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":860020,"className":"reputation_relief_housingcraft_reward_5p","name":"[Housing Workshop] Reputation Increase Voucher","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":869001,"className":"reputation_Coin","name":"Kingdom Reconstruction Coin","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"REPUTATION_COIN_USE","strArg":"REPUTATION_COIN_EP13"}},{"itemId":900113,"className":"Event_160818_1","name":"T","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900114,"className":"Event_160818_2","name":"REE","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900115,"className":"Event_160818_3","name":"O","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900116,"className":"Event_160818_4","name":"F","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900117,"className":"Event_160818_5","name":"S","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900118,"className":"Event_160818_6","name":"A","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900119,"className":"Event_160818_7","name":"VI","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900120,"className":"Event_160818_8","name":"OR","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900126,"className":"Event_160908_1","name":"Sesame","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900127,"className":"Event_160908_2","name":"Sugar","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900128,"className":"Event_160908_3","name":"Flour","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900129,"className":"Event_160908_4","name":"Chestnut","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900144,"className":"card_Xpupkit01_event","name":"Old Enhancement Card","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":1000,"minLevel":1},{"itemId":900159,"className":"Exp_Card_300_14d","name":"Enhancement Card: 300 (14 Days)","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900160,"className":"card_Xpupkit01_500_14d","name":"Enhancement Card: 500 (14 Days)","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":100,"sellPrice":2000,"minLevel":1},{"itemId":900161,"className":"card_Xpupkit01_500_14d_Team","name":"Enhancement Card: 500 (14 Days)","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":100,"sellPrice":2000,"minLevel":1},{"itemId":900200,"className":"Event_160913_1","name":"Root Essence","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1},{"itemId":900214,"className":"Event_Valen_Choco_1","name":"Valentine Chocolates","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900215,"className":"Event_Valen_Choco_m_1","name":"Cocoa Powder","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900216,"className":"Event_Valen_Choco_m_2","name":"Whipping Cream","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900217,"className":"Event_Valen_Choco_m_3","name":"Refined Sugar","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900218,"className":"Event_Valen_Choco_m_4","name":"Chocolate Mold","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900231,"className":"Event_WhiteDay_Candy_Set","name":"Candy Basket","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_RANDOMNUMBER"}},{"itemId":900301,"className":"Event_1704_misc_gemExpStone_randomQuest4","name":"[Re:Build] 5-Star Gem Abrasive","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":20,"minLevel":1},{"itemId":900302,"className":"Moru_Silver_Event_1704","name":"[Level Up Event] Silver Anvil","type":"Consume","group":"Material","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"SILVER","numArg1":3,"numArg2":3}},{"itemId":900340,"className":"Event_Steam_Wedding_Card","name":"Invitation","type":"Etc","group":"Material","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900408,"className":"Moru_Gold_EVENT_1710_NEWCHARACTER","name":"[Re:Build] Shining Golden Anvil","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":900424,"className":"EVENT_1811_NEWCHARACTER_REINFORCE11","name":"[Re:Build] Masinios Weapon +11 Enhancement Voucher","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900425,"className":"EVENT_1811_NEWCHARACTER_TRANSCEND5","name":"[Re:Build] Masinios Weapon +5 Transcendence Voucher","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902009,"className":"Event_Special_Etcitem","name":"Monster Energy","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902060,"className":"EVENT_1801_ORB_MISSION_KEY","name":"Blue Orb Dungeon Coin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":902071,"className":"EVENT_1802_NEWYEAR_GOLDCOIN","name":"Golden Dog Coin","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904000,"className":"EVENT_1802_MASTER_KEY1","name":"Master Trial Easy Level Voucher","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904001,"className":"EVENT_1802_MASTER_REWARD_PIECE","name":"Small Potential Fragment","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904003,"className":"EVENT_1802_MASTER_KEY2","name":"Master Trial Medium Level Voucher","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904004,"className":"EVENT_1802_MASTER_KEY3","name":"Master Trial High Level Voucher","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904005,"className":"EVENT_1802_MASTER_KEY4","name":"Master Trial Advanced Level Voucher","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904011,"className":"EVENT_1804_ARBOR_GROW_CRYSTAL_1_2","name":"Sapling Growth Crystal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904012,"className":"EVENT_1804_ARBOR_GROW_CRYSTAL_3_4","name":"Tree Growth Crystal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904013,"className":"EVENT_1804_ARBOR_GROW_CRYSTAL_5_6","name":"Leafy Tree Growth Crystal","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904021,"className":"Moru_Silver_Team_Trade","name":"Silver Anvil","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"SILVER","numArg1":3,"numArg2":3}},{"itemId":904026,"className":"misc_gemExpStone09_14d","name":"7 Star Gem Abrasive (14 Days)","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904029,"className":"EVENT_1805_WEDDING1_PIECE","name":"Lost Invitation Fragment","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904044,"className":"EVENT_1806_NUMBER_GAMES_HINT","name":"Hat Trick Clue","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904051,"className":"EVENT_1807_POOL_ICE","name":"[Summer Festa] Magic Ice Cube","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904071,"className":"EVENT_1807_RANK_STAR","name":"[Re:Build] Star Fragment","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904072,"className":"EVENT_1807_NEWCHARACTER_INVITE","name":"[Re:Build] Uska's Invitation","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904089,"className":"EVENT_1808_VIVID_POWDER","name":"[Event] Rainbow Dust","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904093,"className":"EVENT_1809_CHUSEOK_MOON_PIECE","name":"Full Moon Fragment","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904096,"className":"Extract_kit_Sliver_Team_14d","name":"Silver Ichor Extraction Kit (14 Days)","type":"Etc","group":"Material","weight":4,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Extract_kit_Sliver"}},{"itemId":904097,"className":"EVENT_1810_FALL_MAPLE_LEAF","name":"Large Autumn Leaf","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904098,"className":"EVENT_1810_FALL_GINKGO_LEAF","name":"Large Golden Leaf","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904109,"className":"EVENT_1811_KUPOLE_COIN","name":"[Re:Build] Commemoration Coins","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904110,"className":"Costume_Exchange_Coupon","name":"Class Tree Costume Exchange Voucher","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904146,"className":"EVENT_1903_TERIAVELIS_STONE","name":"[Event] Twinkling Star Piece","type":"Consume","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904153,"className":"EVENT_1905_VIVID_POWDER_1","name":"[Event] Easy Rainbow Powder","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904154,"className":"EVENT_1905_VIVID_POWDER_2","name":"[Event] Normal Rainbow Powder","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904155,"className":"EVENT_1905_VIVID_POWDER_3","name":"[Event] Hard Rainbow Powder","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904166,"className":"EVENT_1906_SUMMER_FESTA_COIN","name":"[Event] Vasalos Coin","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904178,"className":"EVENT_190919_ANCIENT_COIN","name":"[Event] Ancient Coin","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904191,"className":"event1909_fullmoon_coin","name":"[Event] Full Moon Fragment","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904220,"className":"Event_card_Xpupkit10_Team_14d","name":"Lv. 10 Enhancement Card (14 Days)","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904221,"className":"Event_gemExpStone09_Team_14d","name":"7 Star Gem Abrasive (14 Days)","type":"Etc","group":"Material","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904226,"className":"EVENT_HALLOWEENCANDY_1","name":"Sweet Treat","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"EVENT_1910_HALLOWEEN"}},{"itemId":904239,"className":"event1912_4thAnniversary_Coin","name":"[Event] New Year Coin","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904240,"className":"event1912_TP_feather","name":"NA","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904241,"className":"event1912_TP_wing","name":"NA","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904242,"className":"item_event_2020_luckyticket","name":"[Event] Lucky Ticket","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904243,"className":"item_event_2020_goldenticket","name":"[Event] Golden Lucky Ticket.","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904244,"className":"item_event_2020_ticket","name":"[Event] Exchange Voucher","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904274,"className":"Event_Roulette_Coin","name":"[Event] Goddess’ Roulette Coin","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1},{"itemId":904284,"className":"EVENT_SEASON_NewWorld_COIN_1","name":"[Event] Settlement Coin","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1},{"itemId":910002,"className":"Default_Sprout","name":"Sprout","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":5,"sellPrice":1,"minLevel":1},{"itemId":910003,"className":"Default_Deadplants","name":"Withered Plant","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":5,"sellPrice":1,"minLevel":1},{"itemId":910004,"className":"Zombie_Capsule","name":"Zombie Capsule","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":300,"sellPrice":5,"minLevel":1},{"itemId":1420041,"className":"Ancient_CardBook_Choice","name":"Assister Card Album : Select","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ANCIENT_CARDBOOK","strArg":"reward_ancient/reward_type1","numArg1":1}},{"itemId":1420042,"className":"Ancient_CardBook_ALL","name":"Assister Card Album","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ANCIENT_CARDBOOK","strArg":"reward_ancient/reward_type1","numArg1":5}},{"itemId":1420047,"className":"Ancient_CardBook_Choice_Unique","name":"Assister Card Album: Unique","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ANCIENT_CARDBOOK","strArg":"reward_ancient/reward_type3","numArg1":1}},{"itemId":2000005,"className":"GLOBAL_HiddenAbility_MasterPiece","name":"Unidentified Mystic Tome Page","type":"Consume","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"HiddenAbility_MasterPiece"}},{"itemId":2010001,"className":"HiddenAbility_Piece","name":"Mystic Tome Page","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"HiddenAbility_Piece_Recipe"}},{"itemId":2010002,"className":"HiddenAbility_MasterPiece","name":"[Reward] Unidentified Mystic Tome","type":"Consume","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"HiddenAbility_MasterPiece"}},{"itemId":2010003,"className":"HiddenAbility_MasterPiece_Novice","name":"[Episode] Unidentified Mystic Tome","type":"Consume","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"HiddenAbility_MasterPiece_Novice"}},{"itemId":2010004,"className":"HiddenAbility_MasterPiece_Event","name":"[Event] Unidentified Mystic Tome","type":"Consume","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"HiddenAbility_MasterPiece"}},{"itemId":2010005,"className":"HiddenAbility_MasterPiece_Fragment","name":"Mystic Tome","type":"Etc","group":"Material","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"HiddenAbility_MasterPiece_Fragment"}},{"itemId":6430585,"className":"Moru_Ruby_noCharge","name":"Shining Ruby Anvil","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10000000,"className":"event_2002_Fishing_Coin","name":"[Event]Lost Coin","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000001,"className":"EVENT_2002_Red_Fish","name":"[Event] Red Fish","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"Fishing","minLevel":1},{"itemId":10000007,"className":"WhiteDay_Candy_Card","name":"[Lovely Rolly Polly] Candy Card","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000008,"className":"WhiteDay_Hart_Card","name":"[Lovely Rolly Polly] Heart Card","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000014,"className":"Event_Roulette_Coin_2","name":"[Event] Goddess’ Roulette Coin","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000015,"className":"Event_Popo_Coin","name":"[Event] Popolion Badge","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000020,"className":"EVENT_2005_Shining_stone","name":"[Event] Sparkling Jewel ","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000021,"className":"EVENT_2005_Normal_stone","name":"[Event] Plain Jewel","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000022,"className":"EVENT_2006_POOL_ICE","name":"[SummerFesta] Magic Ice Cube","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000023,"className":"EVENT_2006_ticket","name":"[SummerFesta] Food Voucher","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000024,"className":"EVENT_2006_Fish","name":"[Event] Watermelon Fish","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000028,"className":"EVENT_Flex_Gold_Moneybag","name":"[Event] FLEX Pouch","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000052,"className":"Event_gemExpStone09_1","name":"[FLEX BOX] 7-Star Gem Abrasive","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000053,"className":"Event_gemExpStone09_2","name":"[Goddess' Roulette] 7-Star Gem Abrasive","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000054,"className":"Event_gemExpStone09_3","name":"[Event] 7-Star Gem Abrasive","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000074,"className":"Event_2007_Lucky_ticket","name":"[Event] Lucky Ticket","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000075,"className":"EVENT_2006_Fish_Yellow","name":"[Event] Yellow Watermelon Fish","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000076,"className":"EVENT_2007_MATSURI_TICKET","name":"[Event] Matsuri Ticket","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000099,"className":"Event_2008_Master_Badge","name":"[Event] Master Badge","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000100,"className":"Event_2008_Master_Vote_86","name":"[Event] Voting Ticket","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000110,"className":"EVENT_2008_OBON_RICE","name":"[Lantern] Sticky Rice","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000126,"className":"Event_2009_Moon_Coin","name":"[Event] Full Moon Coin","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000134,"className":"misc_EVENT_2010_Halloween","name":"[Event] Halloween Specialty Candy","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000135,"className":"EVENT_2010_Halloween_Costume_Ticket","name":"Permanent Costume Exchange Voucher","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000137,"className":"Event_LevelUP_Jewel","name":"[Event] Growth Gem","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000152,"className":"EVENT_2010_Yuja_Fish","name":"[Event] Citron Fish","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000201,"className":"misc_gemExpStone10_Ev_200","name":"[1st Anniversary] 8-Star Gem Abrasive","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000215,"className":"misc_gemExpStone10_Ev2","name":"[Yak Mambo] 8-Star Gem Abrasive ","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000217,"className":"misc_gemExpStone12_Ev1","name":"[Yak Mambo] Lv.10 Gem Abrasive ","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000389,"className":"Event_gemExpStone09_13","name":"[FLEX BOX] 7-Star Gem Abrasive","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000398,"className":"Event_gemExpStone09_205","name":"[Attendance] 7-Star Gem Abrasive","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000613,"className":"Event_2207_Unity","name":"[Harmony] Harmony Coin","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000623,"className":"Event_2212_Snow_Key","name":"[Event] Snowflake Key","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":300,"sellPrice":5,"equipType1":"None","minLevel":1},{"itemId":10000627,"className":"Tos_Event_Coin","name":"QUEST_20230308_014641","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":1,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"EVENT_TOS_WHOLE_TOTAL_COIN","numArg1":1}},{"itemId":10003005,"className":"Event_2003_WhiteDay_Candy_Set","name":"Kedora Candy Set","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10003044,"className":"Moru_Evnet_Bamboo_Leaf","name":"[Event] Bamboo Leaves Anvil","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10003174,"className":"card_Xpupkit10_Event_1","name":"[Attendance] Lv.10 Enhancement Card","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10003229,"className":"card_Xpupkit10_Event_3","name":"[Fishing] Lv 10 Enhancement Card","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10003432,"className":"card_Xpupkit10_Event_205","name":"[Attendance] Lv.10 Enhancement Card","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10003547,"className":"card_Xpupkit10_Achieve_1","name":"[Event] Lv 10 Enhancement Card","type":"Etc","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10003571,"className":"Event_Roulette_Coin_3","name":"[Event] Goddess’ Roulette Coin","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10003581,"className":"Event_Roulette_Coin_4","name":"[Event] Goddess’ Costume Roulette Ticket","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10007001,"className":"Event_2011_Fish","name":"[Event] Autumn Sardine","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"Fishing","minLevel":1},{"itemId":10007002,"className":"Event_2011_Fish2","name":"[Event] Needlefish","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"Fishing","minLevel":1},{"itemId":10007005,"className":"Event_2107_Fish","name":"[Event] Golden Fish","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"Fishing","minLevel":1},{"itemId":10010000,"className":"Moru_Ruby_event","name":"[Event] Ruby Anvil","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010003,"className":"Extract_kit_Gold_Team_3","name":"[Goddess' Roulette] Golden Ichor Extraction Kit","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":10010004,"className":"Extract_kit_Sliver_Team_1","name":"[TOSventure] Silver Ichor Extraction Kit","type":"Etc","group":"Material","weight":4,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Sliver"}},{"itemId":10010005,"className":"Extract_kit_Sliver_Team_2","name":"[FLEX BOX] Silver Ichor Extraction Kit","type":"Etc","group":"Material","weight":4,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Sliver"}},{"itemId":10010006,"className":"Extract_kit_Sliver_Team_3","name":"[Lucky Ticket] Silver Ichor Extraction Kit","type":"Etc","group":"Material","weight":4,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Sliver"}},{"itemId":10010007,"className":"Moru_Ruby_event_2","name":"[Event] Ruby Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010008,"className":"Moru_Ruby_event_3","name":"[Event] Ruby Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010009,"className":"Moru_Ruby_event_4","name":"[Event] Ruby Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010013,"className":"Moru_Event_Silver_1","name":"[FLEX BOX] Silver Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"SILVER","numArg1":3,"numArg2":3}},{"itemId":10010014,"className":"Moru_Event_Silver_2","name":"[Lucky Ticket] Silver Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"SILVER","numArg1":3,"numArg2":3}},{"itemId":10010015,"className":"Moru_Event_Silver_3","name":"[Goddess' Roulette] Silver Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"SILVER","numArg1":3,"numArg2":3}},{"itemId":10010016,"className":"Moru_Event_Gold_1","name":"[FLEX BOX] Gold Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010017,"className":"Moru_Event_Gold_2","name":"[Goddess' Roulette] Golden Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010020,"className":"Extract_kit_Gold_Team_5","name":"[Your Master] Golden Ichor Extraction Kit","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":10010022,"className":"Extract_kit_Sliver_Team_4","name":"[Stamp Tour] Silver Ichor Extraction Kit","type":"Etc","group":"Material","weight":4,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Sliver"}},{"itemId":10010023,"className":"Extract_kit_Sliver_Team_5","name":"[Goddess' Roulette] Silver Ichor Extraction Kit","type":"Etc","group":"Material","weight":4,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Sliver"}},{"itemId":10010024,"className":"Extract_kit_Sliver_Team_6","name":"[Your Master] Silver Ichor Extraction Kit","type":"Etc","group":"Material","weight":4,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Sliver"}},{"itemId":10010025,"className":"Moru_Event_Silver_4","name":"[Your Master] Silver Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"SILVER","numArg1":3,"numArg2":3}},{"itemId":10010026,"className":"Moru_Event_Gold_4","name":"[Event] Golden Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010027,"className":"Moru_Event_Silver_5","name":"[Event] Silver Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"SILVER","numArg1":3,"numArg2":3}},{"itemId":10010028,"className":"Moru_Event_Gold_5","name":"[Full Moon] Golden Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010029,"className":"Extract_kit_Sliver_Team_7","name":"[Full Moon] Silver Ichor Extraction Kit","type":"Etc","group":"Material","weight":4,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Sliver"}},{"itemId":10010030,"className":"Extract_kit_Gold_Team_7","name":"[Full Moon] Golden Ichor Extraction Kit","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":10010031,"className":"Moru_Ruby_event_5","name":"[Full Moon] Ruby Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010032,"className":"Moru_Ruby_event_6","name":"[Harvest] Ruby Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010033,"className":"Moru_Ruby_event_7","name":"[Your Master] Ruby Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010034,"className":"Moru_Ruby_event_8","name":"[EP12-2] Ruby Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010035,"className":"Extract_kit_Gold_Team_200","name":"[Halloween] Golden Ichor Extraction Kit","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":10010036,"className":"Extract_kit_Sliver_Team_200","name":"[Halloween] Silver Ichor Extraction Kit","type":"Etc","group":"Material","weight":4,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Sliver"}},{"itemId":10010037,"className":"Moru_Event_Silver_200","name":"[Halloween] Silver Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"SILVER","numArg1":3,"numArg2":3}},{"itemId":10010038,"className":"Moru_Event_Gold_200","name":"[Halloween] Golden Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010039,"className":"Moru_Ruby_event_200","name":"[Halloween] Ruby Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010041,"className":"Moru_Event_Gold_6","name":"[Growth Support] Golden Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010042,"className":"Moru_Ruby_event_9","name":"[Growth Support] Ruby Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010043,"className":"Extract_kit_Sliver_Team_8","name":"[Growth Support] Silver Ichor Extraction Kit","type":"Etc","group":"Material","weight":4,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Sliver"}},{"itemId":10010044,"className":"Moru_Event_Gold_7","name":"[Attendance] Golden Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010045,"className":"Moru_Ruby_event_10","name":"[Attendance] Ruby Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010046,"className":"Extract_kit_Gold_Team_8","name":"[Attendance] Golden Ichor Extraction Kit","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":10010047,"className":"Moru_Ruby_event_11","name":"[Giltine] Ruby Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010052,"className":"Moru_Ruby_event_13","name":"[Fishing] Ruby Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010053,"className":"Extract_kit_Gold_Team_10","name":"[Fishing] Golden Ichor Extraction Kit","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":10010054,"className":"Moru_Event_Gold_201","name":"[Attendance] Golden Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010055,"className":"Moru_Ruby_event_201","name":"[Attendance] Ruby Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010056,"className":"Extract_kit_Gold_Team_201","name":"[Attendance] Golden Ichor Extraction Kit","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":10010057,"className":"Moru_Ruby_event_202","name":"[Harvest] Ruby Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010058,"className":"Moru_Event_Gold_202","name":"[1st Anniversary] Golden Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010059,"className":"Moru_Ruby_event_203","name":"[1st Anniversary] Ruby Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010060,"className":"Extract_kit_Gold_Team_202","name":"[1st Anniversary] Golden Ichor Extraction Kit","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":10010061,"className":"Moru_Ruby_event_14","name":"[Yak Mambo] Ruby Anvil ","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010062,"className":"Moru_Event_Gold_9","name":"[Yak Mambo] Golden Anvil ","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010063,"className":"Extract_kit_Sliver_Team_9","name":"[Yak Mambo] Silver Ichor Extraction Kit ","type":"Etc","group":"Material","weight":4,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Sliver"}},{"itemId":10010064,"className":"Extract_kit_Gold_Team_11","name":"[Yak Mambo] Golden Ichor Extraction Kit ","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":10010065,"className":"Moru_Ruby_event_204","name":"[Maru] Ruby Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010066,"className":"Moru_Ruby_event_15","name":"[EP.13] Ruby Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010083,"className":"Moru_Event_Silver_6","name":"[Lucky Break] Lucky Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10010105,"className":"Moru_Event_Silver_7","name":"[FLEX BOX] Silver Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"SILVER","numArg1":3,"numArg2":3}},{"itemId":10010106,"className":"Moru_Event_Gold_205","name":"[Attendance] Golden Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010107,"className":"Moru_Ruby_event_205","name":"[Attendance] Ruby Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010108,"className":"Extract_kit_Gold_Team_205","name":"[Attendance] Golden Ichor Extraction Kit","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":10010109,"className":"Moru_Event_Gold_206","name":"[Watermelon Fishing] Golden Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010110,"className":"Moru_Ruby_event_206","name":"[Watermelon Fishing] Ruby Anvil","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"unique_gold_Moru","numArg1":3,"numArg2":3}},{"itemId":10010111,"className":"Extract_kit_Gold_Team_206","name":"[Watermelon Fishing] Golden Ichor Extraction Kit","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Extract_kit_Gold"}},{"itemId":10010114,"className":"misc_reinforce_percentUp_460_Event_32","name":"[Relic] [Lv.460] Enhance Aid","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"reinforce_percentUp","numArg1":460}},{"itemId":10010115,"className":"misc_Enchant_460_Event_32","name":"[Relic] [Lv.460] Goddess Enchant Jewel","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Enchant","numArg1":460}},{"itemId":10010116,"className":"misc_Engrave_460_NoTrade_Event_32","name":"[Relic] [Lv.460] Engrave Stone","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Engrave","numArg1":460,"numArg2":5}},{"itemId":10010123,"className":"misc_reinforce_percentUp_460_Event_33","name":"[Rabbit] [Lv.460] Enhance Aid","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"reinforce_percentUp","numArg1":460}},{"itemId":10010124,"className":"misc_Enchant_460_Event_33","name":"[Rabbit] [Lv.460] Goddess Enchant Jewel","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Enchant","numArg1":460}},{"itemId":10010125,"className":"misc_Engrave_460_NoTrade_Event_33","name":"[Rabbit] [Lv.460] Engrave Stone","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Engrave","numArg1":460,"numArg2":5}},{"itemId":10010129,"className":"misc_reinforce_percentUp_460_Event_34","name":"[Halloween] [Lv.460] Enhance Aid","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"reinforce_percentUp","numArg1":460}},{"itemId":10010130,"className":"misc_Enchant_460_Event_34","name":"[Halloween] [Lv.460] Goddess Enchant Jewel","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Enchant","numArg1":460}},{"itemId":10010131,"className":"misc_Engrave_460_NoTrade_Event_34","name":"[Halloween] [Lv.460] Engrave Stone","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Engrave","numArg1":460,"numArg2":5}},{"itemId":10010136,"className":"misc_reinforce_percentUp_460_Event_37","name":"[Toasty] [Lv.460] Enhance Aid","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"reinforce_percentUp","numArg1":460}},{"itemId":10010137,"className":"misc_Enchant_460_Event_37","name":"[Toasty] [Lv.460] Goddess Enchant Jewel","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Enchant","numArg1":460}},{"itemId":10010138,"className":"misc_Engrave_460_NoTrade_Event_37","name":"[Toasty] [Lv.460] Engrave Stone","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Engrave","numArg1":460,"numArg2":5}},{"itemId":10010141,"className":"misc_reinforce_percentUp_460_Event_38","name":"[Stamp] [Lv.460] Enhance Aid","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"reinforce_percentUp","numArg1":460}},{"itemId":10010142,"className":"misc_Enchant_460_Event_38","name":"[Stamp] [Lv.460] Goddess Enchant Jewel","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Enchant","numArg1":460}},{"itemId":10010143,"className":"misc_Engrave_460_NoTrade_Event_38","name":"[Stamp] [Lv.460] Engrave Stone","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Engrave","numArg1":460,"numArg2":5}},{"itemId":10010146,"className":"misc_reinforce_percentUp_460_Event_39","name":"[6th] [Lv.460] Enhance Aid","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"reinforce_percentUp","numArg1":460}},{"itemId":10010147,"className":"misc_Enchant_460_Event_39","name":"[6th] [Lv.460] Goddess Enchant Jewel","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Enchant","numArg1":460}},{"itemId":10010148,"className":"misc_Engrave_460_NoTrade_Event_39","name":"[6th] [Lv.460] Engrave Stone","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Engrave","numArg1":460,"numArg2":5}},{"itemId":10010151,"className":"misc_reinforce_percentUp_460_Event_41","name":"[Berk's Visit] [Lv.460] Enhance Aid","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"reinforce_percentUp","numArg1":460}},{"itemId":10010152,"className":"misc_Enchant_460_Event_41","name":"[Berk's Visit] [Lv.460] Goddess Enchant Jewel","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Enchant","numArg1":460}},{"itemId":10010153,"className":"misc_Engrave_460_NoTrade_Event_41","name":"[Berk's Visit] [Lv.460] Engrave Stone","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Engrave","numArg1":460,"numArg2":5}},{"itemId":10021005,"className":"Tuto_Extract_kit_silver_Team","name":"[Tutorial] Silver Ichor Extraction Kit","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Tuto_Extract_kit_silver_Team"}},{"itemId":10021006,"className":"Tuto_Extract_kit_Gold_Team","name":"[Tutorial] Golden Ichor Free Extraction Kit","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Tuto_Extract_kit_Gold_Team"}},{"itemId":10600012,"className":"Event_Sandra_Glass_3","name":"[Goddess' Roulette] Sandra's Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":10600018,"className":"Event_Mystic_Glass_3","name":"[Goddess' Roulette] Mysterious Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass"}},{"itemId":10600021,"className":"Event_Master_Glass_3","name":"[Goddess' Roulette] Artisan Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":10600022,"className":"Event_awakeningStone_1","name":"[FLEX BOX] Premium Awakening Stone","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10600023,"className":"Event_awakeningStone_2","name":"[Lucky Ticket] Premium Awakening Stone","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10600024,"className":"Event_awakeningStone_3","name":"[Goddess' Roulette] Premium Awakening Stone","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10600029,"className":"Event_Sandra_Glass_1line_5","name":"[Goddess' Roulette] Sandra's Detailed Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600033,"className":"Event_awakeningStone_4","name":"[Your Master] Premium Awakening Stone","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10600034,"className":"Event_Sandra_Glass_4","name":"[Event] Sandra's Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":10600035,"className":"Event_Sandra_Glass_1line_7","name":"[Event] Sandra's Detailed Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600037,"className":"Event_awakeningStone_5","name":"[Event] Premium Awakening Stone","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10600038,"className":"Event_Master_Glass_5","name":"[Event] Artisan Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":10600039,"className":"Event_Mystic_Glass_5","name":"[Event] Mysterious Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass"}},{"itemId":10600040,"className":"Event_Mystic_Glass_6","name":"[Full Moon] Mysterious Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass"}},{"itemId":10600041,"className":"Event_Master_Glass_6","name":"[Full Moon] Artisan Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":10600043,"className":"Event_awakeningStone_6","name":"[Full Moon] Premium Awakening Stone","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10600044,"className":"Event_Sandra_Glass_1line_8","name":"[Full Moon] Sandra's Detailed Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600047,"className":"Event_Sandra_Glass_200","name":"[Halloween] Sandra's Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":10600048,"className":"Event_Master_Glass_200","name":"[Halloween] Artisan Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":10600050,"className":"Event_awakeningStone_200","name":"[Halloween] Premium Awakening Stone","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10600051,"className":"Event_Sandra_Glass_1line_200","name":"[Halloween] Sandra's Detailed Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600052,"className":"Event_Mystic_Glass_7","name":"[Growth Support] Mysterious Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass"}},{"itemId":10600053,"className":"Event_Master_Glass_7","name":"[Growth Support] Artisan Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":10600054,"className":"Event_Sandra_Glass_1line_9","name":"[Growth Support] Sandra's Detailed Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600055,"className":"Event_Sandra_Glass_5","name":"[Growth Support] Sandra's Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":10600057,"className":"Event_awakeningStone_7","name":"[Growth Support] Premium Awakening Stone","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10600058,"className":"Event_Sandra_Glass_6","name":"[Attendance] Sandra's Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":10600059,"className":"Event_Sandra_Glass_1line_10","name":"[Attendance] Sandra's Detailed Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600060,"className":"Event_awakeningStone_8","name":"[Attendance] Premium Awakening Stone","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10600061,"className":"Event_Mystic_Glass_8","name":"[Attendance] Mysterious Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass"}},{"itemId":10600062,"className":"Event_Master_Glass_8","name":"[Attendance] Artisan Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":10600067,"className":"Event_Mystic_Glass_9","name":"[5th Anniversary] Mysterious Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass"}},{"itemId":10600068,"className":"Event_Sandra_Glass_7","name":"[5th Anniversary] Sandra's Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":10600069,"className":"Event_awakeningStone_9","name":"[5th Anniversary] Premium Awakening Stone","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10600070,"className":"Event_Sandra_Glass_1line_11","name":"[5th Anniversary] Sandra's Detailed Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600073,"className":"Event_Sandra_Glass_1line_201","name":"[Attendance] Sandra's Detailed Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600074,"className":"Event_awakeningStone_201","name":"[Attendance] Premium Awakening Stone","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10600075,"className":"Event_Master_Glass_201","name":"[Attendance] Artisan Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":10600077,"className":"Event_Sandra_Glass_1line_13","name":"[Fishing] Sandra's Detailed Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600078,"className":"Event_Sandra_Glass_201","name":"[Harvest] Sandra's Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":10600080,"className":"Event_Sandra_Glass_1line_202","name":"[1st Anniversary] Sandra's Detailed Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600081,"className":"Event_awakeningStone_202","name":"[1st Anniversary] Premium Awakening Stone","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10600082,"className":"Event_Master_Glass_202","name":"[1st Anniversary] Artisan Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":10600084,"className":"Event_Sandra_Glass_202","name":"[1st Anniversary] Sandra's Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":10600085,"className":"Event_Sandra_Glass_1line_14","name":"[Yak Mambo] Sandra's Detailed Magnifier ","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600086,"className":"Event_Sandra_Glass_8","name":"[Yak Mambo] Sandra's Magnifier ","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":10600088,"className":"Event_Sandra_Glass_203","name":"[Maru] Sandra's Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":10600147,"className":"Event_Mystic_Glass_20","name":"[Goddess Mask] Mysterious Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass"}},{"itemId":10600148,"className":"Event_Master_Glass_20","name":"[Goddess Mask] Artisan Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":10600155,"className":"Event_Sandra_Glass_205","name":"[Attendance] Sandra's Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":10600156,"className":"Event_Sandra_Glass_1line_205","name":"[Attendance] Sandra's Detailed Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600157,"className":"Event_awakeningStone_205","name":"[Attendance] Premium Awakening Stone","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10600158,"className":"Event_Mystic_Glass_205","name":"[Attendance] Mysterious Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass"}},{"itemId":10600159,"className":"Event_Master_Glass_205","name":"[Attendance] Artisan Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":10600167,"className":"Event_Sandra_Glass_206","name":"[Watermelon Fishing] Sandra's Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":10600169,"className":"Premium_Mystic_Glass_28","name":"[Gold Fishing] [Lv.460] Mysterious Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass","numArg1":460}},{"itemId":10600170,"className":"Premium_Master_Glass_28","name":"[Gold Fishing] [Lv.460] Artisan Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass","numArg1":460}},{"itemId":10600171,"className":"Premium_Sandra_Glass_28","name":"[Gold Fishing] [Lv.460] Sandra's Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass","numArg1":460}},{"itemId":10600172,"className":"Premium_Sandra_Glass_1line_28","name":"[Gold Fishing] [Lv.460] Sandra's Detailed Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line","numArg1":460}},{"itemId":10600173,"className":"Premium_Mystic_Glass_32","name":"[Relic] [Lv.460] Mysterious Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass","numArg1":460}},{"itemId":10600174,"className":"Premium_Master_Glass_32","name":"[Relic] [Lv.460] Artisan Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass","numArg1":460}},{"itemId":10600175,"className":"Premium_Sandra_Glass_32","name":"[Relic] [Lv.460] Sandra's Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass","numArg1":460}},{"itemId":10600176,"className":"Premium_Sandra_Glass_1line_32","name":"[Relic] [Lv.460] Sandra's Detailed Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line","numArg1":460}},{"itemId":10600177,"className":"Premium_Mystic_Glass_33","name":"[Rabbit] [Lv.460] Mysterious Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass","numArg1":460}},{"itemId":10600178,"className":"Premium_Master_Glass_33","name":"[Rabbit] [Lv.460] Artisan Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass","numArg1":460}},{"itemId":10600179,"className":"Premium_Sandra_Glass_33","name":"[Rabbit] [Lv.460] Sandra's Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass","numArg1":460}},{"itemId":10600180,"className":"Premium_Sandra_Glass_1line_33","name":"[Rabbit] [Lv.460] Sandra's Detailed Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line","numArg1":460}},{"itemId":10600183,"className":"Event_awakeningStone_33","name":"[Rabbit] Premium Awakening Stone","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10600186,"className":"Premium_Mystic_Glass_34","name":"[Halloween] [Lv.460] Mysterious Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass","numArg1":460}},{"itemId":10600187,"className":"Premium_Master_Glass_34","name":"[Halloween] [Lv.460] Artisan Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass","numArg1":460}},{"itemId":10600188,"className":"Premium_Sandra_Glass_34","name":"[Halloween] [Lv.460] Sandra's Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass","numArg1":460}},{"itemId":10600189,"className":"Premium_Sandra_Glass_1line_34","name":"[Halloween] [Lv.460] Sandra's Detailed Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line","numArg1":460}},{"itemId":10600191,"className":"Premium_Mystic_Glass_37","name":"[Toasty] [Lv.460] Mysterious Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass","numArg1":460}},{"itemId":10600192,"className":"Premium_Master_Glass_37","name":"[Toasty] [Lv.460] Artisan Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass","numArg1":460}},{"itemId":10600193,"className":"Premium_Sandra_Glass_37","name":"[Toasty] [Lv.460] Sandra's Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass","numArg1":460}},{"itemId":10600194,"className":"Premium_Sandra_Glass_1line_37","name":"[Toasty] [Lv.460] Sandra's Detailed Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line","numArg1":460}},{"itemId":10600195,"className":"Premium_Mystic_Glass_Achieve_1","name":"[Event] [Lv.460] Mysterious Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass","numArg1":460}},{"itemId":10600196,"className":"Premium_Master_Glass_Achieve_1","name":"[Event] [Lv.460] Artisan Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass","numArg1":460}},{"itemId":10600197,"className":"Premium_Sandra_Glass_Achieve_1","name":"[Event] [Lv.460] Sandra's Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass","numArg1":460}},{"itemId":10600198,"className":"Premium_Sandra_Glass_1line_Achieve_1","name":"[Event] [Lv.460] Sandra's Detailed Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line","numArg1":460}},{"itemId":10600200,"className":"Premium_Sandra_Glass_38","name":"[Stamp] [Lv.460] Sandra's Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass","numArg1":460}},{"itemId":10600201,"className":"Premium_Sandra_Glass_1line_38","name":"[Stamp] [Lv.460] Sandra's Detailed Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line","numArg1":460}},{"itemId":10600202,"className":"Premium_Sandra_Glass_39","name":"[6th] [Lv.460] Sandra's Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass","numArg1":460}},{"itemId":10600203,"className":"Premium_Sandra_Glass_1line_39","name":"[6th] [Lv.460] Sandra's Detailed Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line","numArg1":460}},{"itemId":10600204,"className":"Premium_Master_Glass_39","name":"[6th] [Lv.460] Artisan Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass","numArg1":460}},{"itemId":10600205,"className":"Premium_Mystic_Glass_39","name":"[6th] [Lv.460] Mysterious Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass","numArg1":460}},{"itemId":10600207,"className":"Event_awakeningStone_39","name":"[6th] Premium Awakening Stone","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10600209,"className":"GrewUp_Achieve_Sandra_Glass_1","name":"[Achievement] Sandra's Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass","numArg1":460}},{"itemId":10600210,"className":"GrewUp_Achieve_Sandra_Glass_1line_1","name":"[Achievement] Sandra's Detailed Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line","numArg1":460}},{"itemId":10600211,"className":"Premium_Sandra_Glass_41","name":"[Berk's Visit] [Lv.460] Sandra's Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass","numArg1":460}},{"itemId":10600212,"className":"Premium_Sandra_Glass_1line_41","name":"[Berk's Visit] [Lv.460] Sandra's Detailed Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line","numArg1":460}},{"itemId":10600213,"className":"Premium_Master_Glass_41","name":"[Berk's Visit] [Lv.460] Artisan Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass","numArg1":460}},{"itemId":10600214,"className":"Premium_Mystic_Glass_41","name":"[Berk's Visit] [Lv.460] Mysterious Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass","numArg1":460}},{"itemId":11030031,"className":"misc_darkiron","name":"Dark Steel","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":1000000,"sellPrice":100000,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030032,"className":"what_1","name":"What's This 1","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Legenda"}},{"itemId":11030034,"className":"what_2","name":"What's This 2","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Luciferi"}},{"itemId":11030137,"className":"misc_Enchant_460","name":"[Lv.460] Goddess Enchant Jewel","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030138,"className":"misc_Premium_reinforce_percentUp_460","name":"Premium Enhance Aid","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"reinforce_premium_percentUp","numArg1":460}},{"itemId":11030139,"className":"misc_reinforce_percentUp_460","name":"[Lv.460] Enhance Aid","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030140,"className":"misc_Ether_Gem_Socket_460","name":"[Lv.460] Aether Gem Socket Key","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030141,"className":"misc_Ether_Gem_Socket_460_NoTrade","name":"[Lv.460] Aether Gem Socket Key (Untradable)","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Ether_Gem_Socket","numArg1":460}},{"itemId":11030142,"className":"misc_Ether_Gem_Socket_460_NoTrade_recipe","name":"[Lv.460] Aether Gem Socket Key (Untradable) Recipe","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_ETHER_GEM_SOCKET_OPEN_MISC","strArg":"misc_vasilisa_NoTrade/misc_Ether_Gem_Socket_460_NoTrade/1","numArg1":3}},{"itemId":11030172,"className":"misc_Engrave_460","name":"[Lv.460] Engrave Stone","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030173,"className":"misc_Engrave_460_NoTrade","name":"[Lv.460] Engrave Stone (Untradable)","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Engrave","numArg1":460,"numArg2":5}},{"itemId":11030175,"className":"misc_Enchant_460_NoTrade","name":"[Lv.460] Goddess Enchant Jewel (Untradable)","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Enchant","numArg1":460}},{"itemId":11030177,"className":"misc_reinforce_percentUp_460_NoTrade","name":"[Lv.460] Enhance Aid (Untradable)","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"reinforce_percentUp","numArg1":460}},{"itemId":11030184,"className":"misc_Evolve_misc_460","name":"[Lv.460] Evolution Stone","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Evolve"}},{"itemId":11030185,"className":"misc_Evolve_misc_460_NoTrade","name":"[Lv.460] Evolution Stone (Untradable)","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Evolve","numArg1":460,"numArg2":5}},{"itemId":11030189,"className":"Premium_Mystic_Glass_460","name":"[Lv.460] Mysterious Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Mystic_Glass","numArg1":460}},{"itemId":11030190,"className":"Premium_Master_Glass_460","name":"[Lv.460] Artisan Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Master_Glass","numArg1":460}},{"itemId":11030191,"className":"Premium_Sandra_Glass_460","name":"[Lv.460] Sandra's Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sandra_Glass","numArg1":460}},{"itemId":11030192,"className":"Premium_Sandra_Glass_1line_460","name":"[Lv.460] Sandra's Detailed Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line","numArg1":460}},{"itemId":11030193,"className":"Premium_Mystic_Glass_460_NoTrade","name":"[Lv.460] Mysterious Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Mystic_Glass","numArg1":460}},{"itemId":11030194,"className":"Premium_Master_Glass_460_NoTrade","name":"[Lv.460] Artisan Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Master_Glass","numArg1":460}},{"itemId":11030195,"className":"Premium_Sandra_Glass_460_NoTrade","name":"[Lv.460] Sandra's Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sandra_Glass","numArg1":460}},{"itemId":11030196,"className":"Premium_Sandra_Glass_1line_460_NoTrade","name":"[Lv.460] Sandra's Detailed Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line","numArg1":460}},{"itemId":11030201,"className":"dummy_GabijaCertificate","name":"Goddess Token (Gabija)","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":1,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030202,"className":"Premium_Sandra_Glass_MAX_460_4line","name":"[Lv.460] Sandra's Perfect Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_MAX_4line","numArg1":460}},{"itemId":11030204,"className":"Goddess_fragments_gabiaA","name":"Gabija's First Authority","type":"Consume","group":"Material","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET_NO_CONSUME_ITEM","strArg":"COLLECT_317"}},{"itemId":11030205,"className":"Goddess_fragments_gabiaB","name":"Gabija's Second Authority","type":"Consume","group":"Material","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET_NO_CONSUME_ITEM","strArg":"COLLECT_317"}},{"itemId":11030206,"className":"Goddess_fragments_gabiaC","name":"Gabija's Third Authority","type":"Consume","group":"Material","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET_NO_CONSUME_ITEM","strArg":"COLLECT_317"}},{"itemId":11030210,"className":"GabijaCertificateCoin_1p","name":"Goddess Token (Gabija): 1","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":1000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_CERTIFICATE_COIN","strArg":"GabijaCertificate","numArg1":1}},{"itemId":11030211,"className":"GabijaCertificateCoin_100p","name":"Goddess Token (Gabija): 100","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":100000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_CERTIFICATE_COIN","strArg":"GabijaCertificate","numArg1":100}},{"itemId":11030212,"className":"GabijaCertificateCoin_1000p","name":"Goddess Token (Gabija): 1,000","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":1000000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_CERTIFICATE_COIN","strArg":"GabijaCertificate","numArg1":1000}},{"itemId":11030213,"className":"GabijaCertificateCoin_5000p","name":"Goddess Token (Gabija): 5,000","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":5000000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_CERTIFICATE_COIN","strArg":"GabijaCertificate","numArg1":5000}},{"itemId":11030214,"className":"GabijaCertificateCoin_10000p","name":"Goddess Token (Gabija): 10,000","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":10000000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_CERTIFICATE_COIN","strArg":"GabijaCertificate","numArg1":10000}},{"itemId":11030215,"className":"GabijaCertificateCoin_50000p","name":"Goddess Token (Gabija): 50,000","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":50000000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_CERTIFICATE_COIN","strArg":"GabijaCertificate","numArg1":50000}},{"itemId":11030226,"className":"Premium_Sandra_Glass_460_1d","name":"[Lv.460] Sandra's Magnifier (1 Day)","type":"Consume","group":"Material","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sandra_Glass","numArg1":460}},{"itemId":11030227,"className":"Premium_Sandra_Glass_1line_1d","name":"[Lv.460] Sandra's Detailed Magnifier (1 Day)","type":"Consume","group":"Material","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line","numArg1":460}},{"itemId":11030234,"className":"Premium_Mystic_Glass_460_1d","name":"[Lv.460] Mysterious Magnifier (1 Day)","type":"Consume","group":"Material","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Mystic_Glass","numArg1":460}},{"itemId":11030235,"className":"Premium_Master_Glass_460_1d","name":"[Lv.460] Artisan Magnifier (1 Day)","type":"Consume","group":"Material","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Master_Glass","numArg1":460}},{"itemId":11030240,"className":"GabijaCertificateCoin_10p","name":"Goddess Token (Gabija): 10","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":1000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_CERTIFICATE_COIN","strArg":"GabijaCertificate","numArg1":10}},{"itemId":11030246,"className":"Coupon_ItemRandomReset","name":"1 Time Free Re-identification Voucher","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"FreeItemRandomReset"}},{"itemId":11030260,"className":"Coupon_c_request_1","name":"[Lv.460] Fedimian Public House Balloting 1 Time Free Voucher","type":"Etc","group":"Material","weight":0,"maxStack":9999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"coupon_c_request_1"}},{"itemId":11030266,"className":"dummy_TeamBattleCoin","name":"Team Battle League Coin","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":1,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030376,"className":"Global_Coupon_ItemRandomReset","name":"1 Time Free Re-identification Voucher","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"FreeItemRandomReset"}},{"itemId":11030385,"className":"TWN_Coupon_ItemRandomReset","name":"1 Time Free Re-identification Voucher","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"FreeItemRandomReset"}},{"itemId":11030388,"className":"Coupon_ItemRandomReset_gift","name":"1 Time Free Re-identification Voucher","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"FreeItemRandomReset"}},{"itemId":11030391,"className":"Free_Item_RandomOption","name":"Sandra's Free Magnifier","type":"Consume","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"FreeItemRandomOption","numArg1":460}},{"itemId":11030392,"className":"Coupon_ItemRandomReset2","name":"1 Time Free Re-identification Voucher","type":"Etc","group":"Material","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"FreeItemRandomReset"}},{"itemId":11030394,"className":"GabijaCertificateCoin_215p","name":"Goddess Token (Gabija): 215","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":50000000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_CERTIFICATE_COIN","strArg":"GabijaCertificate","numArg1":215}},{"itemId":11035395,"className":"Mileage_SilverGacha_96p","name":"Demon God's Temptation Point : 96","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"Mileage_SilverGacha_USE","strArg":"Mileage_SilverGacha","numArg1":96}},{"itemId":11035409,"className":"misc_pvp_mine2_NotLimit_10000","name":"Mercenary Badge : 10,000","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"misc_pvp_mine2_NotLimit_USE","numArg1":10000}},{"itemId":11035426,"className":"misc_pvp_mine2_NotLimit_1000","name":"Mercenary Badge : 1000","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"misc_pvp_mine2_NotLimit_USE","numArg1":1000}},{"itemId":11035430,"className":"Mileage_SilverGacha_1152p","name":"Demon God's Temptation Point : 1152","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"Mileage_SilverGacha_USE","strArg":"Mileage_SilverGacha","numArg1":1152}},{"itemId":11035431,"className":"Mileage_SilverGacha_192p","name":"Demon God's Temptation Point : 192","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"Mileage_SilverGacha_USE","strArg":"Mileage_SilverGacha","numArg1":192}},{"itemId":11035457,"className":"misc_pvp_mine2_NotLimit_50000","name":"Mercenary Badge : 50,000","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"misc_pvp_mine2_NotLimit_USE","numArg1":50000}},{"itemId":11035667,"className":"SEASONLETICIA_misc_pvp_mine2_NotLimit_50000","name":"Mercenary Badge : 50,000","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"misc_pvp_mine2_NotLimit_USE","numArg1":50000}},{"itemId":11035668,"className":"SEASONLETICIA_GabijaCertificateCoin_50000p","name":"Goddess Token (Gabija): 50,000","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":50000000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_CERTIFICATE_COIN","strArg":"GabijaCertificate","numArg1":50000}},{"itemId":11035669,"className":"SEASONLETICIA_misc_pvp_mine2_NotLimit_10000","name":"Mercenary Badge : 10,000","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"misc_pvp_mine2_NotLimit_USE","numArg1":10000}},{"itemId":11035670,"className":"SEASONLETICIA_GabijaCertificateCoin_10000p","name":"Goddess Token (Gabija): 10,000","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":10000000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_CERTIFICATE_COIN","strArg":"GabijaCertificate","numArg1":10000}},{"itemId":11035672,"className":"SEASONLETICIA_misc_pvp_mine2_NotLimit_1000","name":"Mercenary Badge : 1000","type":"Consume","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"misc_pvp_mine2_NotLimit_USE","numArg1":1000}},{"itemId":11035673,"className":"SEASONLETICIA_GabijaCertificateCoin_1000p","name":"Goddess Token (Gabija): 1,000","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":1000000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_CERTIFICATE_COIN","strArg":"GabijaCertificate","numArg1":1000}},{"itemId":11035676,"className":"misc_reinforce_percentUp_480","name":"[Lv.480] Enhance Aid","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035677,"className":"misc_reinforce_percentUp_480_NoTrade","name":"[Lv.480] Enhance Aid (Untradable)","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"reinforce_percentUp","numArg1":480}},{"itemId":11200006,"className":"pharmacy_recipe_470","name":"[Lv.470] Faint Arcanum Formula","type":"Consume","group":"Material","weight":1,"maxStack":1,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ACTIVATED_PHARMACY_RECIPE","strArg":"pharmacy_recipe","numArg1":470}},{"itemId":11200007,"className":"pharmacy_material_A1_470","name":"[Lv.470] Crimson Bloodstone - D4W1","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200008,"className":"pharmacy_material_A2_470","name":"[Lv.470] Amber Bloodstone - D4S1","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200009,"className":"pharmacy_material_A3_470","name":"[Lv.470] Rustmoss Seastone - A4W1","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200010,"className":"pharmacy_material_A4_470","name":"[Lv.470] Cerulean Seastone - A4S1","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200011,"className":"pharmacy_material_A5_470","name":"[Lv.470] Ironstone Shard - A1S4","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200012,"className":"pharmacy_material_A6_470","name":"[Lv.470] Yellow Chitin - D1S4","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200013,"className":"pharmacy_material_A7_470","name":"[Lv.470] Purple Chitin - A1W4","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200014,"className":"pharmacy_material_A8_470","name":"[Lv.470] Blue Chitin - D1W4","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200015,"className":"pharmacy_material_B1_470","name":"[Lv.470] Red Butterflower - D3W1","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200016,"className":"pharmacy_material_B2_470","name":"[Lv.470] White Cliffmoss - D3S1","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200017,"className":"pharmacy_material_B3_470","name":"[Lv.470] Yellow Butterflower - A3W1","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200018,"className":"pharmacy_material_B4_470","name":"[Lv.470] Green Lizard Skin - A3S1","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200019,"className":"pharmacy_material_B5_470","name":"[Lv.470] Amber Glass Crystal - A1S3","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200020,"className":"pharmacy_material_B6_470","name":"[Lv.470] Deep Sea Blue Coral - D1S3","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200021,"className":"pharmacy_material_B7_470","name":"[Lv.470] Cotten Mushroom - A1W3","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200022,"className":"pharmacy_material_B8_470","name":"[Lv.470] Fire Volcanic Stone - D1W3","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200023,"className":"pharmacy_material_C1_470","name":"[Lv.470] Zelkova Leaves - D4W2","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200024,"className":"pharmacy_material_C2_470","name":"[Lv.470] Bamboo Cane - D4S2","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200025,"className":"pharmacy_material_C3_470","name":"[Lv.470] Red Mitella Flower - A4W2","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200026,"className":"pharmacy_material_C4_470","name":"[Lv.470] Millennium Forest Twig - A4S2","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200027,"className":"pharmacy_material_C5_470","name":"[Lv.470] Myriad Forest Twig - A2S4","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200028,"className":"pharmacy_material_C6_470","name":"[Lv.470] Twilight Bud - D2S4","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200029,"className":"pharmacy_material_C7_470","name":"[Lv.470] Crow Lake Gillagrass - A2W4","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200030,"className":"pharmacy_material_C8_470","name":"[Lv.470] Wide-Leaf Wasprout - D2W4","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200031,"className":"pharmacy_material_D1_470","name":"[Lv.470] Holy White Wood Petriflower - A1","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200032,"className":"pharmacy_material_D2_470","name":"[Lv.470] Mana Crystal Powder - D1","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200033,"className":"pharmacy_material_D3_470","name":"[Lv.470] Demonic Golden Shard - S1","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200034,"className":"pharmacy_material_D4_470","name":"[Lv.470] Deadly Poisonous Claw Mushroom - W1","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material","numArg1":470}},{"itemId":11200047,"className":"misc_reinforce_percentUp_470","name":"[Lv.470] Enhance Aid","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11200048,"className":"misc_reinforce_percentUp_470_NoTrade","name":"[Lv.470] Enhance Aid (Untradable)","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"reinforce_percentUp","numArg1":470}},{"itemId":11200049,"className":"Pharmacy_470_Counteractive_1","name":"[Lv.470] LR Toxic Neutralizer","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_counteractive","numArg1":470}},{"itemId":11200050,"className":"Pharmacy_470_Counteractive_2","name":"[Lv.470] NR Toxic Neutralizer","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_counteractive","numArg1":470}},{"itemId":11200051,"className":"Pharmacy_470_Counteractive_3","name":"[Lv.470] HR Toxic Neutralizer","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_counteractive","numArg1":470}},{"itemId":11200062,"className":"pharmacy_material_C1_470_tutorial","name":"[Tutorial] Zelkova Leaves - D4W2","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material_tutorial","numArg1":470}},{"itemId":11200063,"className":"pharmacy_material_D2_470_tutorial","name":"[Tutorial] Mana Crystal Powder - D1","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_material_tutorial","numArg1":470}},{"itemId":11200064,"className":"pharmacy_recipe_Tuto","name":"[Tutorial] Faint Arcanum Formula","type":"Consume","group":"Material","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ACTIVATED_PHARMACY_RECIPE_TUTORIAL","strArg":"pharmacy_recipe","numArg1":470}},{"itemId":11200065,"className":"Pharmacy_470_Counteractive_1_tutorial","name":"[Tutorial] LR Toxic Neutralizer","type":"Etc","group":"Material","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_counteractive_tutorial","numArg1":470}},{"itemId":11200066,"className":"Pharmacy_470_Counteractive_3_NoTrade","name":"[Lv.470] HR Toxic Neutralizer (Untradable)","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pharmacy_counteractive","numArg1":470}},{"itemId":11200068,"className":"pharmacy_recipe_470_NoTrade","name":"[Lv.470] Faint Arcanum Formula (TradeX)","type":"Consume","group":"Material","weight":1,"maxStack":1,"price":0,"sellPrice":100,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ACTIVATED_PHARMACY_RECIPE","strArg":"pharmacy_recipe","numArg1":470}},{"itemId":11200071,"className":"misc_Engrave_470","name":"[Lv.470] Engrave Stone","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11200072,"className":"misc_Engrave_470_NoTrade","name":"[Lv.470] Engrave Stone (Untradable)","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Engrave","numArg1":470,"numArg2":5}},{"itemId":11200096,"className":"pilgrim_TrialsStone","name":"[Lv.470] Stone of Trial","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":470}},{"itemId":11200153,"className":"misc_Evolve_misc_480","name":"[Lv.480] Evolution Stone","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Evolve"}},{"itemId":11200154,"className":"misc_Evolve_misc_480_NoTrade","name":"[Lv.480] Evolution Stone (Untradable)","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Evolve","numArg1":480,"numArg2":5}},{"itemId":11200155,"className":"VakarineCertificateCoin_1p","name":"Goddess Token (Vakarine) : 1","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":1000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_CERTIFICATE_COIN","strArg":"VakarineCertificate","numArg1":1}},{"itemId":11200156,"className":"VakarineCertificateCoin_100p","name":"Goddess Token (Vakarine) : 100","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":100000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_CERTIFICATE_COIN","strArg":"VakarineCertificate","numArg1":100}},{"itemId":11200157,"className":"VakarineCertificateCoin_1000p","name":"Goddess Token (Vakarine) : 1,000","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":1000000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_CERTIFICATE_COIN","strArg":"VakarineCertificate","numArg1":1000}},{"itemId":11200158,"className":"VakarineCertificateCoin_5000p","name":"Goddess Token (Vakarine) : 5,000","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":5000000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_CERTIFICATE_COIN","strArg":"VakarineCertificate","numArg1":5000}},{"itemId":11200159,"className":"VakarineCertificateCoin_10000p","name":"Goddess Token (Vakarine) : 10,000","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":10000000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_CERTIFICATE_COIN","strArg":"VakarineCertificate","numArg1":10000}},{"itemId":11200160,"className":"VakarineCertificateCoin_50000p","name":"Goddess Token (Vakarine) : 50,000","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":50000000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_CERTIFICATE_COIN","strArg":"VakarineCertificate","numArg1":50000}},{"itemId":11200161,"className":"dummy_VakarineCertificate","name":"Goddess Token (Vakarine)","type":"Consume","group":"Material","weight":0,"maxStack":999999,"price":1,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11200163,"className":"misc_Ether_Gem_Socket_480","name":"[Lv.480] Aether Gem Socket Key","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11200164,"className":"misc_Ether_Gem_Socket_480_NoTrade","name":"[Lv.480] Aether Gem Socket Key (Untradable)","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Ether_Gem_Socket","numArg1":480}},{"itemId":11200165,"className":"misc_Ether_Gem_Socket_480_NoTrade_recipe","name":"[Lv.480] Aether Gem Socket Key (Untradable) Recipe","type":"Consume","group":"Material","weight":1,"maxStack":32767,"price":100,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_ETHER_GEM_SOCKET_OPEN_MISC2","strArg":"misc_transmutationSpreader_NoTrade/50;misc_BlessedStone/200"}},{"itemId":11200170,"className":"Goddess_fragments_vakarineA","name":"Vakarine's First Authority","type":"Consume","group":"Material","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET_NO_CONSUME_ITEM","strArg":"COLLECT_318"}},{"itemId":11200171,"className":"Goddess_fragments_vakarineB","name":"Vakarine's Second Authority","type":"Consume","group":"Material","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET_NO_CONSUME_ITEM","strArg":"COLLECT_318"}},{"itemId":11200172,"className":"Goddess_fragments_vakarineC","name":"Vakarine's Third Authority","type":"Consume","group":"Material","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_COLLECTION_GET_NO_CONSUME_ITEM","strArg":"COLLECT_318"}},{"itemId":11200173,"className":"Coupon_c_request_1_480","name":"[Lv.480] Fedimian Public House Balloting 1 Time Free Voucher","type":"Etc","group":"Material","weight":0,"maxStack":9999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"coupon_c_request_1_480"}},{"itemId":11200256,"className":"pilgrim_TrialsStone_490","name":"[Lv.490] Stone of Trial","type":"Consume","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":490}},{"itemId":11201030,"className":"misc_reinforce_percentUp_490","name":"[Lv.490] Enhance Aid","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11201031,"className":"misc_reinforce_percentUp_490_NoTrade","name":"[Lv.490] Enhance Aid (Untradable)","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"reinforce_percentUp","numArg1":490}},{"itemId":11201039,"className":"common_skill_enchant_jewal_480","name":"[Lv.480] Skill Jewel","type":"Etc","group":"Material","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"common_skill_enchant_jewal","numArg1":480}},{"itemId":495164,"className":"test_seal_set","name":"[Kupole] Seal Set","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GIVE_ALL_SEAL","numArg1":1}},{"itemId":699016,"className":"Legend_Misc_Moringponia","name":"Moringponia Crown","type":"Etc","group":"Misc","weight":10,"maxStack":32767,"price":1000000,"sellPrice":10,"minLevel":1,"script":{"strArg":"Savinose/Varna"}},{"itemId":699017,"className":"Legend_Misc_Misrus","name":"Misrus Chain","type":"Etc","group":"Misc","weight":10,"maxStack":32767,"price":1000000,"sellPrice":10,"minLevel":1,"script":{"strArg":"Savinose/Varna"}},{"itemId":699021,"className":"Legend_Misc_Mothacc","name":"Moth Powder","type":"Etc","group":"Misc","weight":10,"maxStack":32767,"price":1000000,"sellPrice":10,"minLevel":1},{"itemId":699023,"className":"Legend_Misc_Mothacc_easy","name":"Moth Dust","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Legend_Misc_Mothacc_easy","strArg":"Legend_Boss_Moringponia_Easy"}},{"itemId":699033,"className":"Legend_Misc_UpHill01","name":"Arch Stone - Enthusiasm","type":"Etc","group":"Misc","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"LegendMiscChange"}},{"itemId":699034,"className":"Legend_Misc_Solo01","name":"Arch Stone - Circulation","type":"Etc","group":"Misc","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"LegendMiscChange"}},{"itemId":699035,"className":"Legend_Misc_Rift01","name":"Arch Stone - Justice","type":"Etc","group":"Misc","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"LegendMiscChange"}},{"itemId":699036,"className":"Legend_Misc_Week01","name":"Arch Stone - Harmony","type":"Etc","group":"Misc","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1,"script":{"strArg":"LegendMiscChange"}},{"itemId":699037,"className":"Legend_Misc_Mothacc_hard","name":"Moth Talc Powder","type":"Etc","group":"Misc","weight":10,"maxStack":32767,"price":1000000,"sellPrice":10,"minLevel":1},{"itemId":699040,"className":"Piece_LegendMisc","name":"Arch Stone Fragment","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT_CNTCOST","strArg":"Legend_Misc_UpHill01/1;Legend_Misc_Solo01/1;Legend_Misc_Rift01/1;Legend_Misc_Week01/1;","numArg1":10}},{"itemId":904223,"className":"Event_HiddenAbility_MasterPiece","name":"[Event] Unidentified Mystic Tome","type":"Consume","group":"Misc","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"HiddenAbility_MasterPiece"}},{"itemId":10000454,"className":"tricket_bountyhunt_klapeda_ep13_3d","name":"[Event][Lv.460] Written Order - Klaipeda (3 Days)","type":"Etc","group":"Misc","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"c_Klaipe","numArg1":460}},{"itemId":10000455,"className":"tricket_bountyhunt_pedimian_ep13_3d","name":"[Event][Lv.460] Written Order - Fedimian (3 Days)","type":"Etc","group":"Misc","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"c_fedimian","numArg1":460}},{"itemId":10000456,"className":"tricket_bountyhunt_orsha_ep13_3d","name":"[Event][Lv.460] Written Order - Orsha (3 Days)","type":"Etc","group":"Misc","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"c_orsha","numArg1":460}},{"itemId":10600162,"className":"Premium_Mystic_Glass_25","name":"[Renewed] [Lv.460] Mysterious Magnifier","type":"Consume","group":"Misc","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Mystic_Glass","numArg1":460}},{"itemId":10600163,"className":"Premium_Master_Glass_25","name":"[Renewed] [Lv.460] Artisan Magnifier","type":"Consume","group":"Misc","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Master_Glass","numArg1":460}},{"itemId":10600164,"className":"Premium_Sandra_Glass_25","name":"[Renewed] [Lv.460] Sandra's Magnifier","type":"Consume","group":"Misc","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass","numArg1":460}},{"itemId":10600165,"className":"Premium_Sandra_Glass_1line_25","name":"[Renewed] [Lv.460] Sandra's Detailed Magnifier","type":"Consume","group":"Misc","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line","numArg1":460}},{"itemId":11030001,"className":"piece_evil_misc","name":"Dark Red Soul Stone Fragment","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_EVIL_MISC","strArg":"evil_misc/1","numArg1":10}},{"itemId":11030002,"className":"evil_misc","name":"Dark Red Soul Stone Piece","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"EVIL_ARMOR","numArg1":2}},{"itemId":11030003,"className":"piece_goddess_misc01","name":"Stone Debris of Divine Power(Vakarine)","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_GODDESS_MISC","strArg":"goddess_misc/1","numArg1":1}},{"itemId":11030004,"className":"piece_goddess_misc02","name":"Stone Debris of Divine Power(Austeja)","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_GODDESS_MISC","strArg":"goddess_misc/1","numArg1":1}},{"itemId":11030005,"className":"piece_goddess_misc03","name":"Stone Debris of Divine Power(Dahlia)","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_GODDESS_MISC","strArg":"goddess_misc/1","numArg1":1}},{"itemId":11030006,"className":"piece_goddess_misc04","name":"Stone Debris of Divine Power(Lada)","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_GODDESS_MISC","strArg":"goddess_misc/1","numArg1":1}},{"itemId":11030007,"className":"piece_goddess_misc05","name":"Stone Debris of Divine Power(Gabija)","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_GODDESS_MISC","strArg":"goddess_misc/1","numArg1":1}},{"itemId":11030008,"className":"piece_goddess_misc06","name":"Stone Debris of Divine Power(Zemyna)","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_GODDESS_MISC","strArg":"goddess_misc/1","numArg1":1}},{"itemId":11030013,"className":"misc_glacier","name":"Heart of Glacia","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030020,"className":"EP12_EXPERT_MODE_MULTIPLE_RECIPE","name":"Division Singularity Add. Reward Voucher Recipe","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":1000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_EXPERT_MODE_MULTIPLE","strArg":"EP12_EXPERT_MODE_MULTIPLE_NoTrade/1","numArg1":3}},{"itemId":11030024,"className":"ChallengeExpertModeCountUp_Recipe","name":"Division Singularity One Entry Voucher Recipe","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":1000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_EXPERT_MODE_TICKET","strArg":"ChallengeExpertModeCountUp_NoTrade/1","numArg1":3}},{"itemId":11030028,"className":"misc_Telharsha_neck","name":"Scorched Valuable of Tel Harsha","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Iredian_lv440"}},{"itemId":11030038,"className":"EP12_enrich_Vibora_misc_recipe","name":"Condensed Vaivora Transmutor Recipe","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":1000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_EP12_ENRICH_VIBORA_MISC","strArg":"EP12_enrich_Vibora_misc/1","numArg1":3}},{"itemId":11030039,"className":"EP12_enrich_Vibora_misc","name":"Condensed Vaivora Transmutor","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030040,"className":"EP12_enrich_Goddess_misc_recipe","name":"Blessed Transmutor Recipe","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":1000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_EP12_ENRICH_GODDESS_MISC","strArg":"EP12_enrich_Goddess_misc/1","numArg1":3}},{"itemId":11030041,"className":"EP12_enrich_Goddess_misc","name":"Blessed Transmutor","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030047,"className":"vakarine_card_reinforce_misc_1","name":"Mold of Reverence - Vakarine","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_GODDESS_CARD_REINFORCE_MISC","strArg":"vakarine_card_reinforce/1","numArg1":1}},{"itemId":11030048,"className":"vakarine_card_reinforce_misc_2","name":"Trust - Vakarine","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11030049,"className":"vakarine_card_reinforce_misc_3","name":"Will - Vakarine","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11030050,"className":"vakarine_card_reinforce_misc_4","name":"Commitment - Vakarine","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11030051,"className":"lada_card_reinforce_misc_1","name":"Mold of Reverence - Lada","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_GODDESS_CARD_REINFORCE_MISC","strArg":"lada_card_reinforce/1","numArg1":1}},{"itemId":11030052,"className":"lada_card_reinforce_misc_2","name":"Trust - Lada","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11030053,"className":"lada_card_reinforce_misc_3","name":"Will - Lada","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11030054,"className":"lada_card_reinforce_misc_4","name":"Commitment - Lada","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11030055,"className":"saule_card_reinforce_misc_1","name":"Mold of Reverence - Saule","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_GODDESS_CARD_REINFORCE_MISC","strArg":"saule_card_reinforce/1","numArg1":1}},{"itemId":11030056,"className":"saule_card_reinforce_misc_2","name":"Trust - Saule","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11030057,"className":"saule_card_reinforce_misc_3","name":"Will - Saule","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11030058,"className":"saule_card_reinforce_misc_4","name":"Commitment - Saule","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11030059,"className":"austeja_card_reinforce_misc_1","name":"Mold of Reverence - Austeja","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_GODDESS_CARD_REINFORCE_MISC","strArg":"austeja_card_reinforce/1","numArg1":1}},{"itemId":11030060,"className":"austeja_card_reinforce_misc_2","name":"Trust - Austeja","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11030061,"className":"austeja_card_reinforce_misc_3","name":"Will - Austeja","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11030062,"className":"austeja_card_reinforce_misc_4","name":"Commitment - Austeja","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11030063,"className":"dalia_card_reinforce_misc_1","name":"Mold of Reverence - Dahlia","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_GODDESS_CARD_REINFORCE_MISC","strArg":"dalia_card_reinforce/1","numArg1":1}},{"itemId":11030064,"className":"dalia_card_reinforce_misc_2","name":"Trust - Dahlia","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11030065,"className":"dalia_card_reinforce_misc_3","name":"Will - Dahlia","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11030066,"className":"dalia_card_reinforce_misc_4","name":"Commitment - Dahlia","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11030068,"className":"misc_glacier_NoTrade","name":"Refined Heart of Glacia","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030069,"className":"Legend_Misc_Mothacc_hard_NoTrade","name":"Refined Moth Talc Powder","type":"Etc","group":"Misc","weight":10,"maxStack":32767,"price":1000000,"sellPrice":10,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030086,"className":"misc_hp_herbs","name":"Red Herb","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":5000,"sellPrice":50,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030087,"className":"misc_sp_herbs","name":"Blue Herb","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":5000,"sellPrice":50,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030089,"className":"misc_Guilty_LegCard","name":"Glimpse of Chaos","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":1000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":3}},{"itemId":11030131,"className":"misc_Giltine_Raid_HARD","name":"Giltine's Feather","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":2}},{"itemId":11030135,"className":"misc_vasilisa","name":"Vasilisa Scale","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030136,"className":"misc_vasilisa_NoTrade","name":"Refined Vasilisa Scale","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030152,"className":"Misc_Vibora_Composition_Reward","name":"Vaivora Origin Stone","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":5}},{"itemId":11030153,"className":"Piece_Relic_Gem_Goddess_Cyan","name":"Goddess Cyan Gem Fragment","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":5}},{"itemId":11030154,"className":"Piece_Relic_Gem_Goddess_Magenta","name":"Goddess Magenta Gem Fragment","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":5}},{"itemId":11030155,"className":"Piece_Relic_Gem_Goddess_Black","name":"Goddess Black Gem","type":"Consume","group":"Misc","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":5}},{"itemId":11030156,"className":"misc_boss_co-op","name":"Joint Strike Raid Medal","type":"Consume","group":"Misc","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":2}},{"itemId":11030157,"className":"HousingCraft_barrack_12_1","name":"[Housing Workshop] Leafnars Antenna","type":"Consume","group":"Misc","weight":50,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"HousingCraft_barrack_12_1","numArg1":40}},{"itemId":11030158,"className":"HousingCraft_barrack_12_2","name":"[Housing Workshop] Darbas Blunt Piece","type":"Consume","group":"Misc","weight":50,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"HousingCraft_barrack_12_2","numArg1":40}},{"itemId":11030159,"className":"HousingCraft_barrack_12_3","name":"[Housing Workshop] Darbas Pauldron","type":"Consume","group":"Misc","weight":50,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"HousingCraft_barrack_12_3","numArg1":40}},{"itemId":11030160,"className":"HousingCraft_barrack_12_4","name":"[Housing Workshop] Saugumas Seal","type":"Consume","group":"Misc","weight":50,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"HousingCraft_barrack_12_4","numArg1":40}},{"itemId":11030161,"className":"HousingCraft_barrack_12_5","name":"[Housing Workshop] Darbas Core","type":"Consume","group":"Misc","weight":50,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"HousingCraft_barrack_12_5","numArg1":40}},{"itemId":11030179,"className":"tricket_bountyhunt_klapeda_ep13","name":"[Lv.460] Written Order - Klaipeda","type":"Etc","group":"Misc","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"c_Klaipe","numArg1":460}},{"itemId":11030180,"className":"tricket_bountyhunt_pedimian_ep13","name":"[Lv.460] Written Order - Fedimian","type":"Etc","group":"Misc","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"c_fedimian","numArg1":460}},{"itemId":11030181,"className":"tricket_bountyhunt_orsha_ep13","name":"[Lv.460] Written Order - Orsha","type":"Etc","group":"Misc","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"c_orsha","numArg1":460}},{"itemId":11030247,"className":"tricket_bountyhunt_klapeda_ep13_hard","name":"[Lv.460] Superior Written Order - Klaipeda","type":"Etc","group":"Misc","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"c_Klaipe","numArg1":460,"numArg2":6200}},{"itemId":11030248,"className":"tricket_bountyhunt_pedimian_ep13_hard","name":"[Lv.460] Superior Written Order - Fedimian","type":"Etc","group":"Misc","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"c_fedimian","numArg1":460,"numArg2":6200}},{"itemId":11030249,"className":"tricket_bountyhunt_orsha_ep13_hard","name":"[Lv.460] Superior Written Order - Orsha","type":"Etc","group":"Misc","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"c_orsha","numArg1":460,"numArg2":6200}},{"itemId":11030250,"className":"HighColorGem_UpgradeToken_460","name":"[Lv.460] Aether Gem Catalyst","type":"Consume","group":"Misc","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_AETHER_GEM_UPGRADE_TOKEN","numArg1":5}},{"itemId":11030252,"className":"bountyhunt_boss_misc01","name":"Darus Bantam's Tiny Savings","type":"Etc","group":"Misc","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030253,"className":"bountyhunt_boss_misc02","name":"Popo Hibert Walker Schofieldu IV's Crown","type":"Etc","group":"Misc","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030254,"className":"bountyhunt_boss_misc03","name":"Nightmare Assailant Shoes","type":"Etc","group":"Misc","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030255,"className":"bountyhunt_boss_misc04","name":"Suspicious Kupole's Leg Hair","type":"Etc","group":"Misc","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030259,"className":"piece_sklgem_selectbox","name":"Skill Gem Fragment","type":"Consume","group":"Misc","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT_CNTCOST","strArg":"sklgem_selectbox/1;","numArg1":10}},{"itemId":11030374,"className":"EP12_enrich_Goddess_misc_NoTrade","name":"Refined Blessed Transmutor","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030375,"className":"EP12_enrich_Vibora_misc_NoTrade","name":"Refined Condensed Vaivora Transmutor","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030459,"className":"HighColorGem_UpgradeToken_460_NoTrade","name":"[Lv.460] Aether Gem Catalyst (Untradable)","type":"Consume","group":"Misc","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_AETHER_GEM_UPGRADE_TOKEN","numArg1":5}},{"itemId":11030463,"className":"HighColorGem_UpgradeToken_480","name":"[Lv.480] Aether Gem Catalyst","type":"Consume","group":"Misc","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_AETHER_GEM_UPGRADE_TOKEN","numArg1":5,"numArg2":480}},{"itemId":11030464,"className":"HighColorGem_UpgradeToken_480_NoTrade","name":"[Lv.480] Aether Gem Catalyst (Untradable)","type":"Consume","group":"Misc","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_AETHER_GEM_UPGRADE_TOKEN","numArg1":5,"numArg2":480}},{"itemId":11030465,"className":"bountyhunt_boss_misc01_480","name":"[Lv.480] Darus Bantam's Tiny Savings","type":"Etc","group":"Misc","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030466,"className":"bountyhunt_boss_misc02_480","name":"[Lv.480] Popo Hibert Walker Schofieldu IV's Crown","type":"Etc","group":"Misc","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030467,"className":"bountyhunt_boss_misc03_480","name":"[Lv.480] Nightmare Assailant Shoes","type":"Etc","group":"Misc","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030468,"className":"bountyhunt_boss_misc04_480","name":"[Lv.480] Suspicious Kupole's Leg Hair","type":"Etc","group":"Misc","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030471,"className":"SEASONLETICIA_HighColorGem_UpgradeToken_460","name":"[Lv.460] Aether Gem Catalyst","type":"Consume","group":"Misc","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_AETHER_GEM_UPGRADE_TOKEN","numArg1":5}},{"itemId":11030472,"className":"misc_Growth_Reinforce_Tier1","name":"Guardian's Seal","type":"Etc","group":"Misc","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030476,"className":"misc_Growth_Reinforce_Tier2","name":"Elite Guardian Seal","type":"Etc","group":"Misc","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030477,"className":"misc_Growth_Reinforce_Tier3","name":"Royal Guardian Seal","type":"Etc","group":"Misc","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035650,"className":"ticket_bountyhunt_klapeda_ep14","name":"[Lv.480] Written Order - Klaipeda","type":"Etc","group":"Misc","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"c_Klaipe","numArg1":480}},{"itemId":11035651,"className":"ticket_bountyhunt_pedimian_ep14","name":"[Lv.480] Written Order - Fedimian","type":"Etc","group":"Misc","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"c_fedimian","numArg1":480}},{"itemId":11035652,"className":"ticket_bountyhunt_orsha_ep14","name":"[Lv.480] Written Order - Orsha","type":"Etc","group":"Misc","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"c_orsha","numArg1":480}},{"itemId":11035653,"className":"ticket_bountyhunt_klapeda_ep14_hard","name":"[Lv.480] Superior Written Order - Klaipeda","type":"Etc","group":"Misc","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"c_Klaipe","numArg1":480,"numArg2":15000}},{"itemId":11035654,"className":"ticket_bountyhunt_pedimian_ep14_hard","name":"[Lv.480] Superior Written Order - Fedimian","type":"Etc","group":"Misc","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"c_fedimian","numArg1":480,"numArg2":15000}},{"itemId":11035655,"className":"ticket_bountyhunt_orsha_ep14_hard","name":"[Lv.480] Superior Written Order - Orsha","type":"Etc","group":"Misc","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"c_orsha","numArg1":480,"numArg2":15000}},{"itemId":11200001,"className":"piece_GabijaEarring","name":"Fire Flame Earring Fragment","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EARRING_MISC","strArg":"piece_earring","numArg1":6}},{"itemId":11200042,"className":"Archeology_Relic_A_1_Lv470","name":"[Lv.470] Flawless Golden Goddess Statue","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_Archeology_Relic","strArg":"Archeology_Relic_A_4_Lv470","numArg1":3}},{"itemId":11200043,"className":"Archeology_Relic_A_2_Lv470","name":"[Lv.470] Cracked Golden Goddess Statue","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_Archeology_Relic","strArg":"Archeology_Relic_A_4_Lv470","numArg1":2}},{"itemId":11200044,"className":"Archeology_Relic_A_3_Lv470","name":"[Lv.470] Broken Gold Goddess Statue","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_Archeology_Relic","strArg":"Archeology_Relic_A_4_Lv470","numArg1":1}},{"itemId":11200045,"className":"Archeology_Relic_A_4_Lv470","name":"[Lv.470] Gold Goddess Statue Piece","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11200052,"className":"misc_RevivalPaulius","name":"Revived Soul Fragment","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11200053,"className":"misc_RevivalPaulius_NoTrade","name":"Refined Revived Soul Fragment","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11200097,"className":"piece_penetration_belt","name":"Belt of Insight Fragment","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_BELT_MISC","strArg":"piece_belt","numArg1":20}},{"itemId":11200100,"className":"piece_penetration_belt_NoTrade","name":"Belt of Insight Fragment (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_BELT_MISC","strArg":"piece_belt","numArg1":20}},{"itemId":11200101,"className":"piece_GabijaEarring_NoTrade","name":"Fire Flame Earring Fragment (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EARRING_MISC","strArg":"piece_earring","numArg1":6}},{"itemId":11200106,"className":"ticket_emoticonItem_Gabija_EarringRaid_1_4","name":"Token of Trial: Goddess Message - Emote Voucher","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_emoticonItem_Gabija_EarringRaid_1_4","numArg1":40,"numArg2":1}},{"itemId":11200107,"className":"ticket_emoticonItem_Gabija_EarringRaid_1_4_NoTrade","name":"Token of Trial: Goddess Message - Emote Voucher (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_emoticonItem_Gabija_EarringRaid_1_4","numArg1":40,"numArg2":1}},{"itemId":11200108,"className":"ticket_Gesture_RUSTLE","name":"Token of Trial: Goddess Message - Gesture Voucher","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_Gesture_RUSTLE","numArg1":40,"numArg2":1}},{"itemId":11200109,"className":"ticket_Gesture_RUSTLE_NoTrade","name":"Token of Trial: Goddess Message - Gesture Voucher (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_Gesture_RUSTLE","numArg1":40,"numArg2":1}},{"itemId":11200110,"className":"ticket_balloon_skin_gabija_balloon","name":"Token of Trial: Goddess Message - Speech Bubble Voucher","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_balloon_skin_gabija_balloon","numArg1":40,"numArg2":1}},{"itemId":11200111,"className":"ticket_balloon_skin_gabija_balloon_NoTrade","name":"Token of Trial: Goddess Message - Speech Bubble Voucher (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_balloon_skin_gabija_balloon","numArg1":40,"numArg2":1}},{"itemId":11200112,"className":"ticket_Achieve_PilgrimRank_2","name":"Token of Trial: Goddess Message - Title Voucher","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_Achieve_PilgrimRank_2","numArg1":40,"numArg2":1}},{"itemId":11200113,"className":"ticket_Achieve_PilgrimRank_2_NoTrade","name":"Token of Trial: Goddess Message - Title Voucher (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_Achieve_PilgrimRank_2","numArg1":40,"numArg2":1}},{"itemId":11200116,"className":"ticket_Gesture_Nyang","name":"Token of Trial: Delmore Battlefield - Gesture Voucher","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_Gesture_Nyang","numArg1":40,"numArg2":1}},{"itemId":11200117,"className":"ticket_Gesture_Nyang_NoTrade","name":"Token of Trial: Delmore Battlefield - Gesture Voucher (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_Gesture_Nyang","numArg1":40,"numArg2":1}},{"itemId":11200118,"className":"ticket_Achieve_PilgrimRank_1","name":"Token of Trial: Delmore Battlefield - Title Voucher","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_Achieve_PilgrimRank_1","numArg1":40,"numArg2":1}},{"itemId":11200119,"className":"ticket_Achieve_PilgrimRank_1_NoTrade","name":"Token of Trial: Delmore Battlefield - Title Voucher (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_Achieve_PilgrimRank_1","numArg1":40,"numArg2":1}},{"itemId":11200120,"className":"ticket_wing_delmore","name":"Token of Trial: Delmore Battlefield - Back Costume Voucher","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_wing_delmore","numArg1":40,"numArg2":1}},{"itemId":11200121,"className":"ticket_wing_delmore_NoTrade","name":"Token of Trial: Delmore Battlefield - Back Costume Voucher (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_wing_delmore","numArg1":40,"numArg2":1}},{"itemId":11200124,"className":"piece_penetration_belt_high","name":"Advanced Belt of Insight Fragment (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_BELT_MISC","strArg":"piece_belt","numArg1":1}},{"itemId":11200135,"className":"season_server_open_all_cabinet","name":"[Season Server] Storage Register Voucher","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_OPEN_ALL_CABINET","strArg":"open_all_cabinet"}},{"itemId":11200166,"className":"misc_transmutationSpreader","name":"Corrupt Corpse Doll Thread","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11200167,"className":"misc_transmutationSpreader_NoTrade","name":"Processed Corrupt Corpse Doll Thread","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11200168,"className":"misc_high_transmutationSpreader","name":"HR Corrupt Corpse Doll Thread","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11200169,"className":"misc_high_transmutationSpreader_NoTrade","name":"Processed HR Corrupt Corpse Doll Thread","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11200181,"className":"piece_random_skill_gem_480","name":"[Lv.480] Sparkling Skill Gem Fragment","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SKILL_GEM_RANDOM_OPTIN_MISC","strArg":"piece_skill_gem_random_option","numArg1":7,"numArg2":480}},{"itemId":11200182,"className":"piece_random_skill_gem_480_NoTrade","name":"[Lv.480] Sparkling Skill Gem Fragment (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SKILL_GEM_RANDOM_OPTIN_MISC","strArg":"piece_skill_gem_random_option","numArg1":7,"numArg2":480}},{"itemId":11200190,"className":"piece_fierce_shoulder","name":"Spaulder of Ferocity Fragment","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SHOULER_MISC","strArg":"piece_shoulder","numArg1":20}},{"itemId":11200191,"className":"piece_fierce_shoulder_NoTrade","name":"Spaulder of Ferocity Fragment (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SHOULER_MISC","strArg":"piece_shoulder","numArg1":20}},{"itemId":11200193,"className":"misc_leatherFalouros","name":"Falouros Leather","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11200194,"className":"misc_leatherFalouros_NoTrade","name":"Processed Falouros Leather","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11200195,"className":"misc_hornFalouros","name":"Falouros Horn","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11200196,"className":"misc_hornFalouros_NoTrade","name":"Processed Falouros Horn","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11200198,"className":"piece_fierce_shoulder_high","name":"Advanced Spaulder of Ferocity Fragment","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SHOULER_MISC","strArg":"piece_shoulder","numArg1":1}},{"itemId":11200216,"className":"Multiple_Token_ChallengeMode_Auto_recipe","name":"Recipe - Challenge Mode Add. Reward Voucher (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"Addition_consume_Multiple_Token_ChallengeMode_Auto","strArg":"Multiple_Token_ChallengeMode_Auto_NoTrade/1"}},{"itemId":11200229,"className":"misc_ribbonRoze","name":"Rose's Ribbon","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11200230,"className":"misc_ribbonRoze_NoTrade","name":"Mended Rose's Ribbon","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11200231,"className":"misc_eyemaskRoze","name":"Rose's Blindfold","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11200232,"className":"misc_eyemaskRoze_NoTrade","name":"Mended Rose's Blindfold","type":"Etc","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11200244,"className":"ticket_hat_jellyzele","name":"Token of Trial: Sinking Seizure - Jellyzele Crown Voucher","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_hat_jellyzele","numArg1":40,"numArg2":1}},{"itemId":11200245,"className":"ticket_hat_jellyzele_NoTrade","name":"Token of Trial: Sinking Seizure - Jellyzele Crown Voucher (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_hat_jellyzele","numArg1":40,"numArg2":1}},{"itemId":11200246,"className":"ticket_doll_jellyzele","name":"Token of Trial: Sinking Seizure - Jellyzele Doll Voucher","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_doll_jellyzele","numArg1":40,"numArg2":1}},{"itemId":11200247,"className":"ticket_doll_jellyzele_NoTrade","name":"Token of Trial: Sinking Seizure - Jellyzele Doll Voucher (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_doll_jellyzele","numArg1":40,"numArg2":1}},{"itemId":11200248,"className":"ticket_achieve_jellyzele","name":"Token of Trial: Sinking Seizure - Title Voucher","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_achieve_jellyzele","numArg1":40,"numArg2":1}},{"itemId":11200249,"className":"ticket_achieve_jellyzele_NoTrade","name":"Token of Trial: Sinking Seizure - Title Voucher (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_achieve_jellyzele","numArg1":40,"numArg2":1}},{"itemId":11200250,"className":"ticket_wing_spreader","name":"Token of Trial: Reservoir of Corruption - Back Costume Voucher","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_wing_spreader","numArg1":40,"numArg2":1}},{"itemId":11200251,"className":"ticket_wing_spreader_NoTrade","name":"Token of Trial: Reservoir of Corruption - Back Costume Voucher (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_wing_spreader","numArg1":40,"numArg2":1}},{"itemId":11200252,"className":"ticket_potion_spreader","name":"Token of Trial: Reservoir of Corruption - Transformation Potion Voucher","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_potion_spreader","numArg1":40,"numArg2":1}},{"itemId":11200253,"className":"ticket_potion_spreader_NoTrade","name":"Token of Trial: Reservoir of Corruption - Transformation Potion Voucher (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_potion_spreader","numArg1":40,"numArg2":1}},{"itemId":11200254,"className":"ticket_achieve_spreader","name":"Token of Trial: Reservoir of Corruption - Title Voucher","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_achieve_spreader","numArg1":40,"numArg2":1}},{"itemId":11200255,"className":"ticket_achieve_spreader_NoTrade","name":"Token of Trial: Reservoir of Corruption - Title Voucher (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TRADE_TICKET","strArg":"ticket_achieve_spreader","numArg1":40,"numArg2":1}},{"itemId":11200278,"className":"Multiple_Token_ChallengeMode_Auto_recipe2","name":"Recipe - Challenge Mode Add. Reward Voucher (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"Addition_consume_Multiple_Token_ChallengeMode_Auto","strArg":"Multiple_Token_ChallengeMode_Auto_NoTrade/1"}},{"itemId":11201000,"className":"piece_EP14_GoddessIcor_Armor","name":"[Lv.480] Goddess Ichor (Armor) Fragment","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GODDESS_ICOR_MISC","strArg":"piece_goddess_icor","numArg1":7}},{"itemId":11201001,"className":"piece_EP14_GoddessIcor_Armor_NoTrade","name":"[Lv.480] Goddess Ichor (Armor) Fragment (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GODDESS_ICOR_MISC","strArg":"piece_goddess_icor","numArg1":7}},{"itemId":11201005,"className":"piece_EP14_GoddessIcor_Weapon","name":"[Lv.480] Goddess Ichor (Weapon) Fragment","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GODDESS_ICOR_MISC","strArg":"piece_goddess_icor","numArg1":7}},{"itemId":11201006,"className":"piece_EP14_GoddessIcor_Weapon_NoTrade","name":"[Lv.480] Goddess Ichor (Weapon) Fragment (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GODDESS_ICOR_MISC","strArg":"piece_goddess_icor","numArg1":7}},{"itemId":11201016,"className":"piece_EP14_GoddessIcor_Armor_high","name":"[Lv.480] Advanced Goddess Ichor (Armor) Fragment","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GODDESS_ICOR_MISC","strArg":"piece_goddess_icor","numArg1":1}},{"itemId":11201017,"className":"piece_EP14_GoddessIcor_Weapon_high","name":"[Lv.480] Advanced Goddess Ichor (Weapon) Fragment","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GODDESS_ICOR_MISC","strArg":"piece_goddess_icor","numArg1":1}},{"itemId":11201018,"className":"piece_penetration_belt_trade_high","name":"Advanced Belt of Insight Fragment","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_BELT_MISC","strArg":"piece_belt","numArg1":1}},{"itemId":11201019,"className":"piece_GabijaEarring_select_job","name":"Mystic Fire Flame Earring Fragment","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"special_piece_earring","numArg1":1}},{"itemId":11201020,"className":"piece_blessing_of_jurate","name":"Jurate's Blessed Relic - Punisher","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":480,"script":{"strArg":"piece_blessing_of_jurate/30;Seal_Boruta_Common/1"}},{"itemId":11201021,"className":"piece_blessing_of_jurate_def","name":"Jurate's Blessed Relic - Protection","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":480,"script":{"strArg":"piece_blessing_of_jurate_def/30;Seal_Boruta_Common/1"}},{"itemId":11201022,"className":"piece_blessing_of_jurate2","name":"Jurate's Blessed Relic (Advanced) - Punisher","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":480,"script":{"strArg":"piece_blessing_of_jurate2/10;Seal_jurate/1"}},{"itemId":11201023,"className":"piece_blessing_of_jurate2_def","name":"Jurate's Blessed Relic (Advanced) - Protection","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":480,"script":{"strArg":"piece_blessing_of_jurate2_def/10;Seal_jurate_def/1"}},{"itemId":11201024,"className":"piece_blessing_of_jurate3","name":"Jurate's Blessed Relic (Superior) - Punisher","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":480,"script":{"strArg":"piece_blessing_of_jurate3/5;Seal_jurate2/1"}},{"itemId":11201025,"className":"piece_blessing_of_jurate3_def","name":"Jurate's Blessed Relic (Superior) - Protection","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":480,"script":{"strArg":"piece_blessing_of_jurate3_def/5;Seal_jurate2_def/1"}},{"itemId":11201026,"className":"piece_fierce_shoulder_high_NoTrade","name":"Advanced Spaulder of Ferocity Fragment (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SHOULER_MISC","strArg":"piece_shoulder","numArg1":1}},{"itemId":11201027,"className":"piece_GabijaEarring_select_job_NoTrade","name":"Mystic Fire Flame Earring Fragment (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"special_piece_earring","numArg1":1}},{"itemId":11201028,"className":"piece_EP14_GoddessIcor_Armor_high_NoTrade","name":"[Lv.480] Advanced Goddess Ichor (Armor) Fragment (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GODDESS_ICOR_MISC","strArg":"piece_goddess_icor","numArg1":1}},{"itemId":11201029,"className":"piece_EP14_GoddessIcor_Weapon_high_NoTrade","name":"[Lv.480] Advanced Goddess Ichor (Weapon) Fragment (Untradable)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GODDESS_ICOR_MISC","strArg":"piece_goddess_icor","numArg1":1}},{"itemId":11201032,"className":"piece_fierce_shoulder_high_NoTrade_Belonging","name":"Advanced Spaulder of Ferocity Fragment (Bound)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SHOULER_MISC","strArg":"piece_shoulder","numArg1":1}},{"itemId":11201033,"className":"piece_penetration_belt_high_Belonging","name":"Advanced Belt of Insight Fragment (Bound)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_BELT_MISC","strArg":"piece_belt","numArg1":1}},{"itemId":11201034,"className":"piece_GabijaEarring_select_job_NoTrade_Belonging","name":"Mystic Fire Flame Earring Fragment (Bound)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"special_piece_earring","numArg1":1}},{"itemId":11201035,"className":"piece_EP14_GoddessIcor_Armor_high_NoTrade_Belonging","name":"[Lv.480] Advanced Goddess Ichor (Armor) Fragment (Bound)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GODDESS_ICOR_MISC_EVENT","strArg":"piece_goddess_icor","numArg1":1}},{"itemId":11201036,"className":"piece_EP14_GoddessIcor_Weapon_high_NoTrade_Belonging","name":"[Lv.480] Advanced Goddess Ichor (Weapon) Fragment (Bound)","type":"Consume","group":"Misc","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GODDESS_ICOR_MISC_EVENT","strArg":"piece_goddess_icor","numArg1":1}},{"itemId":730200,"className":"Paste_Bait_basic","name":"Worm","type":"Etc","group":"PasteBait","weight":1,"maxStack":32767,"price":100,"sellPrice":10,"minLevel":1,"script":{"strArg":"fishing_default"}},{"itemId":730201,"className":"Paste_Bait_silverfish_small","name":"Small Silver Fish","type":"Etc","group":"PasteBait","weight":1,"maxStack":32767,"price":100,"sellPrice":10,"equipType2":"Fishing","minLevel":1,"script":{"strArg":"fishing_shrimp"}},{"itemId":730202,"className":"Paste_Bait_shrimp","name":"Shrimp","type":"Etc","group":"PasteBait","weight":1,"maxStack":32767,"price":1000,"sellPrice":100,"minLevel":1,"script":{"strArg":"fishing_shrimp"}},{"itemId":730203,"className":"Paste_Bait_basic_2","name":"Basic Bait","type":"Etc","group":"PasteBait","weight":1,"maxStack":32767,"price":0,"sellPrice":10,"minLevel":1,"script":{"strArg":"fishing_default"}},{"itemId":730204,"className":"Paste_Bait_basic_pcbang1","name":"ITEM_20230425_028585","type":"Etc","group":"PasteBait","weight":1,"maxStack":32767,"price":0,"sellPrice":100,"minLevel":1,"script":{"strArg":"fishing_PC"}},{"itemId":730205,"className":"Paste_Bait_octopus","name":"Octopus","type":"Etc","group":"PasteBait","weight":1,"maxStack":32767,"price":100,"sellPrice":10,"minLevel":1,"script":{"strArg":"fishing_octopus"}},{"itemId":730206,"className":"Paste_Bait_orsha","name":"Orsha's Special Bait","type":"Etc","group":"PasteBait","weight":1,"maxStack":32767,"price":200,"sellPrice":10,"minLevel":1,"script":{"strArg":"fishing_orsha"}},{"itemId":730299,"className":"Event_1902_mudfish","name":"[Event] Joha's Mudfish","type":"Etc","group":"PasteBait","weight":1,"maxStack":32767,"price":5200,"sellPrice":10,"minLevel":1},{"itemId":730300,"className":"Paste_Bait_lure","name":"Lure","type":"Etc","group":"PasteBait","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"fishing_PC"}},{"itemId":10000002,"className":"Event_2002_mudfish","name":"[Event] Joha's Mudfish","type":"Etc","group":"PasteBait","weight":1,"maxStack":32767,"price":5200,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"strArg":"fishing_mudfish"}},{"itemId":10007000,"className":"EVENT_2006_Octopus_bait","name":"[Event] Octopus Tentacle Bait","type":"Etc","group":"PasteBait","weight":0,"maxStack":32767,"price":5200,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"strArg":"fishing_event_octopus"}},{"itemId":10007003,"className":"Event_2011_mudfish","name":"[Event] Mudfish Shop","type":"Etc","group":"PasteBait","weight":1,"maxStack":99999,"price":5200,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"strArg":"Event_2011_mudfish"}},{"itemId":10007004,"className":"EVENT_2107_Octopus_bait","name":"[Event] Octopus Tentacle Bait","type":"Etc","group":"PasteBait","weight":0,"maxStack":32767,"price":5200,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"strArg":"fishing_event_octopus_2107"}},{"itemId":10007006,"className":"EVENT_2107_Octopus_bait_2","name":"[Event] Octopus Tentacle Bait","type":"Etc","group":"PasteBait","weight":0,"maxStack":32767,"price":5200,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"strArg":"fishing_event_octopus_2107_2"}},{"itemId":291001,"className":"PETAR01_101","name":"Companion Coat","type":"PetArmor","group":"PetArmor","weight":40,"maxStack":1,"price":805,"sellPrice":161,"equipType1":"Sword","equipType2":"Sword","minLevel":1},{"itemId":291002,"className":"PETAR01_102","name":"Companion Quilt Coat","type":"PetArmor","group":"PetArmor","weight":50,"maxStack":1,"price":2720,"sellPrice":544,"equipType1":"Sword","equipType2":"Sword","minLevel":15},{"itemId":291003,"className":"PETAR01_103","name":"Companion Superior Quilt Coat","type":"PetArmor","group":"PetArmor","weight":50,"maxStack":1,"price":4860,"sellPrice":972,"equipType1":"Sword","equipType2":"Sword","minLevel":15},{"itemId":291004,"className":"PETAR01_104","name":"Companion Leather Armor","type":"PetArmor","group":"PetArmor","weight":50,"maxStack":1,"price":9033,"sellPrice":1806,"equipType1":"Sword","equipType2":"Sword","minLevel":40},{"itemId":291005,"className":"PETAR01_105","name":"Companion Superior Leather Armor","type":"PetArmor","group":"PetArmor","weight":50,"maxStack":1,"price":13406,"sellPrice":2681,"equipType1":"Sword","equipType2":"Sword","minLevel":40},{"itemId":291006,"className":"PETAR01_106","name":"Companion Chain Mail","type":"PetArmor","group":"PetArmor","weight":60,"maxStack":1,"price":23736,"sellPrice":4747,"equipType1":"Sword","equipType2":"Sword","minLevel":40},{"itemId":291007,"className":"PETAR01_107","name":"Companion Steel Chainmail","type":"PetArmor","group":"PetArmor","weight":50,"maxStack":1,"price":44034,"sellPrice":8806,"equipType1":"Sword","equipType2":"Sword","minLevel":75},{"itemId":291008,"className":"PETAR01_108","name":"Companion Scale Mail","type":"PetArmor","group":"PetArmor","weight":80,"maxStack":1,"price":82496,"sellPrice":16499,"equipType1":"Sword","equipType2":"Sword","minLevel":75},{"itemId":291009,"className":"PETAR01_109","name":"Companion Superior Scale Mail","type":"PetArmor","group":"PetArmor","weight":50,"maxStack":1,"price":92070,"sellPrice":18414,"equipType1":"Sword","equipType2":"Sword","minLevel":75},{"itemId":291010,"className":"PETAR01_110","name":"Companion Plate Armor","type":"PetArmor","group":"PetArmor","weight":60,"maxStack":1,"price":110205,"sellPrice":22041,"equipType1":"Sword","equipType2":"Sword","minLevel":120},{"itemId":291011,"className":"PETAR01_111","name":"Companion Full Plate Armor","type":"PetArmor","group":"PetArmor","weight":50,"maxStack":1,"price":6,"sellPrice":1,"equipType1":"Sword","equipType2":"Sword","minLevel":120},{"itemId":281001,"className":"PETWP01_101","name":"Claw","type":"PetWeapon","group":"PetWeapon","weight":75,"maxStack":1,"price":805,"sellPrice":161,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":101,"maxAtk":107},{"itemId":281002,"className":"PETWP01_102","name":"Iron Claw","type":"PetWeapon","group":"PetWeapon","weight":75,"maxStack":1,"price":2720,"sellPrice":544,"equipType1":"Sword","equipType2":"Sword","minLevel":15,"minAtk":209,"maxAtk":222},{"itemId":281003,"className":"PETWP01_103","name":"Steel Claw","type":"PetWeapon","group":"PetWeapon","weight":90,"maxStack":1,"price":4860,"sellPrice":972,"equipType1":"Sword","equipType2":"Sword","minLevel":15,"minAtk":281,"maxAtk":298},{"itemId":281004,"className":"PETWP01_104","name":"Forest Claw","type":"PetWeapon","group":"PetWeapon","weight":80,"maxStack":1,"price":9033,"sellPrice":1806,"equipType1":"Sword","equipType2":"Sword","minLevel":40,"minAtk":353,"maxAtk":375},{"itemId":281005,"className":"PETWP01_105","name":"Rokas Claw","type":"PetWeapon","group":"PetWeapon","weight":90,"maxStack":1,"price":13406,"sellPrice":2681,"equipType1":"Sword","equipType2":"Sword","minLevel":40,"minAtk":432,"maxAtk":459},{"itemId":281006,"className":"PETWP01_106","name":"Tooth","type":"PetWeapon","group":"PetWeapon","weight":90,"maxStack":1,"price":23736,"sellPrice":4747,"equipType1":"Sword","equipType2":"Sword","minLevel":40,"minAtk":519,"maxAtk":551},{"itemId":281007,"className":"PETWP01_107","name":"Iron Tooth","type":"PetWeapon","group":"PetWeapon","weight":90,"maxStack":1,"price":44034,"sellPrice":8806,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":605,"maxAtk":642},{"itemId":281008,"className":"PETWP01_108","name":"Steel Tooth","type":"PetWeapon","group":"PetWeapon","weight":90,"maxStack":1,"price":82496,"sellPrice":16499,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":699,"maxAtk":742},{"itemId":281009,"className":"PETWP01_109","name":"Silver Fang","type":"PetWeapon","group":"PetWeapon","weight":100,"maxStack":1,"price":92070,"sellPrice":18414,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":792,"maxAtk":841},{"itemId":281010,"className":"PETWP01_110","name":"Titanium Claw","type":"PetWeapon","group":"PetWeapon","weight":90,"maxStack":1,"price":110205,"sellPrice":22041,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":893,"maxAtk":948},{"itemId":281011,"className":"PETWP01_111","name":"Superior Titanium Claw","type":"PetWeapon","group":"PetWeapon","weight":90,"maxStack":1,"price":1,"sellPrice":1,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":1037,"maxAtk":1101},{"itemId":10017,"className":"helmet_baniclips","name":"Varnaclipse Helmet Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_romance02"}},{"itemId":10028,"className":"helmet_tantaliser1","name":"Pyrmas Tantalizer Helmet Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_tantaliser"}},{"itemId":10029,"className":"helmet_moth1","name":"Pyrmas Moringponia Helmet Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_moth"}},{"itemId":10030,"className":"helmet_devilrabbit","name":"Black Rabbit Helmet Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_devilrabbit"}},{"itemId":10031,"className":"helmet_tantaliser2","name":"Antras Tantalizer Helmet Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_tantaliser"}},{"itemId":10032,"className":"helmet_moth2","name":"Antras Moringponia Helmet Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_moth"}},{"itemId":10033,"className":"helmet_teambattlecos_gold","name":"Conqueror Aukso Helmet Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_teambattlecos_gold"}},{"itemId":10034,"className":"helmet_teambattlecos_silver","name":"Contender Sidabrine Helmet Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_teambattlecos_silver"}},{"itemId":10035,"className":"helmet_teambattlecos_copper","name":"Competitor Valis Helmet Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_teambattlecos_copper"}},{"itemId":10036,"className":"helmet_zawra","name":"Zaura Helmet Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":10037,"className":"helmet_bramble","name":"Bramble Helmet Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":19004,"className":"helmet_velcoffer","name":"Velcoffer Helmet","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":19005,"className":"helmet_MoonRabbit","name":"Moon Rabbit Helmet","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_MoonRabbit"}},{"itemId":19008,"className":"helmet_GuiltyF","name":"Giltine Follower Hood (F)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_GuiltyF"}},{"itemId":19009,"className":"helmet_GuiltyM","name":"Giltine Follower Hood (M)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_GuiltyM"}},{"itemId":19010,"className":"helmet_FairyGuilty","name":"Giltine's Hood","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_FairyGuilty"}},{"itemId":19011,"className":"Helmet_penguin","name":"Fluffy Penguin Helmet","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"winter_Helmet_penguin"}},{"itemId":19012,"className":"Helmet_goldpig","name":"Lucky Golden Pig Helmet","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_goldpig"}},{"itemId":19013,"className":"Helmet_squadron_kaiju","name":"Kaiju Helmet Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_kaiju"}},{"itemId":19014,"className":"Helmet_2019halloween02_m","name":"Haunted Hospital Nurse Helmet Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_2019halloween02_m"}},{"itemId":19015,"className":"Helmet_2019halloween02_f","name":"Haunted Hospital Nurse Helmet Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_2019halloween02_f"}},{"itemId":19018,"className":"Helmet_xmastreecos","name":"Sparking Tree Head Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_xmastreecos"}},{"itemId":19019,"className":"helmet_12animal_rat","name":"Zodiac: Rat Mask","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_12animal_rat"}},{"itemId":19020,"className":"helmet_12animal_cow","name":"Zodiac: Ox Mask","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_12animal_cow"}},{"itemId":19021,"className":"helmet_12animal_tiger","name":"Zodiac: Tiger Mask","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_12animal_tiger"}},{"itemId":19022,"className":"helmet_12animal_rabbit","name":"Zodiac: Rabbit Mask","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_12animal_rabbit"}},{"itemId":19023,"className":"helmet_12animal_dragon","name":"Zodiac: Dragon Mask","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_12animal_dragon"}},{"itemId":19024,"className":"helmet_12animal_snake","name":"Zodiac: Snake Mask","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_12animal_snake"}},{"itemId":19025,"className":"helmet_12animal_horse","name":"Zodiac: Horse Mask","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_12animal_horse"}},{"itemId":19026,"className":"helmet_12animal_sheep","name":"Zodiac: Goat Mask","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_12animal_sheep"}},{"itemId":19027,"className":"helmet_12animal_monkey","name":"Zodiac: Monkey Mask","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_12animal_monkey"}},{"itemId":19028,"className":"helmet_12animal_chick","name":"Zodiac: Rooster Mask","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_12animal_chick"}},{"itemId":19029,"className":"helmet_12animal_dog","name":"Zodiac: Dog Mask","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_12animal_dog"}},{"itemId":19030,"className":"helmet_12animal_pig","name":"Zodiac: Pig Mask","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_12animal_pig"}},{"itemId":19031,"className":"helmet_twndeer","name":"Flower Deer Helmet","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_twndeer"}},{"itemId":19032,"className":"helmet_twndeer_kor","name":"Flower Deer Helmet","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_twndeer"}},{"itemId":490000,"className":"PremiumToken","name":"Token","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":2591950,"numArg2":500000}},{"itemId":490001,"className":"PremiumToken_5m","name":"Token: 5 Minutes","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":300,"numArg2":1}},{"itemId":490002,"className":"PremiumToken_10m","name":"Token: 10 Minutes","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":600,"numArg2":1}},{"itemId":490003,"className":"PremiumToken_30m","name":"Token: 30 Minutes","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1800,"numArg2":1}},{"itemId":490004,"className":"PremiumToken_1h","name":"Token: 1 Hour","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":3600,"numArg2":1}},{"itemId":490005,"className":"RestartCristal","name":"Soul Crystal","type":"Etc","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":3600}},{"itemId":490006,"className":"Premium_WarpScroll","name":"Warp Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Warp"}},{"itemId":490007,"className":"Premium_tpBox_30","name":"30 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":30}},{"itemId":490008,"className":"Premium_tpBox_100","name":"100 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":100}},{"itemId":490009,"className":"Premium_tpBox_220","name":"200 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":200}},{"itemId":490010,"className":"Premium_tpBox_360","name":"300 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":300}},{"itemId":490011,"className":"PremiumToken_1d","name":"Token: 7 Days [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":604799}},{"itemId":490012,"className":"Moru_Premium","name":"Advanced Golden Anvil","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":490013,"className":"Premium_awakeningStone","name":"Premium Awakening Stone","type":"Etc","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490014,"className":"Mic_bundle50","name":"Megaphone 50x Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"GIVE_MIC_50","strArg":"Normal"}},{"itemId":490015,"className":"Premium_boostToken","name":"EXP Tome","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Premium_boostToken","numArg1":3600000,"numArg2":30}},{"itemId":490016,"className":"RestartCristal_bundle10","name":"Soul Crystal 10x Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"GIVE_SOULCRISTAL_10","strArg":"Normal"}},{"itemId":490017,"className":"Premium_WarpScroll_bundle10","name":"Warp Scroll 10x Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"GIVE_WARPSCROLL_10","strArg":"Normal"}},{"itemId":490018,"className":"PremiumToken_5d","name":"Token: 5 Days [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":431999}},{"itemId":490019,"className":"Premium_PackageOBT_1","name":"Premium Package A","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"PREMIUM_PACKAGEOBT_1","strArg":"Normal"}},{"itemId":490020,"className":"Premium_PackageOBT_2","name":"Premium Package B","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"PREMIUM_PACKAGEOBT_2","strArg":"Normal"}},{"itemId":490021,"className":"Premium_tpBox_600","name":"600 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":600}},{"itemId":490022,"className":"Premium_tpBox_1300","name":"1000 TP + 200 + 100","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":1300}},{"itemId":490023,"className":"PremiumToken_24h","name":"Token: 1 Day [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":86399}},{"itemId":490024,"className":"PremiumToken_3h","name":"Token: 3 Hours [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":10799}},{"itemId":490025,"className":"PremiumToken_6h","name":"Token: 6 Hours [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":21599}},{"itemId":490026,"className":"PremiumToken_12h","name":"Token: 12 Hours [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":43199}},{"itemId":490027,"className":"PremiumToken_3d","name":"Token: 3 Days [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":259199}},{"itemId":490029,"className":"Premium_SkillReset","name":"Skill Reset Potion","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Scroll_SkillReset_CBT"}},{"itemId":490030,"className":"Premium_indunReset","name":"Instanced Dungeon Reset Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490031,"className":"Premium_tpBox_10","name":"10 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":10}},{"itemId":490032,"className":"Premium_repairPotion","name":"Urgent Repair Kit","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":500}},{"itemId":490033,"className":"Premium_eventTpBox_50","name":"50 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":50}},{"itemId":490034,"className":"Moru_Platinum_Premium","name":"Platinum Anvil","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":490035,"className":"Premium_Enchantchip","name":"Enchant Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":490036,"className":"Premium_eventTpBox_100","name":"100 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":100}},{"itemId":490037,"className":"Premium_Enchantchip_20","name":"Enchant Scroll 20x Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"GIVE_ENCHANTSCROLL_20","strArg":"Normal"}},{"itemId":490038,"className":"Premium_StatReset","name":"Stat Reset Potion","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Drug_CooltimeDown"}},{"itemId":490039,"className":"Premium_Package_50day","name":"50 Days Open Commemoration Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"PREMIUM_PACKAGE_50DAY","strArg":"Normal"}},{"itemId":490040,"className":"Premium_tpBox_500","name":"500 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":500}},{"itemId":490041,"className":"Premium_eventTpBox_150","name":"150 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":150}},{"itemId":490042,"className":"PremiumToken_event","name":"Token [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":2591950,"numArg2":500000}},{"itemId":490043,"className":"PremiumToken_15d","name":"Token: 15 Days [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1295999}},{"itemId":490044,"className":"Premium_eventTpBox_90","name":"90 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":90}},{"itemId":490045,"className":"Premium_Package_100day","name":"Lucky 100 Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"PREMIUM_PACKAGE_100DAY","strArg":"Normal"}},{"itemId":490046,"className":"Premium_hairColor_01","name":"Ash Blonde Dye","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_HAIRCOLOR","strArg":"blond"}},{"itemId":490047,"className":"Premium_hairColor_02","name":"Ruby Wine Dye","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_HAIRCOLOR","strArg":"red"}},{"itemId":490050,"className":"Premium_tpBox_30_evt","name":"30 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":30}},{"itemId":490051,"className":"Premium_indunReset_14d_test","name":"Instanced Dungeon Reset Voucher: 1 Minute","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490054,"className":"Premium_hairColor_03","name":"Pastel Green Dye","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_HAIRCOLOR","strArg":"green"}},{"itemId":490055,"className":"Premium_hairColor_04","name":"Ash Grey Dye","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_HAIRCOLOR","strArg":"gray"}},{"itemId":490062,"className":"Premium_StatReset14","name":"Stat Reset Potion (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Drug_CooltimeDown"}},{"itemId":490063,"className":"Premium_Raima","name":"Laima Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_RAIMA","strArg":"Normal"}},{"itemId":490064,"className":"Premium_Penguin","name":"Benefit UPUP! Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_PENGUIN","strArg":"Normal"}},{"itemId":490065,"className":"Premium_Penguin_Food","name":"Sardine Bundle","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_PENGUIN_FOOD","strArg":"Normal"}},{"itemId":490066,"className":"Premium_Trump_warm","name":"Trump Swordsman Package (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_TRUMPWARM","strArg":"Normal"}},{"itemId":490067,"className":"Premium_Trump_warf","name":"Trump Swordsman Package (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_TRUMPWARF","strArg":"Normal"}},{"itemId":490068,"className":"Premium_Trump_wism","name":"Trump Magician Package (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_TRUMPWIZM","strArg":"Normal"}},{"itemId":490069,"className":"Premium_Trump_wisf","name":"Trump Magician Package (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_TRUMPWIZF","strArg":"Normal"}},{"itemId":490070,"className":"Premium_Trump_arcm","name":"Trump Archer Package (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_TRUMPARCM","strArg":"Normal"}},{"itemId":490071,"className":"Premium_Trump_arcf","name":"Trump Archer Package (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_TRUMPARCF","strArg":"Normal"}},{"itemId":490072,"className":"Premium_Trump_clem","name":"Trump Cleric Package (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_TRUMPCLEM","strArg":"Normal"}},{"itemId":490073,"className":"Premium_Trump_clef","name":"Trump Cleric Package (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_TRUMPCLEF","strArg":"Normal"}},{"itemId":490089,"className":"Premium_hairColor_05","name":"Light Salmon Dye","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_HAIRCOLOR","strArg":"lightsalmon"}},{"itemId":490090,"className":"BossCardUnEquipTP","name":"Boss Card Unequip TP Price","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_HAIRCOLOR","strArg":"lightsalmon"}},{"itemId":490091,"className":"Premium_Change_PC_Name","name":"Character Name Change Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490092,"className":"Premium_Change_Team_Name","name":"Team Name Change Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490093,"className":"Premium_Change_Guild_Name","name":"Guild Name Change Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490094,"className":"Premium_boostToken02","name":"x4 EXP Tome","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Premium_boostToken02","numArg1":3600000,"numArg2":150}},{"itemId":490095,"className":"Premium_boostToken03","name":"x8 EXP Tome","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Premium_boostToken03","numArg1":3600000,"numArg2":300}},{"itemId":490096,"className":"Premium_boostToken04","name":"Improved EXP Tome [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Premium_boostToken04","numArg1":3600000,"numArg2":50}},{"itemId":490097,"className":"Premium_boostToken02_event01","name":"x4 EXP Tome (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Premium_boostToken02","numArg1":3600000,"numArg2":150}},{"itemId":490098,"className":"Premium_boostToken03_event01","name":"x8 EXP Tome (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Premium_boostToken03","numArg1":3600000,"numArg2":300}},{"itemId":490099,"className":"Premium_parrotbill_Food","name":"Flake Bundle","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_PARROTBILL_FOOD","strArg":"Normal"}},{"itemId":490100,"className":"Premium_Enchantchip14","name":"Enchant Scroll (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":490101,"className":"PremiumToken_3h_event","name":"Token: 3 Hours [EVENT] (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":10799}},{"itemId":490102,"className":"PremiumToken_5d_event","name":"Token: 5 Days [EVENT] (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":431999}},{"itemId":490103,"className":"Bunny_Pack_2016","name":"Bunny Costume Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_BUNNYPACK_2016","strArg":"Normal"}},{"itemId":490104,"className":"Swimsuit_Pack_2016","name":"Swimwear Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SWIMSUITPACK_2016","strArg":"Normal"}},{"itemId":490105,"className":"SummerHair_2016","name":"Hair Accessory Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SUMMERHAIR_2016","strArg":"Normal"}},{"itemId":490106,"className":"DLC_BOX6_TW","name":"Goddess' Present Chest","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"DLC_BOX6","strArg":"Normal"}},{"itemId":490107,"className":"taiwan_Premium_tpBox_190","name":"190 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":190}},{"itemId":490108,"className":"Premium_Clear_dungeon_01","name":"Instance Clear Voucher (1 Star)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1,"numArg2":3}},{"itemId":490109,"className":"PremiumToken_3d_event","name":"Token:3 Days[EVENT](14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":259199}},{"itemId":490110,"className":"Premium_WarpScroll_14d","name":"Warp Scroll (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Warp"}},{"itemId":490111,"className":"RestartCristal_14d","name":"Soul Crystal (14 Days)","type":"Etc","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":3600}},{"itemId":490113,"className":"Premium_indunReset_1add","name":"Instance One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490114,"className":"Premium_hairColor_06","name":"Violet Dye","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_HAIRCOLOR","strArg":"purple"}},{"itemId":490115,"className":"Premium_Clear_dungeon_02","name":"Instance Clear Voucher (2 Stars)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":2,"numArg2":3}},{"itemId":490116,"className":"Premium_Clear_dungeon_03","name":"Instance Clear Voucher (3 Stars)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":490117,"className":"Premium_Clear_dungeon_04","name":"Instance Clear Voucher (4 Stars)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":4,"numArg2":3}},{"itemId":490120,"className":"Promotion_Set01_Steam","name":"Battlebird Companion Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SET01_COMPANION_STEAM","strArg":"Normal"}},{"itemId":490121,"className":"Premium_Enchantchip_CT","name":"Enchant Scroll(Untradable)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":490122,"className":"Premium_repairPotion_TA","name":"Superior Urgent Repair Kit","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":1000000}},{"itemId":490123,"className":"Premium_StatReset_TA","name":"Condensed Stat Reset Potion","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Drug_CooltimeDown"}},{"itemId":490125,"className":"Premium_dungeoncount_01","name":"Instanced Dungeon Multiply Token","type":"Etc","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":490126,"className":"Premium_hairColor_07","name":"Orange Hair Dye","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_HAIRCOLOR","strArg":"orange"}},{"itemId":490127,"className":"Premium_awakeningStone_TA","name":"Glowing Awakening Stone","type":"Etc","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490128,"className":"Premium_RankReset","name":"Class Change Voucher Lv 4","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_RankReset"}},{"itemId":490130,"className":"Premium_indunReset_1add_14d","name":"Instance One Entry Voucher (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490131,"className":"PremiumToken_1h_TC","name":"Token (1 Hour) [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":3600}},{"itemId":490132,"className":"PremiumToken_3d_Steam","name":"Token: 3 Days [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":259195}},{"itemId":490133,"className":"PremiumToken_5d_Steam","name":"Token: 5 Days [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":431990}},{"itemId":490134,"className":"PremiumToken_7d_Steam","name":"Token: 7 Days [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":604780}},{"itemId":490135,"className":"PremiumToken_15d_Steam","name":"Token: 15 Days [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1295975}},{"itemId":490136,"className":"Premium_SkillReset_14d","name":"Skill Reset Potion (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Scroll_SkillReset_CBT"}},{"itemId":490137,"className":"Premium_RankReset_14d","name":"Class Change Voucher Lv 4 (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Premium_RankReset_14d"}},{"itemId":490139,"className":"Premium_boostToken02_1d","name":"x4 EXP Tome (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Premium_boostToken02","numArg1":3600000,"numArg2":150}},{"itemId":490140,"className":"Event_RankReset","name":"[Event] Class Change Voucher Lv 4","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Event_RankReset"}},{"itemId":490141,"className":"Premium_Rocksodon_Pack","name":"Rocksodon Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_ROCKSODON","strArg":"Normal"}},{"itemId":490142,"className":"indunReset_1add_14d_NoStack","name":"Instance One Entry Voucher (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490143,"className":"Premium_NewyearsPack_tw","name":"Item Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_NEWYEASPACK","strArg":"Normal"}},{"itemId":490144,"className":"emoticonItem_24_46","name":"Emote Plus: Popolion","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON_PACK","strArg":"emoticon_00","numArg1":24,"numArg2":46}},{"itemId":490145,"className":"Premium_Hanbok_M","name":"Hanbok Package (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_Hanbok_M","strArg":"Normal"}},{"itemId":490146,"className":"Premium_Hanbok_F","name":"Hanbok Package (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_Hanbok_F","strArg":"Normal"}},{"itemId":490147,"className":"Premium_hairColor_08","name":"Midnight Blue Hair Dye","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_HAIRCOLOR","strArg":"midnightblue"}},{"itemId":490149,"className":"Premium_StatReset_1d","name":"Stat Reset Potion (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Drug_CooltimeDown"}},{"itemId":490150,"className":"Premium_SkillReset_1d","name":"Skill Reset Potion (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Scroll_SkillReset_CBT"}},{"itemId":490151,"className":"Premium_RankReset_1d","name":"Class Change Voucher Lv 4 (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Premium_RankReset_1d"}},{"itemId":490152,"className":"Premium_StatReset_60d","name":"Stat Reset Potion (60 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Drug_CooltimeDown"}},{"itemId":490153,"className":"Premium_SkillReset_60d","name":"Skill Reset Potion (60 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Scroll_SkillReset_CBT"}},{"itemId":490154,"className":"Premium_RankReset_60d","name":"Class Change Voucher Lv 4 (60 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Premium_RankReset_60d"}},{"itemId":490157,"className":"Premium_Thunderuniform_m_box","name":"Class President School Uniform Package (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"PREMIUM_BADUNIFORM_M_1","strArg":"Normal"}},{"itemId":490158,"className":"Premium_Thunderuniform_f_box","name":"Class President School Uniform Package (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"PREMIUM_BADUNIFORM_F_1","strArg":"Normal"}},{"itemId":490159,"className":"Premium_Skulluniform_m_box","name":"Bad Kids School Uniform Package (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"PREMIUM_BADUNIFORM_M_2","strArg":"Normal"}},{"itemId":490160,"className":"Premium_Skulluniform_f_box","name":"Bad Kids School Uniform Package (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"PREMIUM_BADUNIFORM_F_2","strArg":"Normal"}},{"itemId":490161,"className":"steam_emoticonItem_24_46","name":"[Event] Emoticon Plus Package: Popolion","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON_PACK","strArg":"emoticon_00","numArg1":24,"numArg2":46}},{"itemId":490162,"className":"Wedding_Costume_Box","name":"Heart-Throb Wedding Costume Package ","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Wedding_Costume_Box"}},{"itemId":490163,"className":"Wedding_Costume_Box2","name":"My Wedding Costume Package ","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Wedding_Costume2_Box"}},{"itemId":490164,"className":"RestartCristal_Recycle","name":"Soul Crystal (4 Medals)","type":"Etc","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":3600}},{"itemId":490166,"className":"Premium_StatReset_Trade","name":"Shining Stat Reset Potion ","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Drug_CooltimeDown"}},{"itemId":490167,"className":"Premium_SkillReset_Trade","name":"Shining Skill Reset Potion ","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Scroll_SkillReset_CBT"}},{"itemId":490168,"className":"Ability_Point_Box1","name":"Attribute Points Box (Rank S) ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Give_Item","strArg":"Ability_Point_Stone","numArg1":10}},{"itemId":490169,"className":"Ability_Point_Box2","name":"Attribute Points Box (Rank A) ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Give_Item","strArg":"Ability_Point_Stone","numArg1":5}},{"itemId":490170,"className":"Ability_Point_Box3","name":"Attribute Points Box (Rank B) ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Give_Item","strArg":"Ability_Point_Stone","numArg1":2}},{"itemId":490171,"className":"Ability_Point_Box4","name":"Attribute Points Box (Rank C) ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Give_Item","strArg":"Ability_Point_Stone","numArg1":1}},{"itemId":490172,"className":"Magic_Scroll_Box1","name":"Enchant Scroll Box (4 Scrolls) ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Give_MagicScroll","numArg1":4}},{"itemId":490173,"className":"BoostToken_Box1","name":"EXP Tome Box (4 Tomes) ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Give_BosstToken","numArg1":4}},{"itemId":490175,"className":"Recycle_Box_200","name":"Exchange Medal Box Grade A","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_RecycleMedal_Give_Item","strArg":"Recycle_Shop_Medal","numArg1":200}},{"itemId":490176,"className":"Recycle_Box_20","name":"Exchange Medal Box Grade B","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_RecycleMedal_Give_Item","strArg":"Recycle_Shop_Medal","numArg1":20}},{"itemId":490177,"className":"Drung_Box_Ellixer","name":"Advanced Potions Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Box_Ellixer_Give"}},{"itemId":490178,"className":"BlessStone_Box_5","name":"Blessed Shard Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Box_BlessStone_Give","numArg1":5}},{"itemId":490179,"className":"Transcendence_Stone_Box_10","name":"Goddesses' Blessed Gem Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Box_TranscendStone_Give","numArg1":10}},{"itemId":490180,"className":"1706Event_RankReset","name":"Class Change for Rank 6 and Below Voucher Lv 4","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490181,"className":"HiddenJobUnlock_Char4_18","name":"Cleric - Miko (Kannushi) Class Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char4_18","numArg1":6}},{"itemId":490182,"className":"HiddenJobUnlock_Char3_13","name":"Archer - Appraiser Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char3_13","numArg1":5}},{"itemId":490183,"className":"HiddenJobUnlock_Char2_17","name":"Wizard - Rune Caster Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char2_17","numArg1":6}},{"itemId":490184,"className":"HiddenJobUnlock_Char1_13","name":"Scout - Shinobi Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char5_6","numArg1":7}},{"itemId":490185,"className":"Recycle_Box_500","name":"Exchange Medal Box Grade S","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_RecycleMedal_Give_Item","strArg":"Recycle_Shop_Medal","numArg1":500}},{"itemId":490186,"className":"Magic_Scroll_Box3","name":"Enchant Scroll x3 Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Give_MagicScroll","numArg1":3}},{"itemId":490187,"className":"Dungeoncount_Box3","name":"Instanced Dungeon Multiply Token x3","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_DUNGEONCOUNT_BOX","numArg1":3}},{"itemId":490188,"className":"Premium_RocksodonPack_JP","name":"Rocksodon Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ROCKSODON_PACK"}},{"itemId":490189,"className":"Drung_Box_Elixer_Premium","name":"Combat Support Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_DRUNG_BOX_ELIXER_PREMIUM","numArg1":3}},{"itemId":490190,"className":"Premium_Com_27_Pack","name":"Popolion Costume Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_COSTUMEBOX_170704","numArg1":1}},{"itemId":490191,"className":"Premium_Com_28_Pack","name":"Tuxedo Cat Costume Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_COSTUMEBOX_170704","numArg1":2}},{"itemId":490192,"className":"Premium_Com_29_Pack","name":"Fried Chicken Poodle Costume Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_COSTUMEBOX_170704","numArg1":3}},{"itemId":490193,"className":"Premium_TOS_Vacance_M","name":"N/A","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_VACANCE_CUBE_SET","strArg":"Gacha_TP_109","numArg1":3}},{"itemId":490194,"className":"Premium_TOS_Vacance_F","name":"N/A","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_VACANCE_CUBE_SET","strArg":"Gacha_TP_110","numArg1":3}},{"itemId":490195,"className":"DLC_BOX11","name":"Reset Pack","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"DLC_BOX11","strArg":"Normal"}},{"itemId":490196,"className":"Premium_TOS_Wing_Box","name":"Small Wings Triple Set Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_ITEM_WING_BOX"}},{"itemId":490198,"className":"Tiecat_Costume_Box_M","name":"Tuxedo Cat Costume Set Box (Male)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_ITEM_COSTUME_BOX","strArg":"HAIR_M_127;costume_Com_28"}},{"itemId":490199,"className":"Tiecat_Costume_Box_F","name":"Tuxedo Cat Costume Set Box (Female)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_ITEM_COSTUME_BOX","strArg":"HAIR_F_128;costume_Com_28"}},{"itemId":490200,"className":"Poodle_Costume_Box_M","name":"Fried Chicken Poodle Costume Set Box (Male)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_ITEM_COSTUME_BOX","strArg":"HAIR_M_126;costume_Com_29"}},{"itemId":490201,"className":"Poodle_Costume_Box_F","name":"Fried Chicken Poodle Costume Set Box (Female)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_ITEM_COSTUME_BOX","strArg":"HAIR_F_127;costume_Com_29"}},{"itemId":490202,"className":"Poporion_Costume_Box_M","name":"Popolion Costume Set Box (Male)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_ITEM_COSTUME_BOX","strArg":"HAIR_M_128;costume_Com_27"}},{"itemId":490203,"className":"Poporion_Costume_Box_F","name":"Popolion Costume Set Box (Female)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_ITEM_COSTUME_BOX","strArg":"HAIR_F_129;costume_Com_27"}},{"itemId":490204,"className":"Pengguin_Costume_Box_M","name":"Penguin Costume Set Box (Male)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_ITEM_COSTUME_BOX"}},{"itemId":490205,"className":"Pengguin_Costume_Box_F","name":"Penguin Costume Set Box (Female)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_ITEM_COSTUME_BOX"}},{"itemId":490206,"className":"Keppa_Costume_Box_M","name":"Kepa Costume Set Box (Male)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_ITEM_COSTUME_BOX","strArg":"HAIR_M_131;costume_Com_27"}},{"itemId":490207,"className":"Keppa_Costume_Box_F","name":"Kepa Costume Set Box (Female)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_ITEM_COSTUME_BOX","strArg":"HAIR_F_132;costume_Com_27"}},{"itemId":490208,"className":"Hanaming_Costume_Box_M","name":"Hanaming Costume Set Box (Male)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_ITEM_COSTUME_BOX","strArg":"HAIR_M_130;costume_Com_27"}},{"itemId":490209,"className":"Hanaming_Costume_Box_F","name":"Hanaming Costume Set Box (Female)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_ITEM_COSTUME_BOX","strArg":"HAIR_F_131;costume_Com_27"}},{"itemId":490210,"className":"TeamBat_Abil_Point_Stone_1000","name":"1,000 Attribute Points (TBL)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":490211,"className":"TeamBat_Abil_Point_Stone_500","name":"500 Attribute Points (TBL)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":500}},{"itemId":490212,"className":"TeamBat_Abil_Point_Stone_100","name":"100 Attribute Points (TBL)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":100}},{"itemId":490213,"className":"TeamBat_Enchantchip","name":"Enchant Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":490214,"className":"Magic_Scroll_Box4","name":"Enchant Scroll Box (x10)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Give_MagicScroll","numArg1":10}},{"itemId":490215,"className":"Bunny_M_Package","name":"Bunny Costume Package (Male)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_ITEM_COSTUME_BOX","strArg":"Bunny_m_Box;Gacha_TP_113","numArg1":10}},{"itemId":490216,"className":"Bunny_F_Package","name":"Bunny Costume Package (Female)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_ITEM_COSTUME_BOX","strArg":"Bunny_f_Box;Gacha_TP_113","numArg1":10}},{"itemId":490217,"className":"Nurse_M_Package","name":"Nurse Costume Package (Male)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_ITEM_COSTUME_BOX","strArg":"Nurse_m_Box;Gacha_TP_112","numArg1":10}},{"itemId":490218,"className":"Nurse_F_Package","name":"Nurse Costume Package (Female)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_ITEM_COSTUME_BOX","strArg":"Nurse_f_Box;Gacha_TP_112","numArg1":10}},{"itemId":490219,"className":"Token_Box_5","name":"Token Box (x5)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_ITEM_TOKEN_BOX","numArg1":5}},{"itemId":490220,"className":"Token_Box_10","name":"Token Box (x10)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_ITEM_TOKEN_BOX","numArg1":10}},{"itemId":490221,"className":"TOS_Starter_Pack_THI","name":"TOS Starter Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_TOSSTARER_THI"}},{"itemId":490222,"className":"Popolion_Starter_Pack_THI","name":"Popolion Starter Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_POPOLIONSTARER_THI"}},{"itemId":490223,"className":"Hannaming_Starter_Pack_THI","name":"Hanaming Starter Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_HANNAMONGSTARER_THI"}},{"itemId":490224,"className":"Hanbok02_Pack_M","name":"Abundant Chuseok Package (Male)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_CHUSEOK_COSTUME_BOX","strArg":"costume_Com_68","numArg1":10}},{"itemId":490225,"className":"Hanbok02_Pack_F","name":"Abundant Thanksgiving Package (Female)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_CHUSEOK_COSTUME_BOX","strArg":"costume_Com_69","numArg1":10}},{"itemId":490226,"className":"Stuff_box_c","name":"Living Support Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_STUFF_BOX_C","numArg1":3}},{"itemId":490227,"className":"Premium_ClassMajorQuestCount_5add","name":"Master Quest 5-time Challenge Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CLASSMAJORQUESTCOUNT_5ADD"}},{"itemId":490228,"className":"Premium_RankRollback","name":"Rank Reset Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490229,"className":"Halloween_Box_premium_m","name":"Halloween Costume Package (Male)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_VAMPIRE","strArg":"costume_Com_70","numArg1":10}},{"itemId":490230,"className":"Halloween_Box_premium_f","name":"Halloween Costume Package (Female)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_VAMPIRE","strArg":"costume_Com_71","numArg1":10}},{"itemId":490235,"className":"PremiumToken_15d_vk","name":"Token: (15 Days) [Vakarine]","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1295999,"numArg2":300000}},{"itemId":490236,"className":"Premium_Change_Guild_Emblem","name":"Guild Emblem Change Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490237,"className":"Premium_repairPotion_NR","name":"Superior Urgent Repair Kit","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":1000000}},{"itemId":490238,"className":"Premium_repairPotion_Box","name":"Superior Urgent Repair Set","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Premium_repairPotion_Box"}},{"itemId":490239,"className":"Premium_MonsterCardAlbum_Taiwan","name":"Monster Card Album Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_MONSTERCARDALBUM_TAIWAN"}},{"itemId":490240,"className":"Challenge_Abil_Point_Stone_1000","name":"1,000 Attribute Points(Challenge Mode Reward)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":490241,"className":"Challenge_Abil_Point_Stone_500","name":"500 Attribute Points (Challenge Mode Reward)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":500}},{"itemId":490242,"className":"Raid_Stone_Box_S","name":"Raid Portal Stone Box (x20)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_RAID_STONE_BOX","numArg1":20}},{"itemId":490243,"className":"Raid_Stone_Box_A","name":"Raid Portal Stone Box (x5)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_RAID_STONE_BOX","numArg1":5}},{"itemId":490244,"className":"Card_Box_A","name":"Lv 10 Enhancement Card Book","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CARD_BOX","numArg1":2}},{"itemId":490245,"className":"chrismas2017_Costume_f","name":"Santa Costume Package (Female)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_CHRISTMAS2017_COSTUME","strArg":"costume_Com_76","numArg1":10}},{"itemId":490246,"className":"chrismas2017_Costume_m","name":"Santa Costume Package (Male)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_CHRISTMAS2017_COSTUME","strArg":"costume_Com_75","numArg1":10}},{"itemId":490247,"className":"Rudolph_Costume_Box","name":"Rudolph Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_RUDOLPH_COSTUME_BOX","numArg1":10}},{"itemId":490248,"className":"GoldMoru_Box_S","name":"Merchant Golden Anvil Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GOLD_MOUR_BOX_GIVE_ITEM","strArg":"Moru_Gold_TA_NR","numArg1":5}},{"itemId":490249,"className":"SnowFlower_Costume_m","name":"Premium Snowflake Package (Male)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SNOWFLOWER_COSTUME_GIVE_ITEM","strArg":"costume_Com_78"}},{"itemId":490250,"className":"SnowFlower_Costume_f","name":"Premium Snowflake Package (Female)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SNOWFLOWER_COSTUME_GIVE_ITEM","strArg":"costume_Com_79"}},{"itemId":490252,"className":"Fortune_Box_A","name":"Superior Lucky Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_LOOTINC_POTION_A_GIVE_ITEM"}},{"itemId":490253,"className":"Fortune_Box_B","name":"Advanced Lucky Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_LOOTINC_POTION_GIVE_ITEM","strArg":"Drug_Looting_Potion_300","numArg1":3}},{"itemId":490254,"className":"Fortune_Box_C","name":"Lucky Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_LOOTINC_POTION_GIVE_ITEM","strArg":"Drug_Looting_Potion_100","numArg1":5}},{"itemId":490255,"className":"Gold_Socket_Box","name":"Shining Golden Socket Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_SOCEKT_GIVE_ITEM","strArg":"Premium_Socket_Gold","numArg1":3}},{"itemId":490256,"className":"GoldArmor_costume_box_M","name":"Golden Dog Warrior Costume Package (Male)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_GOLDARMOR_GIVE_ITEM","strArg":"costume_Com_81","numArg1":1}},{"itemId":490257,"className":"GoldArmor_costume_box_F","name":"Golden Dog Warrior Costume Package (Female)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_GOLDARMOR_GIVE_ITEM","strArg":"costume_Com_82","numArg1":1}},{"itemId":490258,"className":"Golddog_costume_box","name":"Golden Puppy Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_GOLDDOG_GIVE_ITEM","strArg":"costume_Com_80","numArg1":1}},{"itemId":490260,"className":"Challenge_Reset_Box","name":"Challenge Reset Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHALLENGE_GIVE_ITEM","strArg":"Drug_Looting_Potion_100","numArg1":5}},{"itemId":490262,"className":"Farmer_Costume_Box01","name":"Spring Farmer Boy Costume Box (Male)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_ITEM_COSTUME_BOX","strArg":"costume_Com_94;Hat_629014","numArg1":10}},{"itemId":490263,"className":"Farmer_Costume_Box02","name":"Spring Farmer Girl Costume Box (Female)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_ITEM_COSTUME_BOX","strArg":"costume_Com_95;Hat_629014","numArg1":10}},{"itemId":490264,"className":"Premium_StatReset_30d","name":"Stat Reset Potion (30 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Drug_CooltimeDown"}},{"itemId":490265,"className":"Premium_RankReset_30d","name":"Class Change Voucher Lv 4 (30 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Premium_RankReset_30d"}},{"itemId":490266,"className":"Premium_Abillitypoint","name":"Attribute Reset Potion","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset"}},{"itemId":490267,"className":"Premium_Abillitypoint_14d","name":"Attribute Reset Potion (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset"}},{"itemId":490268,"className":"Ability_Point_Box1_Box_S","name":"Attribute Points Box Rank S (x3)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ABILITY_POINT_BOX1_BOX_GIVE_ITEM","strArg":"Ability_Point_Box1","numArg1":3}},{"itemId":490269,"className":"DiamondMoru_Box_S","name":"Artisan Diamond Anvil Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_DIAMOND_MOUR_BOX_GIVE_ITEM","strArg":"Moru_Diamond","numArg1":5}},{"itemId":490270,"className":"Gacha_TP_114_box","name":"Fairy Wedding Cube x20 + 2 Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_2018_WEDDING_GIVE_ITEM","numArg1":5}},{"itemId":490271,"className":"Premium_Mystic_Glass","name":"Mysterious Magnifier","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Mystic_Glass"}},{"itemId":490272,"className":"Premium_Master_Glass","name":"Artisan Magnifier","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":490273,"className":"HiddenJobUnlock_Char1_20","name":"Swordsman - Nak Muay Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char1_20","numArg1":7}},{"itemId":490274,"className":"Premium_WoodCarviig_Core","name":"Weapon Appearance Material","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"WoodCarving_Core","numArg1":7}},{"itemId":490275,"className":"Premium_WoodCarviig_Core_7d","name":"Weapon Appearance Material (7 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"WoodCarving_Core","numArg1":7}},{"itemId":490276,"className":"Premium_WoodCarviig_Core_14d","name":"Weapon Appearance Material (14 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"WoodCarving_Core","numArg1":7}},{"itemId":490277,"className":"KickOff_Cube_2018","name":"2018 Kickoff Cube","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Gacha_Soccer_2018"}},{"itemId":490278,"className":"KickOff_Package_2018","name":"2018 Kickoff Double Pack","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_2018_SOCCER_PACKAGE_GIVE_ITEM"}},{"itemId":490279,"className":"Soccer_Klape_box","name":"Klaipeda Capricorns Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490280,"className":"Soccer_Orsha_box","name":"Orsha Lions Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490281,"className":"Soccer_Klape_Supporter_box","name":"Klaipeda Supporters Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490282,"className":"Soccer_Orsha_Supporter_box","name":"Orsha Supporters Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490283,"className":"Soccer_whistle_box","name":"Whistle Referee Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490284,"className":"Premium_New_tpBox_500","name":"500 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":500}},{"itemId":490285,"className":"Cube_Reopen_FreePay","name":"Secret Cube Gold Reopen Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Cube_Reopen_Free"}},{"itemId":490286,"className":"Cube_Reopen_FreePay_Box","name":"Secret Cube Gold Reopen Voucher x5 Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CUBE_REOPEN_BOX_GIVE_ITEM","numArg1":5}},{"itemId":490287,"className":"Extract_kit_Sliver_Box","name":"Shining Silver Ichor x3 Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_KIT_SILVER_BOX_GIVE_ITEM","numArg1":3}},{"itemId":490288,"className":"Special_Gift_Box_Leticia_1807","name":"2018 Leticia's Treasure Chest (Season 1)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_1807_GIVE_ITEM"}},{"itemId":490289,"className":"Premium_Event_tpBox_500","name":"500 + 50 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_EVENT_500TP_BOX"}},{"itemId":490290,"className":"Summer_Marine_Box","name":"Summer Marine Cube","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"GACHA_SUMMER_MARINE","numArg1":1}},{"itemId":490291,"className":"Marine01_Box","name":"Romantic Sailor Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490292,"className":"Marine02_Box","name":"Marine Beachwear Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490293,"className":"Marine03_Box","name":"Summer Beachwear Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490294,"className":"Marine01_Sp_Box","name":"Romantic Sailor Whale Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490295,"className":"Marine02_Sp_Box","name":"Marine Beachwear Whale Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490296,"className":"Marine03_Sp_Box","name":"Summer Beachwear Whale Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490297,"className":"Summer_Marine_Box10","name":"Summer Marine Cube x10 +1","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"GACHA_SUMMER_MARINE","numArg1":10}},{"itemId":490298,"className":"PC_Premium_SkillReset","name":"[PP] Skill Reset Potion","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Scroll_SkillReset_CBT"}},{"itemId":490299,"className":"PC_Premium_StatReset","name":"[PP] Stat Reset Potion","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Drug_CooltimeDown"}},{"itemId":490300,"className":"HiddenJobUnlock_Char4_18_pc","name":"[PP] Cleric - Miko (Kannushi) Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char4_18","numArg1":6}},{"itemId":490301,"className":"HiddenJobUnlock_Char3_13_pc","name":"[PP] Archer - Appraiser Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char3_13","numArg1":5}},{"itemId":490302,"className":"HiddenJobUnlock_Char2_17_pc","name":"[PP] Wizard - Rune Caster Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char2_17","numArg1":1}},{"itemId":490303,"className":"HiddenJobUnlock_Char1_13_pc","name":"[PP] Scout - Shinobi Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char5_6","numArg1":7}},{"itemId":490304,"className":"HiddenJobUnlock_Char1_20_pc","name":"[PP] Swordsman - Nak Muay Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char1_20","numArg1":7}},{"itemId":490305,"className":"Marine_Acc_Hair_Box1","name":"Hair Accessory Selection Box: Marine Beret","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":490306,"className":"Marine_Acc_Hair_Box2","name":"Hair Accessory Selection Box: Marine Stripe Glasses","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":490307,"className":"Marine_Acc_Hair_Box3","name":"Hair Accessory Selection Box: Sailor Beret","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":490308,"className":"Marine_Acc_Hair_Box4","name":"Hair Accessory Selection Box: Romantic Marine Scarf","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":490309,"className":"Marine_Acc_Hair_Box5","name":"Hair Accessory Selection Box: Blue Anchor","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":490310,"className":"Marine_Acc_Hair_Box6","name":"Hair Accessory Selection Box: Lighthouse","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":490314,"className":"Special_Gift_Box_Leticia_1808","name":"2018 Leticia's Treasure Chest (Season 2)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_1808_GIVE_ITEM"}},{"itemId":490315,"className":"Chess01_Box","name":"King and Queen Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":490316,"className":"Chess02_Box","name":"Bishop and Knight Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":490317,"className":"Chess03_Box","name":"Rook and Pawn Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":490318,"className":"Special_Gift_Box_Leticia_1809","name":"2018 Leticia's Treasure Chest (Season 3)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_1809_GIVE_ITEM"}},{"itemId":490319,"className":"Inspector01_Box","name":"Royal Envoy Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490320,"className":"Inspector02_Box","name":"Court Scholar Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490321,"className":"Inspector03_Box","name":"Black Ceremonial Robes Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490322,"className":"MoonRabbit_Box","name":"Moon Rabbit Costume Set","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_MOONRABBIT_BOX"}},{"itemId":490323,"className":"Special_Gift_Box_Leticia_1810","name":"2018 Leticia's Treasure Chest (Season 3)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_1810_GIVE_ITEM"}},{"itemId":490327,"className":"CompanionReNameCoupon","name":"Companion Name Change Voucher","type":"Etc","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"CompanionReNameCoupon"}},{"itemId":490328,"className":"Halloween01_Box","name":"White Wolf Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":490329,"className":"Halloween02_Box","name":"Black Cat Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":490330,"className":"Halloween03_Box","name":"Spider Web Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":490331,"className":"Special_Gift_Box_Leticia_1811","name":"2018 Leticia's Treasure Chest (Nov)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_1811_GIVE_ITEM"}},{"itemId":490332,"className":"Premium_RankReset_Point_Lv1","name":"Class Change Voucher Lv 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"Premium_RankReset_Point_Lv1","numArg1":100}},{"itemId":490333,"className":"Premium_RankReset_Point_Lv2","name":"Class Change Voucher Lv 2","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"Premium_RankReset_Point_Lv2","numArg1":500}},{"itemId":490334,"className":"Premium_RankReset_Point_Lv3","name":"Class Change Voucher Lv 3","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"Premium_RankReset_Point_Lv3","numArg1":1000}},{"itemId":490335,"className":"Premium_Reset_Package","name":"Skill+Attribute Reset Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_RESET_PACKAGE_GIVE_ITEM"}},{"itemId":490336,"className":"Rebuild_Master_Glass","name":"[Re:Build] Artisan Magnifier","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":490337,"className":"Nico_Box","name":"Nicopolis Guard Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490338,"className":"Wedding_Costume_Box03","name":"Pit-a-pat Dress and Veil Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_WEDDING_COSTUME_BOX03_GIVE_ITEM"}},{"itemId":490339,"className":"Black_Sailor_Box","name":"Black Sailor Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490340,"className":"Blue_Bunny_Box","name":"Coral Blue Bunny Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490341,"className":"Legend_Card_Box","name":"Legend Card (Demon Lord) Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_LEGEND_CARD_BOX_GIVE_ITEM"}},{"itemId":490342,"className":"Legend_SlotOpen_Card","name":"Legend Card Slot Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":100,"script":{"function":"SCR_QUEST_CLEAR_LEGEND_CARD_LIFT"}},{"itemId":490343,"className":"Legend_Card_Envelope","name":"Legend Card (Demon Lord) Envelope","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":490344,"className":"Premium_Mystic_Glass_Box","name":"Mysterious Magnifier x10 + 1","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_MYSTIC_GLASS_BOX_GIVE_ITEM"}},{"itemId":490345,"className":"Premium_Master_Glass_Box","name":"Artisan Magnifier x10 + 1","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_MASTER_GLASS_BOX_GIVE_ITEM"}},{"itemId":490346,"className":"HiddenJobUnlock_Char4_18_event","name":"[Reward] Cleric - Miko (Kannushi) Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char4_18","numArg1":6}},{"itemId":490347,"className":"HiddenJobUnlock_Char3_13_event","name":"[Reward] Archer - Appraiser Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char3_13","numArg1":5}},{"itemId":490348,"className":"HiddenJobUnlock_Char2_17_event","name":"[Reward] Wizard - Rune Caster Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char2_17","numArg1":1}},{"itemId":490349,"className":"HiddenJobUnlock_Char1_13_event","name":"[Reward] Scout - Shinobi Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char5_6","numArg1":7}},{"itemId":490350,"className":"HiddenJobUnlock_Char1_20_event","name":"[Reward] Swordsman - Nak Muay Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char1_20","numArg1":7}},{"itemId":490351,"className":"Class_Solution_Select_Box2","name":"[Reward] Unlock Voucher Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490352,"className":"Special_Gift_Box_Leticia_1812","name":"2018 Leticia's Treasure Chest (December)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_1812_GIVE_ITEM"}},{"itemId":490353,"className":"Premium_SkillReset_14d_Team","name":"Skill Reset Potion (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Scroll_SkillReset_CBT"}},{"itemId":490355,"className":"Premium_Carviig_Core","name":"Item Appearance Eraser","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"RollbackBriquetting"}},{"itemId":490356,"className":"PremiumToken_New_Return","name":"Token","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":2591950,"numArg2":500000}},{"itemId":490357,"className":"TokenPackage1","name":"Token: Starter Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_TOKENPACKAGE1_GIVE_ITEM"}},{"itemId":490358,"className":"TokenPackage2","name":"Token: Advanced Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_TOKENPACKAGE2_GIVE_ITEM"}},{"itemId":490359,"className":"TokenPackage3","name":"Token: Premium Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_TOKENPACKAGE3_GIVE_ITEM"}},{"itemId":490361,"className":"Premium_repairPotion_Team","name":"Superior Urgent Repair Kit","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"PREMIUM_REPAIR","numArg1":1000000}},{"itemId":490362,"className":"Premium_moneyBox","name":"Silver Chest: 1,000,000","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_MONEYBOX_GIVE_ITEM","numArg1":1000000}},{"itemId":490363,"className":"ChallengeModeReset_NoTrade","name":"Challenge Mode One Entry Voucher (A)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":490364,"className":"Event_Drug_Alche_HP15_Team","name":"Lv15 Basic Condensed HP Potion","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealHP","numArg1":802}},{"itemId":490365,"className":"Event_Drug_Alche_SP15_Team","name":"Lv15 Basic Condensed SP Potion","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_DotBuff","strArg":"Drug_HealSP","numArg1":184}},{"itemId":490366,"className":"CHALLENG_PORTAL_Team","name":"Challenge Portal Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_1712_SECOND_CHALLENG"}},{"itemId":490374,"className":"3years_Guilty_Box","name":"Demon Cube","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"GACHA_GUILTY","numArg1":1}},{"itemId":490375,"className":"3years_Guilty_Box3","name":"Demon Cube x3 + 1","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_3YEARS_GUILTY_BOX3_GIVE_ITEM"}},{"itemId":490376,"className":"3years_Guilty_Box_Uniform","name":"Giltine Follower Robe Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":490377,"className":"3years_Guilty_Box_Helmet","name":"Giltine Follower Hood Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":490378,"className":"Premium_Reset_Package02","name":"Reset Pack","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_RESET_PACKAGE2_GIVE_ITEM"}},{"itemId":490379,"className":"Ability_Point_Stone_10000_Premium","name":"Attribute Points 10,000 Ticket","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":10000}},{"itemId":490380,"className":"2018_Christmas_Costume_Box1","name":"Wrap Me Up Santa Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":490381,"className":"2018_Christmas_Costume_Box2","name":"Fluffy Penguin Costume Set","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_2018_CHRISTMAS_COSTUME_BOX2_GIVE_ITEM"}},{"itemId":490382,"className":"Premium_repairPotion_Box2","name":"Superior Urgent Repair Set","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Premium_repairPotion_Box2"}},{"itemId":490383,"className":"Special_Gift_Box_Leticia_1901","name":"2019 Leticia's Treasure Chest (Season 3)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_1901_GIVE_ITEM"}},{"itemId":490384,"className":"2019_goldPig_box","name":"Lucky Golden Pig Costume Set","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_2019_GOLDPIG_BOX_GIVE_ITEM"}},{"itemId":490385,"className":"1902_hanbok_box01","name":"Hanbok Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490386,"className":"1902_hanbok_box02","name":"Spring Shade Hanbok Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490387,"className":"1902_hanbok_box03","name":"Autumn Shade Hanbok Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":490388,"className":"Extract_kit_Gold_Box","name":"Shining Golden Ichor Box (x10)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_KIT_GOLD_BOX_GIVE_ITEM","numArg1":10}},{"itemId":490389,"className":"Special_Gift_Box_Leticia_1902","name":"2019 Leticia's Treasure Chest (Season 3)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_1902_GIVE_ITEM"}},{"itemId":490392,"className":"Drung_Box_Elixer_Event","name":"[Event] Combat Support Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_DRUNG_BOX_ELIXER_EVENT","numArg1":3}},{"itemId":490393,"className":"1902_NewYear_Package_01","name":"Wake Up Growth Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_1902_NEWYEAR_PACKAGE_01","strArg":"Normal"}},{"itemId":490394,"className":"1902_NewYear_Package_02","name":"Wake Up Card and Gem Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_1902_NEWYEAR_PACKAGE_02","strArg":"Normal"}},{"itemId":490395,"className":"1902_NewYear_Package_03","name":"Wake Up Enhancement Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_1902_NEWYEAR_PACKAGE_03","strArg":"Normal"}},{"itemId":490396,"className":"1902_NewYear_Package_ALL","name":"Wake Up All-in-One Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_1902_NEWYEAR_PACKAGE_ALL","strArg":"Normal"}},{"itemId":490402,"className":"Premium_AbillityArts_Char1_1_1d","name":"Arts Reset Potion - Swordsman (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":1}},{"itemId":490403,"className":"Premium_AbillityArts_Char1_2_1d","name":"Arts Reset Potion - Highlander (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":2}},{"itemId":490404,"className":"Premium_AbillityArts_Char1_3_1d","name":"Arts Reset Potion - Peltasta (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":3}},{"itemId":490405,"className":"Premium_AbillityArts_Char1_4_1d","name":"Arts Reset Potion - Hoplite (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":4}},{"itemId":490406,"className":"Premium_AbillityArts_Char1_6_1d","name":"Arts Reset Potion - Barbarian (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":6}},{"itemId":490407,"className":"Premium_AbillityArts_Char1_7_1d","name":"Arts Reset Potion - Cataphract (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":7}},{"itemId":490408,"className":"Premium_AbillityArts_Char1_9_1d","name":"Arts Reset Potion - Doppelsoeldner (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":9}},{"itemId":490409,"className":"Premium_AbillityArts_Char1_10_1d","name":"Arts Reset Potion - Rodelero (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":10}},{"itemId":490410,"className":"Premium_AbillityArts_Char1_12_1d","name":"Arts Reset Potion - Murmillo (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":12}},{"itemId":490411,"className":"Premium_AbillityArts_Char1_14_1d","name":"Arts Reset Potion - Fencer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":14}},{"itemId":490412,"className":"Premium_AbillityArts_Char1_15_1d","name":"Arts Reset Potion - Dragoon (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":15}},{"itemId":490413,"className":"Premium_AbillityArts_Char1_16_1d","name":"Arts Reset Potion - Templar (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":16}},{"itemId":490414,"className":"Premium_AbillityArts_Char1_17_1d","name":"Arts Reset Potion - Lancer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":17}},{"itemId":490415,"className":"Premium_AbillityArts_Char1_19_1d","name":"Arts Reset Potion - Matador (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":19}},{"itemId":490416,"className":"Premium_AbillityArts_Char1_20_1d","name":"Arts Reset Potion - Nak Muay (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":20}},{"itemId":490417,"className":"Premium_AbillityArts_Char1_18_1d","name":"Arts Reset Potion - Retiarius (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":18}},{"itemId":490418,"className":"Premium_AbillityArts_Char1_21_1d","name":"Arts Reset Potion - Hackapell (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":21}},{"itemId":490419,"className":"Premium_AbillityArts_Char2_1_1d","name":"Arts Reset Potion - Wizard (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":1}},{"itemId":490420,"className":"Premium_AbillityArts_Char2_2_1d","name":"Arts Reset Potion - Pyromancer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":2}},{"itemId":490421,"className":"Premium_AbillityArts_Char2_3_1d","name":"Arts Reset Potion - Cryomancer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":3}},{"itemId":490422,"className":"Premium_AbillityArts_Char2_4_1d","name":"Arts Reset Potion - Psychokino (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":4}},{"itemId":490423,"className":"Premium_AbillityArts_Char2_5_1d","name":"Arts Reset Potion - Alchemist (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":5}},{"itemId":490424,"className":"Premium_AbillityArts_Char2_6_1d","name":"Arts Reset Potion - Sorcerer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":6}},{"itemId":490425,"className":"Premium_AbillityArts_Char2_8_1d","name":"Arts Reset Potion - Chronomancer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":8}},{"itemId":490426,"className":"Premium_AbillityArts_Char2_9_1d","name":"Arts Reset Potion - Necromancer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":9}},{"itemId":490427,"className":"Premium_AbillityArts_Char2_11_1d","name":"Arts Reset Potion - Elementalist (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":11}},{"itemId":490428,"className":"Premium_AbillityArts_Char2_14_1d","name":"Arts Reset Potion - Sage (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":14}},{"itemId":490429,"className":"Premium_AbillityArts_Char2_15_1d","name":"Arts Reset Potion - Warlock (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":15}},{"itemId":490430,"className":"Premium_AbillityArts_Char2_16_1d","name":"Arts Reset Potion - Featherfoot (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":16}},{"itemId":490431,"className":"Premium_AbillityArts_Char2_17_1d","name":"Arts Reset Potion - Rune Caster (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":17}},{"itemId":490432,"className":"Premium_AbillityArts_Char2_19_1d","name":"Arts Reset Potion - Shadowmancer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":19}},{"itemId":490433,"className":"Premium_AbillityArts_Char2_20_1d","name":"Arts Reset Potion - Onmyoji (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":20}},{"itemId":490434,"className":"Premium_AbillityArts_Char2_21_1d","name":"Arts Reset Potion - Taoist (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":21}},{"itemId":490435,"className":"Premium_AbillityArts_Char2_22_1d","name":"Arts Reset Potion - Bokor (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":22}},{"itemId":490436,"className":"Premium_AbillityArts_Char3_1_1d","name":"Arts Reset Potion - Archer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":1}},{"itemId":490437,"className":"Premium_AbillityArts_Char3_2_1d","name":"Arts Reset Potion - Hunter (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":2}},{"itemId":490438,"className":"Premium_AbillityArts_Char3_3_1d","name":"Arts Reset Potion - Quarrel Shooter (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":3}},{"itemId":490439,"className":"Premium_AbillityArts_Char3_4_1d","name":"Arts Reset Potion - Ranger (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":4}},{"itemId":490440,"className":"Premium_AbillityArts_Char3_5_1d","name":"Arts Reset Potion - Sapper (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":5}},{"itemId":490441,"className":"Premium_AbillityArts_Char3_6_1d","name":"Arts Reset Potion - Wugushi (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":6}},{"itemId":490442,"className":"Premium_AbillityArts_Char3_11_1d","name":"Arts Reset Potion - Fletcher (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":11}},{"itemId":490443,"className":"Premium_AbillityArts_Char3_12_1d","name":"Arts Reset Potion - Pied Piper (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":12}},{"itemId":490444,"className":"Premium_AbillityArts_Char3_13_1d","name":"Arts Reset Potion - Appraiser (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":13}},{"itemId":490445,"className":"Premium_AbillityArts_Char3_14_1d","name":"Arts Reset Potion - Falconer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":14}},{"itemId":490446,"className":"Premium_AbillityArts_Char3_15_1d","name":"Arts Reset Potion - Cannoneer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":15}},{"itemId":490447,"className":"Premium_AbillityArts_Char3_16_1d","name":"Arts Reset Potion - Musketeer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":16}},{"itemId":490448,"className":"Premium_AbillityArts_Char3_17_1d","name":"Arts Reset Potion - Mergen (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":17}},{"itemId":490449,"className":"Premium_AbillityArts_Char3_18_1d","name":"Arts Reset Potion - Matross (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":18}},{"itemId":490450,"className":"Premium_AbillityArts_Char3_19_1d","name":"Arts Reset Potion - Tiger Hunter (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":19}},{"itemId":490451,"className":"Premium_AbillityArts_Char4_1_1d","name":"Arts Reset Potion - Cleric (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":1}},{"itemId":490452,"className":"Premium_AbillityArts_Char4_2_1d","name":"Arts Reset Potion - Priest (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":2}},{"itemId":490453,"className":"Premium_AbillityArts_Char4_3_1d","name":"Arts Reset Potion - Krivis (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":3}},{"itemId":490454,"className":"Premium_AbillityArts_Char4_5_1d","name":"Arts Reset Potion - Druid (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":5}},{"itemId":490455,"className":"Premium_AbillityArts_Char4_6_1d","name":"Arts Reset Potion - Sadhu (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":6}},{"itemId":490456,"className":"Premium_AbillityArts_Char4_7_1d","name":"Arts Reset Potion - Dievdirbys (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":7}},{"itemId":490457,"className":"Premium_AbillityArts_Char4_8_1d","name":"Arts Reset Potion - Oracle (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":8}},{"itemId":490458,"className":"Premium_AbillityArts_Char4_9_1d","name":"Arts Reset Potion - Monk (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":9}},{"itemId":490459,"className":"Premium_AbillityArts_Char4_10_1d","name":"Arts Reset Potion - Pardoner (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":10}},{"itemId":490460,"className":"Premium_AbillityArts_Char4_11_1d","name":"Arts Reset Potion - Paladin (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":11}},{"itemId":490461,"className":"Premium_AbillityArts_Char4_12_1d","name":"Arts Reset Potion - Chaplain (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":12}},{"itemId":490462,"className":"Premium_AbillityArts_Char4_14_1d","name":"Arts Reset Potion - Plague Doctor (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":14}},{"itemId":490463,"className":"Premium_AbillityArts_Char4_15_1d","name":"Arts Reset Potion - Kabbalist (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":15}},{"itemId":490464,"className":"Premium_AbillityArts_Char4_16_1d","name":"Arts Reset Potion - Inquisitor (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":16}},{"itemId":490465,"className":"Premium_AbillityArts_Char4_18_1d","name":"Arts Reset Potion - Miko (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":18}},{"itemId":490466,"className":"Premium_AbillityArts_Char4_19_1d","name":"Arts Reset Potion - Zealot (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":19}},{"itemId":490467,"className":"Premium_AbillityArts_Char4_20_1d","name":"Arts Reset Potion - Exorcist (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":20}},{"itemId":490468,"className":"Premium_AbillityArts_Char5_1_1d","name":"Arts Reset Potion - Scout (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":1}},{"itemId":490469,"className":"Premium_AbillityArts_Char5_2_1d","name":"Arts Reset Potion - Assassin (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":2}},{"itemId":490470,"className":"Premium_AbillityArts_Char5_3_1d","name":"Arts Reset Potion - Outlaw (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":3}},{"itemId":490471,"className":"Premium_AbillityArts_Char5_4_1d","name":"Arts Reset Potion - Squire (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":4}},{"itemId":490472,"className":"Premium_AbillityArts_Char5_5_1d","name":"Arts Reset Potion - Corsair (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":5}},{"itemId":490473,"className":"Premium_AbillityArts_Char5_6_1d","name":"Arts Reset Potion - Shinobi (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":6}},{"itemId":490474,"className":"Premium_AbillityArts_Char5_7_1d","name":"Arts Reset Potion - Thaumaturge (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":7}},{"itemId":490475,"className":"Premium_AbillityArts_Char5_8_1d","name":"Arts Reset Potion - Enchanter (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":8}},{"itemId":490476,"className":"Premium_AbillityArts_Char5_9_1d","name":"Arts Reset Potion - Linker (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":9}},{"itemId":490477,"className":"Premium_AbillityArts_Char5_10_1d","name":"Arts Reset Potion - Rogue (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":10}},{"itemId":490478,"className":"Premium_AbillityArts_Char5_11_1d","name":"Arts Reset Potion - Schwarzer Reiter (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":11}},{"itemId":490479,"className":"Premium_AbillityArts_Char5_12_1d","name":"Arts Reset Potion - Bullet Marker (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":12}},{"itemId":490480,"className":"Premium_AbillityArts_Char5_13_1d","name":"Arts Reset Potion - Ardito (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":13}},{"itemId":490481,"className":"Premium_AbillityArts_Char5_14_1d","name":"Arts Reset Potion - Sheriff (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":14}},{"itemId":490482,"className":"Premium_AbillityArts_Matross14_1d","name":"Arts Reset Potion - Crouching Strike: Lightning (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":319014}},{"itemId":490483,"className":"Premium_AbillityArts_Oracle23_1d","name":"Arts Reset Potion - Divine Might: Ill Omen (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":411023}},{"itemId":490484,"className":"Premium_AbillityArts_Sorcerer19_1d","name":"Arts Reset Potion - Summoning: Self (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":208015}},{"itemId":490485,"className":"Premium_AbillityArts_Char1_22_1d","name":"Arts Reset Potion - Blossom Blader (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":22}},{"itemId":490486,"className":"Premium_AbillityArts_Char2_23_1d","name":"Arts Reset Potion - Terramancer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":23}},{"itemId":490487,"className":"Premium_AbillityArts_Char3_20_1d","name":"Arts Reset Potion - Arbalester (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":20}},{"itemId":490488,"className":"Premium_AbillityArts_Char4_21_1d","name":"Arts Reset Potion - Crusader (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":21}},{"itemId":490489,"className":"Premium_AbillityArts_Char5_15_1d","name":"Arts Reset Potion - Rangda (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":15}},{"itemId":490490,"className":"Premium_AbillityArts_Char3_21_1d","name":"Arts Reset Potion - Arquebusier (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":21}},{"itemId":490491,"className":"Premium_AbillityArts_Char5_16_1d","name":"Arts Reset Potion - Clown (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":16}},{"itemId":491001,"className":"PremiumToken_60d","name":"Token: 60 Days","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":5183999,"numArg2":500000}},{"itemId":491002,"className":"DLC_BOX1","name":"Founder's Server : Exclusive Access 1","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"DLC_BOX1","strArg":"Normal"}},{"itemId":491003,"className":"steam_Premium_tpBox_650","name":"650 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":650}},{"itemId":491004,"className":"steam_Premium_tpBox_380","name":"380 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":380}},{"itemId":491005,"className":"steam_Premium_tpBox_160","name":"160 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":160}},{"itemId":491006,"className":"DLC_BOX2","name":"Founder's Server : Exclusive Access 2","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"DLC_BOX2","strArg":"Normal"}},{"itemId":491007,"className":"DLC_BOX3","name":"Founder's Server : Exclusive Access 3","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"DLC_BOX3","strArg":"Normal"}},{"itemId":491008,"className":"steam_Premium_tpBox_50","name":"50 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":50}},{"itemId":491009,"className":"steam_Premium_tpBox_100","name":"100 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":100}},{"itemId":491010,"className":"steam_Premium_SkillReset","name":"Skill Reset Potion","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Scroll_SkillReset_CBT"}},{"itemId":491011,"className":"steam_Premium_StatReset","name":"Stat Reset Potion","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Drug_CooltimeDown"}},{"itemId":491012,"className":"steam_PremiumToken_30day","name":"Token","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":2591950,"numArg2":500000}},{"itemId":491013,"className":"steam_PremiumToken_60d","name":"Token: 60 Days","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":5183999,"numArg2":500000}},{"itemId":491014,"className":"dontuseItem01","name":"Unused Item","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":445}},{"itemId":491015,"className":"dontuseItem02","name":"Unused Item","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":660}},{"itemId":491016,"className":"steam_Premium_tpBox_455","name":"455 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":455}},{"itemId":491017,"className":"steam_Premium_tpBox_266","name":"266 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":266}},{"itemId":491018,"className":"steam_Premium_tpBox_112","name":"112 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":112}},{"itemId":491019,"className":"DLC_BOX4","name":"Founder's Server : Exclusive Access 1 (-50%)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"DLC_BOX4","strArg":"Normal"}},{"itemId":491020,"className":"DLC_BOX5","name":"Founder's Server : Exclusive Access 2 (-50%)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"DLC_BOX5","strArg":"Normal"}},{"itemId":491021,"className":"DLC_BOX6","name":"Beginner's Pack","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"DLC_BOX6","strArg":"Normal"}},{"itemId":491022,"className":"steam_Premium_tpBox_190","name":"190 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":190}},{"itemId":491023,"className":"DLC_BOX7","name":"Veteran's Pack","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"DLC_BOX7","strArg":"Normal"}},{"itemId":491024,"className":"steam_PremiumToken_7d","name":"Token: 7 Days [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":604799}},{"itemId":491025,"className":"DLC_BOX8","name":"Novice Pack","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"DLC_BOX8","strArg":"Normal"}},{"itemId":491026,"className":"Premium_Enchantchip_10","name":"10x Enchant Scroll Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"GIVE_ENCHANTSCROLL_10","strArg":"Normal"}},{"itemId":491027,"className":"Mic_bundle10","name":"10x Megaphone Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"GIVE_MIC_10","strArg":"Normal"}},{"itemId":491028,"className":"DLC_BOX9","name":"Fresh Start Pack","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"DLC_BOX9","strArg":"Normal"}},{"itemId":491029,"className":"steam_Premium_SkillReset_1","name":"Skill Reset Potion","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Scroll_SkillReset_CBT"}},{"itemId":491030,"className":"steam_Premium_StatReset_1","name":"Stat Reset Potion","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Drug_CooltimeDown"}},{"itemId":491031,"className":"Premium_Enchantchip14_NoStack","name":"Enchant Scroll (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":491032,"className":"Premium_eventTpBox_65","name":"65 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","strArg":"AddTPitem","numArg1":65}},{"itemId":492001,"className":"Premium_eventTpBox_1","name":"1 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":1}},{"itemId":492002,"className":"Premium_eventTpBox_2","name":"2 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":2}},{"itemId":492003,"className":"Premium_eventTpBox_3","name":"3 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":3}},{"itemId":492004,"className":"Premium_eventTpBox_4","name":"4 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":4}},{"itemId":492005,"className":"Premium_eventTpBox_5","name":"5 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":5}},{"itemId":492006,"className":"Premium_eventTpBox_6","name":"6 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":6}},{"itemId":492007,"className":"Premium_eventTpBox_7","name":"7 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":7}},{"itemId":492008,"className":"Premium_eventTpBox_8","name":"8 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":8}},{"itemId":492009,"className":"Premium_eventTpBox_9","name":"9 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":9}},{"itemId":492010,"className":"Premium_eventTpBox_11","name":"11 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":11}},{"itemId":492011,"className":"Premium_eventTpBox_13","name":"13 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":13}},{"itemId":492012,"className":"Premium_eventTpBox_14","name":"14 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":14}},{"itemId":492013,"className":"Premium_eventTpBox_16","name":"16 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":16}},{"itemId":492014,"className":"Premium_eventTpBox_19","name":"19 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":19}},{"itemId":492015,"className":"Premium_eventTpBox_23","name":"23 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":23}},{"itemId":492016,"className":"Premium_eventTpBox_26","name":"26 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":26}},{"itemId":492017,"className":"Premium_eventTpBox_29","name":"29 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":29}},{"itemId":492018,"className":"Premium_eventTpBox_33","name":"33 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":33}},{"itemId":492019,"className":"Premium_eventTpBox_34","name":"34 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":34}},{"itemId":492020,"className":"Premium_eventTpBox_35","name":"35 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":35}},{"itemId":492021,"className":"Premium_eventTpBox_36","name":"36 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":36}},{"itemId":492022,"className":"Premium_eventTpBox_37","name":"37 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":37}},{"itemId":492023,"className":"Premium_eventTpBox_39","name":"39 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":39}},{"itemId":492024,"className":"Premium_eventTpBox_44","name":"44 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":44}},{"itemId":492025,"className":"Premium_eventTpBox_49","name":"49 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":49}},{"itemId":492026,"className":"Premium_eventTpBox_66","name":"66 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":66}},{"itemId":492027,"className":"Premium_eventTpBox_75","name":"75 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":75}},{"itemId":492028,"className":"Premium_eventTpBox_82","name":"82 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":82}},{"itemId":492029,"className":"Premium_eventTpBox_89","name":"89 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":89}},{"itemId":492030,"className":"Premium_eventTpBox_99","name":"99 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":99}},{"itemId":492031,"className":"Premium_eventTpBox_113","name":"113 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":113}},{"itemId":492032,"className":"Premium_eventTpBox_115","name":"115 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":115}},{"itemId":492033,"className":"Premium_eventTpBox_132","name":"132 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":132}},{"itemId":492034,"className":"Premium_eventTpBox_133","name":"133 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":133}},{"itemId":492035,"className":"Premium_eventTpBox_148","name":"148 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":148}},{"itemId":492036,"className":"Premium_eventTpBox_165","name":"165 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":165}},{"itemId":492037,"className":"Premium_eventTpBox_198","name":"198 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":198}},{"itemId":492038,"className":"Premium_eventTpBox_231","name":"231 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":231}},{"itemId":492039,"className":"Premium_eventTpBox_297","name":"297 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":297}},{"itemId":492040,"className":"Premium_eventTpBox_330","name":"330 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":330}},{"itemId":492041,"className":"Premium_eventTpBox_379","name":"379 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":379}},{"itemId":492042,"className":"Premium_eventTpBox_445","name":"445 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":445}},{"itemId":492043,"className":"Premium_eventTpBox_495","name":"495 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":495}},{"itemId":492044,"className":"Premium_eventTpBox_660","name":"660 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":660}},{"itemId":492045,"className":"Premium_eventTpBox_990","name":"990 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":990}},{"itemId":492046,"className":"Premium_eventTpBox_1056","name":"1056 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":1056}},{"itemId":492047,"className":"Premium_eventTpBox_1320","name":"1320 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":1320}},{"itemId":492048,"className":"Premium_eventTpBox_1650","name":"1650 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":1650}},{"itemId":492049,"className":"Premium_eventTpBox_1980","name":"1980 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":1980}},{"itemId":492050,"className":"Premium_eventTpBox_3300","name":"3300 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":3300}},{"itemId":492051,"className":"Premium_eventTpBox_6600","name":"6600 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":6600}},{"itemId":492052,"className":"Premium_eventTpBox_10","name":"10 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":10}},{"itemId":492053,"className":"Premium_eventTpBox_15","name":"15 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":15}},{"itemId":492054,"className":"Premium_eventTpBox_20","name":"20 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":20}},{"itemId":492055,"className":"Premium_eventTpBox_25","name":"25 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":25}},{"itemId":492056,"className":"Premium_eventTpBox_30","name":"30 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":30}},{"itemId":492057,"className":"Premium_eventTpBox_5_2","name":"5 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":5}},{"itemId":492058,"className":"Premium_eventTpBox_24","name":"24 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":24}},{"itemId":492059,"className":"Premium_eventTpBox_5_3","name":"5 TP [Event - 14 Days]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":5}},{"itemId":492060,"className":"Premium_eventTpBox_30_2","name":"30 TP [Event - 14 Days]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":30}},{"itemId":492061,"className":"Premium_eventTpBox_1000","name":"1000 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":1000}},{"itemId":492062,"className":"Premium_eventTpBox_200","name":"200 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":200}},{"itemId":492063,"className":"Premium_eventTpBox_300","name":"300 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":300}},{"itemId":492064,"className":"Premium_eventTpBox_400","name":"400 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":400}},{"itemId":492065,"className":"Premium_eventTpBox_120","name":"120 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":120}},{"itemId":492066,"className":"Premium_eventTpBox_60","name":"60 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":60}},{"itemId":492067,"className":"Premium_eventTpBox_150_2","name":"150 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":150}},{"itemId":492068,"className":"Premium_eventTpBox_50_2","name":"50 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":50}},{"itemId":492069,"className":"Premium_eventTpBox_100_2","name":"100 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":100}},{"itemId":492070,"className":"Premium_eventTpBox_10_3","name":"30 TP [Event - 14 Days]","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":10}},{"itemId":492071,"className":"Premium_eventTpBox_500","name":"500 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":500}},{"itemId":493001,"className":"Premium_tpBox_16","name":"16 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":16}},{"itemId":493002,"className":"Premium_tpBox_33","name":"30 TP + 3","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":33}},{"itemId":493003,"className":"Premium_tpBox_49","name":"49 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":49}},{"itemId":493004,"className":"Premium_tpBox_66","name":"66 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":66}},{"itemId":493005,"className":"Premium_tpBox_82","name":"82 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":82}},{"itemId":493006,"className":"Premium_tpBox_99","name":"99 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":99}},{"itemId":493007,"className":"Premium_tpBox_115","name":"115 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":115}},{"itemId":493008,"className":"Premium_tpBox_132","name":"132 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":132}},{"itemId":493009,"className":"Premium_tpBox_148","name":"148 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":148}},{"itemId":493010,"className":"Premium_tpBox_165","name":"165 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":165}},{"itemId":493011,"className":"Premium_tpBox_198","name":"198 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":198}},{"itemId":493012,"className":"Premium_tpBox_330","name":"330 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":330}},{"itemId":493013,"className":"Premium_tpBox_379","name":"379 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":379}},{"itemId":493014,"className":"Premium_tpBox_445","name":"445 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":445}},{"itemId":493015,"className":"Premium_tpBox_660","name":"660 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":660}},{"itemId":493016,"className":"Premium_tpBox_990","name":"990 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":990}},{"itemId":493017,"className":"Premium_tpBox_1650","name":"1650 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":1650}},{"itemId":493018,"className":"Premium_tpBox_3300","name":"3300 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":3300}},{"itemId":493019,"className":"Premium_tpBox_6600","name":"6600 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":6600}},{"itemId":493020,"className":"Premium_tpBox_350","name":"350 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":350}},{"itemId":493021,"className":"Premium_tpBox_450","name":"450 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":450}},{"itemId":493022,"className":"Premium_tpBox_396","name":"396 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":396}},{"itemId":493023,"className":"Premium_tpBox_16500","name":"16500 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":16500}},{"itemId":493024,"className":"Premium_eventTpBox_50_3","name":"[Event] 50 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","numArg1":50}},{"itemId":493025,"className":"Premium_tpBox_110","name":"100 TP + 10","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":110}},{"itemId":493026,"className":"Premium_tpBox_340","name":"300 TP + 10 + 30","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":340}},{"itemId":493027,"className":"Premium_tpBox_580","name":"500 TP + 30 + 50","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":580}},{"itemId":493028,"className":"Premium_tpBox_1080","name":"900 TP + 90 + 90","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":1080}},{"itemId":493029,"className":"Premium_tpBox_3","name":"3 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":3}},{"itemId":494052,"className":"steaml_Premium_eventTpBox_20","name":"20 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","strArg":"AddTPitem","numArg1":20}},{"itemId":494053,"className":"steam_Premium_eventTpBox_30","name":"30 TP [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GIFTTP","strArg":"AddTPitem","numArg1":30}},{"itemId":494054,"className":"DLC_BOX10","name":"Goddess Lada's Present","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"DLC_BOX10","strArg":"Normal"}},{"itemId":494055,"className":"DLC_BOX12","name":"Tree of Savior - Master Blacksmith Pack","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"DLC_BOX12","strArg":"Normal"}},{"itemId":494056,"className":"Steam_egg_021_Pack","name":"Shining Battlebird Egg Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CROW_2018","strArg":"Normal"}},{"itemId":494057,"className":"Steam_egg_011_Pack","name":"Shining Penguin Egg Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"SelectBox_Care_Penguin_Trade/1;food_penguin/50;","numArg1":3}},{"itemId":494058,"className":"DLC_BOX_2YEARS","name":"TOS - Second Anniversary Present","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"DLC_BOX_2YEARS","strArg":"Normal"}},{"itemId":494059,"className":"Steam_Secret_Recipe_315_Box","name":"Artisan Weapon Secret Recipe Box (Lv. 315)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":100000}},{"itemId":494062,"className":"HiddenJobUnlock_Char4_18_Steam","name":"[Event] Miko Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char4_18","numArg1":6}},{"itemId":494063,"className":"HiddenJobUnlock_Char3_13_Steam","name":"[Event] Appraiser Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char3_13","numArg1":5}},{"itemId":494064,"className":"HiddenJobUnlock_Char2_17_Steam","name":"[Event] Rune Caster Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char2_17","numArg1":6}},{"itemId":494065,"className":"HiddenJobUnlock_Char1_13_Steam","name":"[Event] Shinobi Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char1_13","numArg1":7}},{"itemId":494066,"className":"HiddenJobUnlock_Char1_20_Steam","name":"[Event] Nak Muay Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char1_20","numArg1":7}},{"itemId":494068,"className":"HiddenJobUnlock_Char4_18_Event2","name":"[Event] Cleric - Miko (Kannushi) Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char4_18","numArg1":6}},{"itemId":494069,"className":"HiddenJobUnlock_Char3_13_Event2","name":"[Event] Archer - Appraiser Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char3_13","numArg1":5}},{"itemId":494070,"className":"HiddenJobUnlock_Char2_17_Event2","name":"[Event] Wizard - Rune Caster Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char2_17","numArg1":6}},{"itemId":494071,"className":"HiddenJobUnlock_Char1_13_Event2","name":"[Event] Scout - Shinobi Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char5_6","numArg1":7}},{"itemId":494072,"className":"HiddenJobUnlock_Char1_20_Event2","name":"[Event] Swordsman - Nak Muay Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char1_20","numArg1":7}},{"itemId":494073,"className":"Premium_ExchangeWeapon_Core","name":"Weapon Type Material","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"ExchangeWeapon_Core","numArg1":7}},{"itemId":494074,"className":"Premium_ExchangeWeapon_Book","name":"Weapon Type Change Tome","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"ExchangeWeapon_Book","numArg1":7}},{"itemId":494075,"className":"Special_Gift_Box_Leticia_1903","name":"2019 Leticia's Treasure Chest (Season 2)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_1903_GIVE_ITEM"}},{"itemId":494076,"className":"1903_magicalgirl_normal_box","name":"Mystic Savior School Uniform Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494077,"className":"1903_magicalgirl_yellow_box","name":"Mystic Savior - Diamond Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494078,"className":"1903_magicalgirl_red_box","name":"Mystic Savior - Heart Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494080,"className":"1903_astronaut_selelctbox","name":"GM's Astro Ambition Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494081,"className":"1903_detective_selectbox","name":"Private-Eye Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494082,"className":"1903_kindergartener_selectbox","name":"Laima Kindergarten Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494083,"className":"1904_treee_planting_day_selectbox","name":"I♥TOS Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494084,"className":"1904_astronaut02_selelctbox","name":"Martian Ambition Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494085,"className":"Premium_Mystic_Glass_Event2","name":"[Event] Mysterious Magnifier","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Mystic_Glass"}},{"itemId":494086,"className":"Premium_Master_Glass_Event2","name":"[Event] Artisan Magnifier","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":494087,"className":"Event_RankReset_Event","name":"[Event] Class Change Voucher Lv 4","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Event_RankReset"}},{"itemId":494088,"className":"Special_Gift_Box_Leticia_1904","name":"2019 Leticia's Treasure Chest (April)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_1904_GIVE_ITEM"}},{"itemId":494089,"className":"STEAM_MASTER_Premium_Enchantchip","name":"Artisan Enchant Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":494090,"className":"STEAM_MASTER_Premium_Enchantchip_Box","name":"Artisan Enchant Scroll x5 Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_STEAM_MASTER_Premium_Enchantchip_Box","numArg1":3,"numArg2":3}},{"itemId":494091,"className":"STEAM_Premium_Token_Box_2","name":"Double Happy Bag (Token x2)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIVE_ITEM_TOKEN_BOX","numArg1":2}},{"itemId":494092,"className":"Steam_Darkness_Package","name":"Dark Energy Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Steam_Darkness_Package","strArg":"Normal"}},{"itemId":494093,"className":"Steam_Darkness_Package_Card_Gem","name":"Dark Card & Gem Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Steam_Darkness_Package_Card_Gem","strArg":"Normal"}},{"itemId":494094,"className":"Steam_Darkness_Package_all","name":"Dark Energy All-in-One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Steam_Darkness_Package_all","strArg":"Normal"}},{"itemId":494095,"className":"1905_romance_selectbox01","name":"Elegant Noble Party Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494096,"className":"1905_romance_selectbox02","name":"Red Rose Knight Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494097,"className":"1905_romance_selectbox03","name":"White Rose Knight Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494098,"className":"Challenge_Reset_Big_Box","name":"Challenge Reset Mega Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHALLENGE_BIG_BOX_GIVE_ITEM"}},{"itemId":494099,"className":"Special_Gift_Box_Leticia_1905","name":"2019 Leticia's Treasure Chest (May)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_1905_GIVE_ITEM"}},{"itemId":494100,"className":"Legend_SlotOpen_Card_JP","name":"Legend Card Slot Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":100,"script":{"function":"SCR_QUEST_CLEAR_LEGEND_CARD_LIFT"}},{"itemId":494101,"className":"Legend_Card_Envelope_JP","name":"Legend Card (Demon Lord) Envelope","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":494102,"className":"Steam_Attribute_Package","name":"Wake Up: Learner's Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Steam_Attribute_Package","strArg":"Normal"}},{"itemId":494103,"className":"Steam_Start_Package","name":"Wake Up: First Steps Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Steam_Start_Package","strArg":"Normal"}},{"itemId":494104,"className":"Steam_Attribute_All_Package","name":"Wake Up: ALL-IN-ONE Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Steam_Attribute_All_Package","strArg":"Normal"}},{"itemId":494105,"className":"Premium_Sandra_Glass","name":"Sandra's Magnifier","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":494111,"className":"Special_Gift_Box_Leticia_1906","name":"2019 Leticia's Treasure Chest (Jun)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_1906_GIVE_ITEM"}},{"itemId":494112,"className":"Awake_box_S","name":"Awakening Box S Rank","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_AWAKE_BOX_GIVE_ITEM","strArg":"Normal","numArg1":10}},{"itemId":494113,"className":"Awake_box_A","name":"Awakening Box A Rank","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_AWAKE_BOX_GIVE_ITEM","strArg":"Normal","numArg1":3}},{"itemId":494114,"className":"legend_misc_card_box","name":"Old Legend Enhancement Card Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_LEGEND_MISC_CARD_GIVE_ITEM","strArg":"Normal","numArg1":3}},{"itemId":494115,"className":"Summon_Cardbook_Box","name":"Multi-color Monster Card Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_4COLOR_SUMMON_CARDBOOK_GIVE_ITEM","strArg":"Normal","numArg1":2}},{"itemId":494116,"className":"premium_Abrasive_400","name":"Glowing Lv. 400 Awakening Abrasive","type":"Etc","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbrasiveStone","numArg1":400}},{"itemId":494117,"className":"1906_galaxy_armor_selectbox01","name":"Twilight Star Knight Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494118,"className":"1906_galaxy_armor_selectbox02","name":"Twilight Star Royal Guard Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494119,"className":"1906_galaxy_armor_selectbox03","name":"Twilight Star Dispatcher Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494120,"className":"PC_EnchantJewel_Box","name":"[PP] Enchant Jewel Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PC_ENCHANTJEWEL_Box","strArg":"Normal","numArg1":3}},{"itemId":494121,"className":"PC_Pamoca_Box","name":"[PP] Pamoka Solution Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PC_PAMOCA_Box","strArg":"Normal","numArg1":3}},{"itemId":494122,"className":"selectbox_beachwear01","name":"Scarlet Beachwear Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Normal","numArg1":3}},{"itemId":494123,"className":"selectbox_beachwear02","name":"Marina Oceanware Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Normal","numArg1":3}},{"itemId":494124,"className":"selectbox_beachwear03","name":"Beached Out Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Normal","numArg1":3}},{"itemId":494125,"className":"emoticonItem_24_46_recycle","name":"Emote Plus: Popolion","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON_PACK","strArg":"emoticon_00","numArg1":24,"numArg2":46}},{"itemId":494126,"className":"recycle_WoodCarviig_Core","name":"Weapon Appearance Material","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"WoodCarving_Core","numArg1":7}},{"itemId":494127,"className":"recycle_Mystic_Glass","name":"Mysterious Magnifier","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Mystic_Glass"}},{"itemId":494128,"className":"recycle_Master_Glass","name":"Artisan Magnifier","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Master_Glass"}},{"itemId":494129,"className":"goldmoru_box_S","name":"Advanced Golden Anvil Box (Rank S) ","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GOLDMORU_BOX","strArg":"Normal","numArg1":50}},{"itemId":494130,"className":"Special_Gift_Box_Leticia_1907","name":"2019 Leticia's Treasure Chest","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_1907_GIVE_ITEM"}},{"itemId":494131,"className":"select_transcend_Scroll","name":"Transcendence Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494134,"className":"Special_Gift_Box_Leticia_1908","name":"2019 Leticia's Treasure Chest (August)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_1908_GIVE_ITEM"}},{"itemId":494135,"className":"selectbox_camping01","name":"Camping Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Normal","numArg1":3}},{"itemId":494136,"className":"selectbox_travel01","name":"Jungle Explorer Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Normal","numArg1":3}},{"itemId":494137,"className":"selectbox_blackbear","name":"Black Bear Costume Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_COSTUMEBOX_BLACKBEAR","strArg":"Normal","numArg1":3}},{"itemId":494138,"className":"Special_Gift_Box_Leticia_1909","name":"2019 Leticia's Treasure Chest (Season 3)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_1908_GIVE_ITEM"}},{"itemId":494139,"className":"selectbox_chef01","name":"Head Chef Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494140,"className":"selectbox_chef02","name":"Deputy Chef Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494141,"className":"selectbox_chef03","name":"Restaurant Manager Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494142,"className":"artefactbox_chef","name":"Chef Starter Kit Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ARTEFACTBOX_CHEF"}},{"itemId":494143,"className":"1909_Chuseok_Package_01","name":"Autumn Harvest Growth Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_1908_CHUSEOK_PACKAGE_01","strArg":"Normal"}},{"itemId":494144,"className":"1909_Chuseok_Package_02","name":"Autumn Harvest Enhancement Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_1908_CHUSEOK_PACKAGE_02","strArg":"Normal"}},{"itemId":494145,"className":"1909_Chuseok_Package_03","name":"Autumn Harvest Challenger Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_1908_CHUSEOK_PACKAGE_03","strArg":"Normal"}},{"itemId":494146,"className":"1909_Chuseok_Package_04","name":"[SPECIAL] Premium Arts Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_1908_CHUSEOK_PACKAGE_04","strArg":"Normal"}},{"itemId":494147,"className":"Special_Gift_Box_Leticia_1910","name":"2019 Leticia's Treasure Chest (Season 4)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_190GIVE_ITEM"}},{"itemId":494148,"className":"PC_GoldMoru_Box_S","name":"[PP] Shining Advanced Golden Anvil Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GOLD_MOUR_BOX_GIVE_ITEM","strArg":"Moru_Gold_TA_NR","numArg1":30}},{"itemId":494149,"className":"PC_GoldExtractkit_Box_S","name":"[PP] Shining Golden Ichor Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GOLD_Extract_PC_BOX_GIVE_ITEM","strArg":"Extract_kit_Gold","numArg1":40}},{"itemId":494150,"className":"selectbox_squadron01","name":"Red TOS Ranger Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494151,"className":"selectbox_squadron02","name":"Pink/Blue TOS Ranger Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494152,"className":"selectbox_squadron03","name":"Green/Yellow TOS Ranger Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494153,"className":"selectbox_squadron04","name":"Go Go TOS Ranger","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_TOS_SQUDE_FULLPACKAGE_GIVE_ITEM","numArg1":1}},{"itemId":494154,"className":"selectbox_squadron05","name":"TOS Ranger Weapon Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494156,"className":"txbox_2019halloweenRabbit","name":"Black Rabbit Costume Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_2019HALLOWEEN_RABBIT"}},{"itemId":494157,"className":"selectbox_2019halloween01","name":"Candy Killer Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494158,"className":"selectbox_2019halloween02","name":"Haunted Hospital Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494159,"className":"txbox_2019halloween02_m","name":"Haunted Hospital Costume Box (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_2019HALLOWEEN_COSTUME02_M"}},{"itemId":494160,"className":"txbox_2019halloween02_f","name":"Haunted Hospital Costume Box (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_2019HALLOWEEN_COSTUME02_F"}},{"itemId":494161,"className":"selectbox_2019halloween03","name":"Skull Party Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494162,"className":"selectbox_2019halloweenWeapon","name":"Halloween Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494163,"className":"Special_Gift_Box_Leticia_1911","name":"2019 Leticia's Treasure Chest (December)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_191GIVE_ITEM"}},{"itemId":494164,"className":"select_transcend_Scroll10","name":"Premium Transcendence Selection Box (Stage 10)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494165,"className":"Leticia_EnchantJewel_Box","name":"Legend Enchant Jewel Box (10 ea)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_LEGEND_ENCHANTJEWEL_Box","strArg":"Normal","numArg1":3}},{"itemId":494166,"className":"AwakeStone_box_A","name":"Glowing Awakening Stone Box (10 ea)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_AWAKESTONE_BOX_GIVE_ITEM","strArg":"Normal","numArg1":10}},{"itemId":494167,"className":"AwakeStone_box_S","name":"Glowing Awakening Stone Box (30 ea)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_AWAKESTONE_BOX_GIVE_ITEM","strArg":"Normal","numArg1":30}},{"itemId":494168,"className":"selectbox_gabia01","name":"Gabija Guardian Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494169,"className":"selectbox_gabia02","name":"Gabija Priest Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494170,"className":"1911_select_transcend_Scroll10","name":"Transcendence Selection Box (Stage 10)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494171,"className":"Premium_Sandra_Glass_1line","name":"Sandra's Detailed Magnifier","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":494172,"className":"Special_Gift_Box_Leticia_1912","name":"2019 Leticia's Treasure Chest (Season 12)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_1912GIVE_ITEM"}},{"itemId":494173,"className":"Challenge_Reset_Box_4ever","name":"[4ever] Challenge Reset Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FOREVER_CHALLENGE_GIVE_ITEM","strArg":"Drug_Looting_Potion_100","numArg1":5}},{"itemId":494174,"className":"indunreset_Box_4ever","name":"[4ever] Instanced Dungeon Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FOREVER_INDUN_GIVE_ITEM","strArg":"Drug_Looting_Potion_100","numArg1":5}},{"itemId":494175,"className":"BlessSet_Box_4ever","name":"[4ever] Blessed Gift Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FOREVER_BLESS_GIVE_ITEM","strArg":"Drug_Looting_Potion_100","numArg1":5}},{"itemId":494176,"className":"BoostCharSet_Box_4ever","name":"[4ever] Character Boost Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FOREVER_BOOST_CHAR_GIVE_ITEM","strArg":"Drug_Looting_Potion_100","numArg1":5}},{"itemId":494177,"className":"selectbox_2019xmas01","name":"Midnight Snow Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494178,"className":"selectbox_2019xmas02","name":"Platina Dafne Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494179,"className":"selectbox_2019xmas03","name":"Crimson Noel Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494180,"className":"txbox_xmastreecos","name":"Sparking Tree Costume Set Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Helmet_xmastreecos/1;costume_Com_273/1;"}},{"itemId":494181,"className":"selectbox_2019xmas_weapon","name":"Christmas Weapon Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494190,"className":"emoticonItem_55_58","name":"Emote Plus: Dionys","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON_PACK","strArg":"bakarine_emotion","numArg1":55,"numArg2":58}},{"itemId":494191,"className":"emoticonItem_59_63","name":"Emote Plus: Goddess Vakarine","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON_PACK","strArg":"bakarine_emotion","numArg1":59,"numArg2":63}},{"itemId":494192,"className":"emoticonItem_64_69","name":"Emote Plus: Dionys and Goddess Vakarine","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON_PACK","strArg":"bakarine_emotion","numArg1":64,"numArg2":69}},{"itemId":494193,"className":"txbox_SandraGlass","name":"Sandra's Magnifier Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_TXBOX_SANDRAGLASS"}},{"itemId":494195,"className":"kupole_misc_box","name":"[Kupole] Sierra, Nucle Powder Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_KUPOLE_MISC_BOX","numArg1":5}},{"itemId":494196,"className":"selectbox_costume_twn_newyear","name":"Rouge Blossom Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494197,"className":"PremiumToken_14d_event","name":"Token: 14 Days [EVENT] (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1209600}},{"itemId":494198,"className":"emoticonItem_70_73","name":"Emote Plus: Ragana","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON_PACK","strArg":"ragana_emotion","numArg1":70,"numArg2":73}},{"itemId":494199,"className":"Special_Gift_Box_Leticia_2001","name":"2020 Leticia's Treasure Chest (Season 1)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_2001GIVE_ITEM"}},{"itemId":494201,"className":"txbox_SandraGlass_leticia","name":"Sandra's Magnifier Large Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_TXBOX_SANDRAGLASS_LETICIA"}},{"itemId":494202,"className":"HiddenJobUnlock_Char4_18_personal","name":"[Growth] Cleric - Miko (Kannushi) Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char4_18","numArg1":6}},{"itemId":494203,"className":"HiddenJobUnlock_Char3_13_personal","name":"[Growth] Archer - Appraiser Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char3_13","numArg1":5}},{"itemId":494204,"className":"HiddenJobUnlock_Char2_17_personal","name":"[Growth] Wizard - Rune Caster Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char2_17","numArg1":1}},{"itemId":494205,"className":"HiddenJobUnlock_Char1_13_personal","name":"[Growth] Scout - Shinobi Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char5_6","numArg1":7}},{"itemId":494206,"className":"HiddenJobUnlock_Char1_20_personal","name":"[Growth] Swordsman - Nak Muay Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char1_20","numArg1":7}},{"itemId":494207,"className":"Class_Solution_Select_Box_personal","name":"[Growth] Unlock Voucher Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494210,"className":"Event_RankReset_Event_14d","name":"[Event]Class Change Voucher Lv.4(14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Event_RankReset"}},{"itemId":494211,"className":"emoticonItem_74","name":"Emote Plus: Marnox","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON_PACK","strArg":"marnox_emotion","numArg1":74,"numArg2":74}},{"itemId":494212,"className":"selectbox_12animal01","name":"Heaven Guardian Armor Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494213,"className":"selectbox_12animal02","name":"Heaven Guardian Armor Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494214,"className":"selectbox_12animal_helmet","name":"12 Guardian Mask Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494215,"className":"selectbox_12animal_weapon","name":"12 Guardian Weapon Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494216,"className":"selectbox_12animal_allbox","name":"12 Guardian Advent Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_12ANIMAL_ALLBOX"}},{"itemId":494217,"className":"Special_Gift_Box_Leticia_2001_Steam","name":"2020 Leticia's Treasure Chest (Season 1)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_2001GIVE_ITEM_STEAM"}},{"itemId":494218,"className":"Premium_Sandra_Glass_MAX_4line","name":"[Lv.440] Sandra's Perfect Magnifier","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_MAX_4line","numArg1":440}},{"itemId":494219,"className":"Premium_Sandra_Glass_MAX_6line","name":"[Lv.440] Sandra's Ultimate Magnifier","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_MAX_6line"}},{"itemId":494220,"className":"WeeklyBossEnteredCountReset","name":"Weekly Boss Raid One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_WeeklyBossEnteredCountReset","strArg":"WeeklyBossReset"}},{"itemId":494221,"className":"Premium_boostToken03_event01_team","name":"x8 EXP Tome (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Premium_boostToken03","numArg1":3600000,"numArg2":300}},{"itemId":494222,"className":"Special_Gift_Box_Leticia_2002","name":"2020 Leticia's Treasure Chest (Season 3)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_2002GIVE_ITEM"}},{"itemId":494223,"className":"2001_Special_Package_01_Steam","name":"2020 Mysterious Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_2001_STEAM_PACKAGE_01","strArg":"Normal"}},{"itemId":494224,"className":"2001_Special_Package_02_Steam","name":"2020 Ready for Battle Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_2001_STEAM_PACKAGE_02","strArg":"Normal"}},{"itemId":494225,"className":"2001_Special_Package_03_Steam","name":"2020 To the Dungeon Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_2001_STEAM_PACKAGE_03","strArg":"Normal"}},{"itemId":494226,"className":"2020_NewYear_Package_01","name":"Grow Up Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_2020_NEWYEAR_PACKAGE_01","strArg":"Normal"}},{"itemId":494227,"className":"2020_NewYear_Package_02","name":"Build Up Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_2020_NEWYEAR_PACKAGE_02","strArg":"Normal"}},{"itemId":494228,"className":"2020_NewYear_Package_03","name":"Ichor Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_2020_NEWYEAR_PACKAGE_03","strArg":"Normal"}},{"itemId":494229,"className":"2020_NewYear_Package_All","name":"All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_2020_NEWYEAR_PACKAGE_ALL","strArg":"Normal"}},{"itemId":494230,"className":"Legend_SlotOpen_Card_Team","name":"Legend Card Slot Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":100,"script":{"function":"SCR_QUEST_CLEAR_LEGEND_CARD_LIFT"}},{"itemId":494231,"className":"Leticia_Siera","name":"Sierra Sack","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER","strArg":"misc_ore23","numArg1":2500}},{"itemId":494232,"className":"Leticia_Newcle","name":"Nucle Sack","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER","strArg":"misc_ore22","numArg1":5000}},{"itemId":494233,"className":"RiftModeEnteredCountReset","name":"Dimensional Collapse Point One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_RiftModeEnteredCountReset","strArg":"RiftModeReset"}},{"itemId":494234,"className":"selectbox_2020magical01","name":"Magical Savior - Spade Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494235,"className":"selectbox_2020magical02","name":"Magical Savior - Clover Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494236,"className":"selectbox_2020magical03","name":"Magical Savior - Professor Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494237,"className":"selectbox_2020magical_weapon","name":"Magical Savior - Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494238,"className":"Special_Gift_Box_Leticia_2003","name":"2020 Leticia's Treasure Chest (Season 4)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Legend_card_boruta/1;legend_reinforce_card_lv1/1;legend_reinforce_card_lv2/1;legend_reinforce_card_lv3/1;legend_reinforce_card_lv4/1;"}},{"itemId":494239,"className":"Legend_Card_Box2","name":"Legend Card Selection Package II","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Legend_Card_Envelope2/1;Legend_SlotOpen_Card/1;"}},{"itemId":494240,"className":"Legend_Card_Envelope2","name":"Legend Card Envelope II","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494241,"className":"selectbox_hiphop01","name":"Popo Pop Neon Activity Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494242,"className":"selectbox_hiphop02","name":"Popo Pop Damaged Street Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494243,"className":"selectbox_hiphop03","name":"Popo Pop Funky Graffiti Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494244,"className":"selectbox_hiphop04","name":"Popo Pop Main Stage Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494245,"className":"Allbox_hiphop","name":"Popo Pop On the Stage","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"selectbox_hiphop01/1;selectbox_hiphop02/1;selectbox_hiphop03/1;selectbox_hiphop04/1;"}},{"itemId":494246,"className":"selectbox_hiphop_weapon","name":"Popo Pop Weapon Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494247,"className":"Special_Gift_Box_Leticia_2004","name":"2020 Leticia's Treasure Chest (April)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"egg_dionys/1;CompanionExpcard400/3;"}},{"itemId":494248,"className":"misc_0530_Box_20ea","name":"Magic Stone Chest","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_0530/20;"}},{"itemId":494249,"className":"WeeklyBossReductionPotion_BoxC","name":"[Weekly Boss Raid] Leticia Special Potion Box (Rank C)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"WeeklyBossReductionPotion/10;"}},{"itemId":494250,"className":"WeeklyBossReductionPotion_BoxB","name":"[Weekly Boss Raid] Leticia Special Potion Box (Rank B)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"WeeklyBossReductionPotion/20;"}},{"itemId":494251,"className":"WeeklyBossReductionPotion_BoxA","name":"[Weekly Boss Raid] Leticia Special Potion Box (Rank A)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"WeeklyBossReductionPotion/30;"}},{"itemId":494252,"className":"selectbox_littleprince01","name":"Starlight Palace Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494253,"className":"selectbox_littleprince02","name":"Romantic Pilot Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494254,"className":"txbox_redfox","name":"Red Fox Costume Set Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP12_helmet_redfox/1;EP12_costume_Com_005/1;"}},{"itemId":494255,"className":"Allbox_littleprince","name":"A Letter from Asteroid","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"selectbox_littleprince01/1;selectbox_littleprince02/1;txbox_redfox/1;selectbox_littleprince_weapon/1;"}},{"itemId":494256,"className":"selectbox_littleprince_weapon","name":"Forgotten Asteroid Weapon Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494257,"className":"Special_Gift_Box_Leticia_2005","name":"2020 Leticia's Treasure Chest (Season 6)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_Sandra_Glass_MAX_4line/2;Premium_Sandra_Glass_MAX_6line/1;"}},{"itemId":494258,"className":"Transcendstone_777box","name":"Goddess' Blessed Gem Fortune Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_item_transcendence_Stone/777;"}},{"itemId":494259,"className":"selectbox_ep12wedding01","name":"Mayflower Noble Plate Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494260,"className":"selectbox_ep12wedding02","name":"Mayflower Wedding Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494261,"className":"selectbox_ep12wedding03","name":"Mayflower Innocent Armor Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494262,"className":"Allbox_ep12wedding","name":"Mayflower Wedding March","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"selectbox_ep12wedding01/1;selectbox_ep12wedding02/1;selectbox_ep12wedding03/1;selectbox_ep12wedding_weapon/1;"}},{"itemId":494263,"className":"selectbox_ep12wedding_weapon","name":"Mayflower Weapon Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494264,"className":"Special_Gift_Box_Leticia_2006","name":"2020 Leticia's Treasure Chest (Season 7)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Seal_Material_Boruta/3;"}},{"itemId":494265,"className":"selectbox_catagnan01","name":"MusCATeer Baron Tabby/Cheese Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494266,"className":"selectbox_catagnan02","name":"MusCATeer Merchant Black/Ragdoll Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494267,"className":"selectbox_catagnan03","name":"MusCATeer Soldier Cookie/Shorthair Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494268,"className":"selectbox_catagnan_weapon","name":"MusCATeer Weapon Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494269,"className":"Allbox_catagnan","name":"MusCATeer Assemble","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"selectbox_catagnan01/1;selectbox_catagnan02/1;selectbox_catagnan03/1;selectbox_catagnan_weapon/1;"}},{"itemId":494270,"className":"Special_Gift_Box_Leticia_2007","name":"2020 Leticia's Treasure Chest (Season 8)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Legend_card_boruta/1;legend_reinforce_card_lv1/1;legend_reinforce_card_lv2/1;legend_reinforce_card_lv3/1;legend_reinforce_card_lv4/1;"}},{"itemId":494271,"className":"MultipleTokenBox5cnt","name":"Dimensional Collapse Point/Uphill Defense Multiply Token Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"rift_dungeon_multiple/5;uphill_multiple/5;"}},{"itemId":494272,"className":"GLOBAL_goldmoru_box_S_teamtrade","name":"[Untradable]Advanced Golden Anvil Box (Rank S)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GOLDMORU_BOX","strArg":"Normal","numArg1":50}},{"itemId":494273,"className":"GLOBAL_select_transcend_Scroll","name":"Transcendence Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494274,"className":"SoloRaidCntReset_Team","name":"Solo Raid One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FreeDungeon_Solo_Raid_Cnt","strArg":"SoloRaidCntReset_Team","numArg1":1}},{"itemId":494275,"className":"premium_Abrasive_430","name":"Glowing Lv. 430 Awakening Abrasive","type":"Etc","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbrasiveStone","numArg1":430}},{"itemId":494276,"className":"Premium_SkillReset_Job","name":"Selected Class Skill Reset Potion","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_IS_USE_QUEST_CLEAR_SCROLL","strArg":"SkillResetJob"}},{"itemId":494277,"className":"Premium_SkillReset_Job_14d","name":"Selected Class Skill Reset Potion (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_IS_USE_QUEST_CLEAR_SCROLL","strArg":"SkillResetJob"}},{"itemId":494278,"className":"selectbox_camping_weapon_twn","name":"Camping Weapon Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494300,"className":"Premium_QuestClearScroll_EP_1","name":"Quest Clear Scroll - EP1","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_IS_USE_QUEST_CLEAR_SCROLL","strArg":"Episode_1"}},{"itemId":494301,"className":"Premium_QuestClearScroll_EP_2","name":"Quest Clear Scroll - EP2","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_IS_USE_QUEST_CLEAR_SCROLL","strArg":"Episode_2"}},{"itemId":494302,"className":"Premium_QuestClearScroll_EP_3","name":"Quest Clear Scroll - EP3","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_IS_USE_QUEST_CLEAR_SCROLL","strArg":"Episode_3"}},{"itemId":494303,"className":"Premium_QuestClearScroll_EP_4","name":"Quest Clear Scroll - EP4","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_IS_USE_QUEST_CLEAR_SCROLL","strArg":"Episode_4"}},{"itemId":494304,"className":"Premium_QuestClearScroll_EP_5","name":"Quest Clear Scroll - EP5","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_IS_USE_QUEST_CLEAR_SCROLL","strArg":"Episode_5"}},{"itemId":494305,"className":"Premium_QuestClearScroll_EP_6","name":"Quest Clear Scroll - EP6","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_IS_USE_QUEST_CLEAR_SCROLL","strArg":"Episode_6"}},{"itemId":494306,"className":"Premium_QuestClearScroll_EP_7","name":"Quest Clear Scroll - EP7","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_IS_USE_QUEST_CLEAR_SCROLL","strArg":"Episode_7"}},{"itemId":494307,"className":"Premium_QuestClearScroll_EP_8","name":"Quest Clear Scroll - EP8","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_IS_USE_QUEST_CLEAR_SCROLL","strArg":"Episode_8"}},{"itemId":494308,"className":"Premium_QuestClearScroll_EP_9","name":"Quest Clear Scroll - EP9","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_IS_USE_QUEST_CLEAR_SCROLL","strArg":"Episode_9"}},{"itemId":494309,"className":"Premium_QuestClearScroll_EP_10","name":"Quest Clear Scroll - EP10","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_IS_USE_QUEST_CLEAR_SCROLL","strArg":"Episode_10"}},{"itemId":494310,"className":"Premium_QuestClearScroll_EP_11","name":"Quest Clear Scroll - EP11","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_IS_USE_QUEST_CLEAR_SCROLL","strArg":"Episode_11"}},{"itemId":494311,"className":"Premium_QuestClearScroll_EP_12","name":"Quest Clear Scroll - EP12","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_IS_USE_QUEST_CLEAR_SCROLL","strArg":"Episode_12"}},{"itemId":494312,"className":"Premium_QuestClearScroll_EP_13","name":"Quest Clear Scroll - EP13","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_IS_USE_QUEST_CLEAR_SCROLL","strArg":"Episode_13"}},{"itemId":494313,"className":"Test_Dummy_Item_1","name":"[Test Item] 1","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"TEST_DUMMY_SCR_USE_SCROLL","strArg":"SCR_1"}},{"itemId":494314,"className":"Test_Dummy_Item_2","name":"[Test Item] 2","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"TEST_DUMMY_SCR_USE_SCROLL","strArg":"SCR_2"}},{"itemId":494315,"className":"Test_Dummy_Item_3","name":"[Test Item] 3","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"TEST_DUMMY_SCR_USE_SCROLL","strArg":"SCR_3"}},{"itemId":494316,"className":"Test_Dummy_Item_4","name":"[Test Item] 4","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"TEST_DUMMY_SCR_USE_SCROLL","strArg":"SCR_4"}},{"itemId":494317,"className":"Test_Dummy_Item_5","name":"[Test Item] 5","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"TEST_DUMMY_SCR_USE_SCROLL","strArg":"SCR_5"}},{"itemId":494318,"className":"Test_Dummy_Item_6","name":"[Test Item] 6","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"TEST_DUMMY_SCR_USE_SCROLL","strArg":"SCR_6"}},{"itemId":494319,"className":"Test_Dummy_Item_7","name":"[Test Item] 7","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"TEST_DUMMY_SCR_USE_SCROLL","strArg":"SCR_7"}},{"itemId":494320,"className":"Test_Dummy_Item_8","name":"[Test Item] 8","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"TEST_DUMMY_SCR_USE_SCROLL","strArg":"SCR_8"}},{"itemId":494321,"className":"Test_Dummy_Item_9","name":"[Test Item] 9","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"TEST_DUMMY_SCR_USE_SCROLL","strArg":"SCR_9"}},{"itemId":494322,"className":"Test_Dummy_Item_10","name":"[Test Item] 10","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"TEST_DUMMY_SCR_USE_SCROLL","strArg":"SCR_10"}},{"itemId":494323,"className":"Test_Dummy_Item_11","name":"[Test Item] 11","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"TEST_DUMMY_SCR_USE_SCROLL","strArg":"SCR_11"}},{"itemId":494324,"className":"Test_Dummy_Item_12","name":"[Test Item] 12","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"TEST_DUMMY_SCR_USE_SCROLL","strArg":"SCR_12"}},{"itemId":494325,"className":"Test_Dummy_Item_13","name":"[Test Item] 13","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"TEST_DUMMY_SCR_USE_SCROLL","strArg":"SCR_13"}},{"itemId":494326,"className":"Test_Dummy_Item_14","name":"[Test Item] 14","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"TEST_DUMMY_SCR_USE_SCROLL","strArg":"SCR_14"}},{"itemId":494327,"className":"Premium_QuestClearScroll_Box_1","name":"Quest Clear Scroll All in One Box","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_QUEST_CLEAR_SCROLL_ALL_IN_BOX_1"}},{"itemId":494328,"className":"Premium_boostToken05","name":"x16 EXP Tome","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Premium_boostToken05","numArg1":3600000,"numArg2":600}},{"itemId":494329,"className":"Premium_boostToken06","name":"x32 EXP Tome","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Premium_boostToken06","numArg1":3600000,"numArg2":1200}},{"itemId":494330,"className":"Premium_Abillitypoint_Job","name":"Selected Class Attribute Reset Potion","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Job"}},{"itemId":494331,"className":"Premium_Abillitypoint_Job_14d","name":"Selected Class Attribute Reset Potion (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Job"}},{"itemId":494332,"className":"Premium_Abillitypoint_Job_7d","name":"Selected Class Attribute Reset Potion (7 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Job"}},{"itemId":494333,"className":"Premium_SkillReset_Job_7d","name":"Selected Class Skill Reset Potion (7 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_IS_USE_QUEST_CLEAR_SCROLL","strArg":"SkillResetJob"}},{"itemId":494334,"className":"selectbox_bushyCat_weapon_twn","name":"Meoweapon Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":494335,"className":"box_twnocelot_twn","name":"Ocelot Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_helmet_twnocelot/1;EP13_costume_Com_twnocelot/1;"}},{"itemId":494336,"className":"HiddenJobUnlock_Char1_23","name":"Swordsman - Luchador Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_JobUnlock","strArg":"Char1_23"}},{"itemId":494337,"className":"UnlockQuest_OverAchieveClear_Char1_23_Job","name":"Medal of Honor - Luchador Class Achievement","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_OverAchieveClear","strArg":"UQ_Char1_23_Unlock_Job"}},{"itemId":494338,"className":"UnlockQuest_OverAchieveClear_Char1_23_Costume","name":"Medal of Honor - Luchador Costume Achievement","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_OverAchieveClear","strArg":"UQ_Char1_23_Unlock_Costume"}},{"itemId":494339,"className":"UnlockQuest_AbillityArts_Char1_23","name":"Arts Reset Potion - Luchador","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":23}},{"itemId":494341,"className":"UnlockQuest_RankReset_Point_Lv3","name":"[Master's Request] Class Change Voucher Lv.3","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"Premium_RankReset_Point_Lv3","numArg1":1000}},{"itemId":494342,"className":"Premium_AbillityArts_Char1_23_1d","name":"Arts Reset Potion - Luchador (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":23}},{"itemId":494343,"className":"HiddenJobUnlock_Char4_18_Event3","name":"[Event] Cleric Class - Miko(Kannushi) Unlock Voucher (7 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char4_18","numArg1":6}},{"itemId":494344,"className":"HiddenJobUnlock_Char3_13_Event3","name":"[Event] Archer Class - Appraiser Unlock Voucher (7 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char3_13","numArg1":5}},{"itemId":494345,"className":"HiddenJobUnlock_Char2_17_Event3","name":"[Event] Wizard Class - Rune Caster Unlock Voucher (7 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char2_17","numArg1":6}},{"itemId":494346,"className":"HiddenJobUnlock_Char1_13_Event3","name":"[Event] Scout Class - Shinobi Unlock Voucher (7 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char5_6","numArg1":7}},{"itemId":494347,"className":"HiddenJobUnlock_Char1_20_Event3","name":"[Event] Swordsman Class - Nak Muay Unlock Voucher (7 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char1_20","numArg1":7}},{"itemId":494348,"className":"UnlockQuest_OverAchieveClear_Char4_6_Costume","name":"Medal of Honor - Sadhu Costume Achievement","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_OverAchieveClear","strArg":"UQ_Char4_6_Unlock_Costume"}},{"itemId":494349,"className":"HiddenJobUnlock_Char3_22","name":"Archer - Hwarang Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_JobUnlock","strArg":"Char3_22"}},{"itemId":494350,"className":"UnlockQuest_OverAchieveClear_Char3_22_Job","name":"Medal of Honor - Hwarang Class Achievement","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_OverAchieveClear","strArg":"UQ_Char3_22_Unlock_Job"}},{"itemId":494351,"className":"UnlockQuest_OverAchieveClear_Char3_22_Costume","name":"Medal of Honor - Hwarang Costume Achievement","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_OverAchieveClear","strArg":"UQ_Char3_22_Unlock_Costume"}},{"itemId":494352,"className":"UnlockQuest_AbillityArts_Char3_22","name":"Arts Reset Potion - Hwarang","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":22}},{"itemId":494353,"className":"Premium_AbillityArts_Char3_22_1d","name":"Arts Reset Potion - Hwarang (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":22}},{"itemId":494354,"className":"Premium_Enchantchip_NoTrade","name":"Enchant Scroll(Untradable)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":494355,"className":"UnlockQuest_AbillityArts_Char5_17","name":"Arts Reset Potion - Hakkapeliter","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":17}},{"itemId":494356,"className":"Premium_AbillityArts_Char5_17_1d","name":"Arts Reset Potion - Hakkapeliter (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":17}},{"itemId":494357,"className":"emoticonItem_Gabija_EarringRaid_1_4","name":"Emote Plus: Goddess Gabija","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON_PACK","strArg":"Gabija_EarringRaid_emoticon_","numArg1":127,"numArg2":130}},{"itemId":494358,"className":"UnlockQuest_OverAchieveClear_Char2_24_Job","name":"Medal of Honor - Keraunos Class Achievement","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_OverAchieveClear","strArg":"UQ_Char2_24_Unlock_Job"}},{"itemId":494359,"className":"UnlockQuest_OverAchieveClear_Char2_24_Costume","name":"Medal of Honor - Keraunos Costume Achievement","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_OverAchieveClear","strArg":"UQ_Char2_24_Unlock_Costume"}},{"itemId":494360,"className":"HiddenJobUnlock_Char2_24","name":"Wizard - Keraunos Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_JobUnlock","strArg":"Char2_24"}},{"itemId":494361,"className":"UnlockQuest_AbillityArts_Char2_24","name":"Arts Reset Potion - Keraunos","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":24}},{"itemId":494362,"className":"Premium_AbillityArts_Char2_24_1d","name":"Arts Reset Potion - Keraunos (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":24}},{"itemId":494363,"className":"emoticonItem_Gabija_EarringRaid_5_8","name":"Emote Plus Package2: Goddess Gabija","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON_PACK","strArg":"Gabija_EarringRaid_emoticon_","numArg1":131,"numArg2":134}},{"itemId":494364,"className":"UnlockQuest_AbillityArts_Char4_22","name":"Arts Reset Potion - Lama","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":22}},{"itemId":494365,"className":"Premium_AbillityArts_Char4_22_1d","name":"Arts Reset Potion - Lama (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":22}},{"itemId":494366,"className":"UnlockQuest_OverAchieveClear_Char4_22_Job","name":"Medal of Honor - Lama Class Achievement","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_OverAchieveClear","strArg":"UQ_Char4_22_Unlock_Job"}},{"itemId":494367,"className":"UnlockQuest_OverAchieveClear_Char4_22_Costume","name":"Medal of Honor - Lama Costume Achievement","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_OverAchieveClear","strArg":"UQ_Char4_22_Unlock_Costume"}},{"itemId":494368,"className":"HiddenJobUnlock_Char4_22","name":"Cleric - Lama Class Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_JobUnlock","strArg":"Char4_22"}},{"itemId":494369,"className":"emoticonItem_135_137","name":"Emote Plus: Inesa","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON_PACK","strArg":"inesa_emoticon","numArg1":135,"numArg2":137}},{"itemId":494370,"className":"SEASONLETICIA_Premium_Enchantchip","name":"Enchant Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":494371,"className":"SEASONLETICIA_Ability_Point_Box1_Box_S","name":"Attribute Points Box Rank S (x3)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"SEASONLETICIA_Ability_Point_Box1/3;"}},{"itemId":494372,"className":"SEASONLETICIA_Ability_Point_Box1","name":"Attribute Points Box (Rank S) ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"SEASONLETICIA_Ability_Point_Stone/10;"}},{"itemId":494374,"className":"Premium_boostToken05_14d","name":"x16 EXP Tome (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Premium_boostToken05","numArg1":3600000,"numArg2":600}},{"itemId":494375,"className":"Mulia_emotion_Pack1","name":"Mulia Emote Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON_PACK","strArg":"Mulia_emotion","numArg1":115,"numArg2":116}},{"itemId":494376,"className":"UnlockQuest_AbillityArts_Char5_18","name":"Arts Reset Potion - Jaguar","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":18}},{"itemId":494377,"className":"Premium_AbillityArts_Char5_18_1d","name":"Arts Reset Potion - Jaguar (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":18}},{"itemId":494378,"className":"UnlockQuest_OverAchieveClear_Char5_18_Job","name":"Medal of Honor - Jaguar Class Achievement","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_OverAchieveClear","strArg":"UQ_Char5_18_Unlock_Job"}},{"itemId":494379,"className":"UnlockQuest_OverAchieveClear_Char5_18_Costume","name":"Medal of Honor - Jaguar Costume Achievement","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_OverAchieveClear","strArg":"UQ_Char5_18_Unlock_Costume"}},{"itemId":494380,"className":"HiddenJobUnlock_Char5_18","name":"Scout - Jaguar Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_JobUnlock","strArg":"Char5_18"}},{"itemId":494381,"className":"box_twnocelot_NoTrade","name":"Ocelot Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_helmet_twnocelot_NoTrade/1;EP13_costume_Com_twnocelot_NoTrade/1;"}},{"itemId":494382,"className":"PremiumToken_30d_Steam","name":"Token: 30 Day [Event]","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":2591950}},{"itemId":494383,"className":"Premium_AbillityArts_Char5_18","name":"Arts Reset Potion - Jaguar","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":18}},{"itemId":494384,"className":"Pajauta_emoticon_152_154","name":"Emote Plus: Pajauta","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON_PACK","strArg":"Pajauta_emoticon","numArg1":152,"numArg2":154}},{"itemId":494385,"className":"UnlockQuest_OverAchieveClear_Char1_24_Job","name":"Medal of Honor - Shenji Class Achievement","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_OverAchieveClear","strArg":"UQ_Char1_24_Unlock_Job"}},{"itemId":494386,"className":"UnlockQuest_OverAchieveClear_Char1_24_Costume","name":"Medal of Honor - Shenji Costume Achievement","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_OverAchieveClear","strArg":"UQ_Char1_24_Unlock_Costume"}},{"itemId":494387,"className":"HiddenJobUnlock_Char1_24","name":"Swordsman - Shenji Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_JobUnlock","strArg":"Char1_24"}},{"itemId":494388,"className":"UnlockQuest_AbillityArts_Char1_24","name":"Arts Reset Potion - Shenji","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":24}},{"itemId":494389,"className":"Premium_AbillityArts_Char1_24_1d","name":"Arts Reset Potion - Shenji (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":24}},{"itemId":494390,"className":"Premium_AbillityArts_Char1_24","name":"Arts Reset Potion - Shenji","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":24}},{"itemId":494391,"className":"Premium_tpBox_900","name":"900 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":900}},{"itemId":494392,"className":"Premium_tpBox_90_2","name":"90 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":90}},{"itemId":494393,"className":"Premium_tpBox_10_2","name":"10 TP","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":10}},{"itemId":494394,"className":"Premium_QuestClearScroll_EP_14","name":"Quest Clear Scroll - EP14","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_IS_USE_QUEST_CLEAR_SCROLL","strArg":"Episode_14"}},{"itemId":494395,"className":"Premium_tpBox_300_10","name":"300 TP + 10","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":310}},{"itemId":494396,"className":"Premium_tpBox_500_30","name":"500 TP + 30","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":530}},{"itemId":494397,"className":"Premium_tpBox_900_90","name":"900 TP + 90","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":990}},{"itemId":494398,"className":"Premium_tpBox_1000_200","name":"1000 TP + 200","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_TP","strArg":"AddTPitem","numArg1":1200}},{"itemId":494399,"className":"Legend_Card_Box_jp","name":"Legend Card (Demon Lord) Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_LEGEND_CARD_BOX_GIVE_ITEM_JP"}},{"itemId":494400,"className":"Steam_Darkness_Package_all_jp","name":"Dark Energy All-in-One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Steam_Darkness_Package_all_jp","strArg":"Normal"}},{"itemId":494401,"className":"UnlockQuest_OverAchieveClear_Char1_23_Job_2","name":"Medal of Honor - Luchador Class Achievement","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_OverAchieveClear","strArg":"UQ_Char1_23_Unlock_Job"}},{"itemId":494402,"className":"UnlockQuest_OverAchieveClear_Char3_22_Job_2","name":"Medal of Honor - Hwarang Class Achievement","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_OverAchieveClear","strArg":"UQ_Char3_22_Unlock_Job"}},{"itemId":494403,"className":"UnlockQuest_OverAchieveClear_Char4_22_Job_2","name":"Medal of Honor - Lama Class Achievement","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_OverAchieveClear","strArg":"UQ_Char4_22_Unlock_Job"}},{"itemId":494404,"className":"UnlockQuest_OverAchieveClear_Char3_23_Job","name":"Medal of Honor - Engineer Class Achievement","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_OverAchieveClear","strArg":"UQ_Char3_23_Unlock_Job"}},{"itemId":494405,"className":"UnlockQuest_OverAchieveClear_Char3_23_Costume","name":"Medal of Honor - Engineer Costume Achievement","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_OverAchieveClear","strArg":"UQ_Char3_23_Unlock_Costume"}},{"itemId":494406,"className":"HiddenJobUnlock_Char3_23","name":"Archer - Engineer Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UnlockQuest_JobUnlock","strArg":"Char3_23"}},{"itemId":494407,"className":"UnlockQuest_AbillityArts_Char3_23","name":"Arts Reset Potion - Engineer","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":23}},{"itemId":494408,"className":"Premium_AbillityArts_Char3_23_1d","name":"Arts Reset Potion - Engineer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":23}},{"itemId":494409,"className":"Premium_AbillityArts_Char3_23","name":"Arts Reset Potion - Engineer","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":23}},{"itemId":494410,"className":"Premium_Translate_Refill","name":"Translation Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_REFILL_TRANSLATE_COUNT"}},{"itemId":495076,"className":"Alice_Pack_2016","name":"Wonderland Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ALICEPACK_2016","strArg":"Normal"}},{"itemId":495087,"className":"Vakarine_Box_01","name":"Vakarine Package - Premium","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_VAKARINE_BOX01"}},{"itemId":495088,"className":"Vakarine_Box_02","name":"Vakarine Package - Support","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_VAKARINE_BOX02"}},{"itemId":495089,"className":"Vakarine_Box_03","name":"Vakarine Package - Hair Accessory","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_VAKARINE_BOX03"}},{"itemId":495090,"className":"Vakarine_Box_04","name":"Vakarine Package - Dionys","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_VAKARINE_BOX04"}},{"itemId":495091,"className":"Special_TokenBox_JP","name":"Special Token Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SPECIAL_TOKENBOX_JP"}},{"itemId":495092,"className":"Beauty_DyeCoupon_10","name":"Hair Dye 10% OFF Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dye_Discount","numArg1":10}},{"itemId":495093,"className":"Beauty_DyeCoupon_20","name":"Hair Dye 20% OFF Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dye_Discount","numArg1":20}},{"itemId":495094,"className":"Beauty_DyeCoupon_30","name":"Hair Dye 30% OFF Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dye_Discount","numArg1":30}},{"itemId":495095,"className":"Beauty_DyeCoupon_40","name":"Hair Dye 40% OFF Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dye_Discount","numArg1":40}},{"itemId":495096,"className":"Beauty_DyeCoupon_50","name":"Hair Dye 50% OFF Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dye_Discount","numArg1":50}},{"itemId":495097,"className":"Beauty_DyeCoupon_60","name":"Hair Dye 60% OFF Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dye_Discount","numArg1":60}},{"itemId":495098,"className":"Beauty_DyeCoupon_70","name":"Hair Dye 70% OFF Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dye_Discount","numArg1":70}},{"itemId":495099,"className":"Beauty_DyeCoupon_80","name":"Hair Dye 80% OFF Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dye_Discount","numArg1":80}},{"itemId":495100,"className":"Beauty_DyeCoupon_90","name":"Hair Dye 90% OFF Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dye_Discount","numArg1":90}},{"itemId":495101,"className":"Beauty_DyeCoupon_100","name":"FREE Hair Dye Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dye_Discount","numArg1":100}},{"itemId":495102,"className":"Beauty_HairCoupon_10","name":"Hair 10% OFF Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hair_Discount","numArg1":10}},{"itemId":495103,"className":"Beauty_HairCoupon_20","name":"Hair 20% OFF Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hair_Discount","numArg1":20}},{"itemId":495104,"className":"Beauty_HairCoupon_30","name":"Hair 30% OFF Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hair_Discount","numArg1":30}},{"itemId":495105,"className":"Beauty_HairCoupon_40","name":"Hair 40% OFF Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hair_Discount","numArg1":40}},{"itemId":495106,"className":"Beauty_HairCoupon_50","name":"Hair 50% OFF Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hair_Discount","numArg1":50}},{"itemId":495107,"className":"Beauty_HairCoupon_60","name":"Hair 60% OFF Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hair_Discount","numArg1":60}},{"itemId":495108,"className":"Beauty_HairCoupon_70","name":"Hair 70% OFF Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hair_Discount","numArg1":70}},{"itemId":495109,"className":"Beauty_HairCoupon_80","name":"Hair 80% OFF Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hair_Discount","numArg1":80}},{"itemId":495110,"className":"Beauty_HairCoupon_90","name":"Hair 90% OFF Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hair_Discount","numArg1":90}},{"itemId":495111,"className":"Beauty_HairCoupon_100","name":"FREE Hair Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hair_Discount","numArg1":100}},{"itemId":495112,"className":"Beauty_Hair_Dye_Coupon_100","name":"FREE Hair + Dye Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hair_Dye_Discount","numArg1":100}},{"itemId":495113,"className":"Beauty_Hair_Dye_30_CouponBox","name":"Barber Shop 30% OFF Gift Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":30}},{"itemId":495114,"className":"Beauty_Hair_Dye_50_CouponBox","name":"Barber Shop 50% OFF Gift Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":50}},{"itemId":495115,"className":"Beauty_Hair_Dye_100_CouponBox","name":"Barber Shop FREE Gift Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":100}},{"itemId":495116,"className":"Beauty_DyeCoupon_50_pc","name":"[PP] Hair Dye 50% OFF Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dye_Discount","numArg1":50}},{"itemId":495117,"className":"Beauty_DyeCoupon_100_pc","name":"[Reward] FREE Hair Dye Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dye_Discount","numArg1":100}},{"itemId":495118,"className":"Beauty_HairCoupon_50_pc","name":"[Reward] Hair 50% OFF Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hair_Discount","numArg1":50}},{"itemId":495119,"className":"Beauty_HairCoupon_100_pc","name":"[Reward] FREE Hair Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hair_Discount","numArg1":100}},{"itemId":495120,"className":"Beauty_HairCoupon_100_30d","name":"FREE Hair Coupon (30 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hair_Discount","numArg1":100}},{"itemId":495122,"className":"Premium_Abillitypoint_14d_Team","name":"Attribute Reset Potion (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset"}},{"itemId":495124,"className":"Beauty_HairCoupon_100_Event","name":"FREE Hair Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hair_Discount","numArg1":100}},{"itemId":495126,"className":"Beauty_HairCoupon_90_Event","name":"[Event] Hair 90% OFF Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hair_Discount","numArg1":90}},{"itemId":495127,"className":"Beauty_DyeCoupon_90_Event","name":"[Event] Hair Dye 90% OFF Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Dye_Discount","numArg1":90}},{"itemId":495134,"className":"Beauty_SkinCoupon_30","name":"Skin 30% OFF Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Skin_Discount","numArg1":30}},{"itemId":495135,"className":"Beauty_SkinCoupon_50","name":"Hair 50% OFF Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Skin_Discount","numArg1":50}},{"itemId":495136,"className":"Beauty_SkinCoupon_100","name":"Free Skin Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Skin_Discount","numArg1":100}},{"itemId":495137,"className":"Beauty_HairCoupon_100_14d","name":"[Event] Free Skin Coupon (14 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Skin_Discount","numArg1":100}},{"itemId":495138,"className":"Vakarine_Steam_Box_01","name":"[Vakarine] Token","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_VAKARINE_STEAM_BOX01"}},{"itemId":495139,"className":"Vakarine_Steam_Box_02","name":"[Vakarine] Raid Portal Stone","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_VAKARINE_STEAM_BOX02"}},{"itemId":495140,"className":"Vakarine_Steam_Box_03","name":"[Vakarine] Ichor Extraction Kit","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_VAKARINE_STEAM_BOX03"}},{"itemId":495141,"className":"Vakarine_Steam_Box_04","name":"[Vakarine] Attribute Points","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_VAKARINE_STEAM_BOX04"}},{"itemId":495142,"className":"Vakarine_Steam_Box_05","name":"[Vakarine] Challenge Reset Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_VAKARINE_STEAM_BOX05"}},{"itemId":495143,"className":"Vakarine_Steam_Box_06","name":"[Vakarine] Artisan Enchant Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_VAKARINE_STEAM_BOX06"}},{"itemId":495144,"className":"Vakarine_Steam_Box_07","name":"[Vakarine] x8 EXP Tome","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_VAKARINE_STEAM_BOX07"}},{"itemId":495145,"className":"Vakarine_Steam_Box_08","name":"[Vakarine] Legend Card Slot Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_VAKARINE_STEAM_BOX08"}},{"itemId":495146,"className":"Vakarine_Steam_NBU_Box_01","name":"[Vakarine] Token","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_VAKARINE_STEAM_NBU_BOX01"}},{"itemId":495147,"className":"Vakarine_Steam_NBU_Box_02","name":"[Vakarine] x8 EXP Tome","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_VAKARINE_STEAM_NBU_BOX02"}},{"itemId":495148,"className":"Vakarine_Steam_NBU_Box_03","name":"[Vakarine] Instanced Dungeon Reset Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_VAKARINE_STEAM_NBU_BOX03"}},{"itemId":495149,"className":"Vakarine_Steam_NBU_Box_04","name":"[Vakarine] Instanced Dungeon Multiplier Token","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_VAKARINE_STEAM_NBU_BOX04"}},{"itemId":495150,"className":"Vakarine_Steam_NBU_Box_05","name":"Vakarine NBU Voucher Pack","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_VAKARINE_STEAM_NBU_BOX05"}},{"itemId":495151,"className":"Vakarine_Steam_NBU_Box_06","name":"[Vakarine] Free Hair Coupon","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_VAKARINE_STEAM_NBU_BOX06"}},{"itemId":495152,"className":"Vakarine_Steam_NBU_Box_07","name":"[Vakarine] Class Change Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_VAKARINE_STEAM_NBU_BOX07"}},{"itemId":495153,"className":"Vakarine_Steam_NBU_Box_08","name":"[Vakarine] Class Unlock Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PACKAGE_VAKARINE_STEAM_NBU_BOX08"}},{"itemId":495154,"className":"Premium_RankReset_14d_Team","name":"[Event] Class Change Voucher Lv.4 (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Premium_RankReset_14d"}},{"itemId":495155,"className":"Premium_SoloRaidCntReset_Team_7","name":"Hunting Ground Boss Count One Entry Voucher (7 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SoloRaidCntReset","strArg":"Premium_SoloRaidCntReset_Team_7","numArg1":1}},{"itemId":495156,"className":"Premium_SoloRaidCntReset_ALL_Team_7","name":"Hunting Ground Boss Count Reset Voucher (7 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SoloRaidCntReset","strArg":"Premium_SoloRaidCntReset_ALL_Team_7","numArg1":3}},{"itemId":495157,"className":"Premium_SoloRaidCntReset_Team_14","name":"Hunting Ground Boss Count One Entry Voucher (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SoloRaidCntReset","strArg":"Premium_SoloRaidCntReset_Team_14","numArg1":1}},{"itemId":495158,"className":"Premium_SoloRaidCntReset_ALL_Team_14","name":"Hunting Ground Boss Count Reset Voucher (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SoloRaidCntReset","strArg":"Premium_SoloRaidCntReset_ALL_Team_14","numArg1":3}},{"itemId":495159,"className":"Care_WeeklyBossEnteredCountReset","name":"[Reward] Weekly Boss Raid One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_WeeklyBossEnteredCountReset","strArg":"WeeklyBossReset"}},{"itemId":495161,"className":"rift_dungeon_multiple","name":"Dimensional Collapse Point x3 Multiply Token","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"RIFT_MULTIPLE","numArg1":3}},{"itemId":495162,"className":"uphill_multiple","name":"Uphill Defense x3 Multiply Token","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":120,"script":{"strArg":"UPHILL_MULTIPLE","numArg1":3}},{"itemId":495163,"className":"challenge_hardmode_multiple_temp","name":"Challenge Hard Mode x3 Multiply Token","type":"Etc","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":440,"script":{"strArg":"CHALLENGE_HARDMODE_MULTIPLE","numArg1":3}},{"itemId":495165,"className":"PvPMineMiscBoost_Ticket_15d","name":"Mercenary Badge Boost +15D Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pvp_mine_misc_boost","numArg1":1296000}},{"itemId":495166,"className":"PvPMineMiscBoost_Ticket_30d","name":"Mercenary Badge Boost +30D Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pvp_mine_misc_boost","numArg1":2592000}},{"itemId":495167,"className":"PvPMineMiscBoost_Ticket_7d","name":"Mercenary Badge Boost +7D Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pvp_mine_misc_boost","numArg1":604800}},{"itemId":495168,"className":"PvPMineMiscBoost_Ticket_90d","name":"Mercenary Badge Boost +90D Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pvp_mine_misc_boost","numArg1":7776000}},{"itemId":495169,"className":"HousingCraft_Coupon_10_per","name":"[Housing Workshop] Consumable +10% Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Goods_Discount","numArg1":10}},{"itemId":495170,"className":"EngraveSlotExtension_Ticket_30d","name":"Engrave Slot +30D Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"engrave_slot_entension","numArg1":2592000}},{"itemId":495171,"className":"EngraveSlotExtension_Ticket_60d","name":"Engrave Slot +60D Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"engrave_slot_entension","numArg1":5184000}},{"itemId":495172,"className":"EngraveSlotExtension_Ticket_90d","name":"Engrave Slot +90D Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"engrave_slot_entension","numArg1":7776000}},{"itemId":495173,"className":"rift_dungeon_multiple_NoTrade","name":"Dimensional Collapse Point x3 Multiply Token (Untradable)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"RIFT_MULTIPLE","numArg1":3}},{"itemId":495174,"className":"uphill_multiple_NoTrade","name":"Uphill Defense x3 Multiply Token (Untradable)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"UPHILL_MULTIPLE","numArg1":3}},{"itemId":495175,"className":"EngraveSlotExtension_Ticket_7d","name":"Engraving Slot 7 Days Expansion Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"engrave_slot_entension","numArg1":604800}},{"itemId":495176,"className":"PremiumToken_7d","name":"Token (7 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":604800,"numArg2":150000}},{"itemId":495177,"className":"Ocelot_Box_01","name":"Ocelot Package - Day 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"PremiumToken_30d_Steam/1;egg_pet_twnocelot_NoTrade/1;box_twnocelot_NoTrade/1;EP13_Hat_twnocelot_NoTrade/1;wing_twnocelot_NoTrade/1;wing_ocelotbag_NoTrade/1;"}},{"itemId":495178,"className":"Ocelot_Box_02","name":"Ocelot Package - Day 2","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Multiple_Token_RevivalPaulius_Party_NoTrade/7;Ticket_RevivalPaulius_Party_Enter_NoTrade/3;"}},{"itemId":495179,"className":"Ocelot_Box_03","name":"Ocelot Package - Day 3","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP12_EXPERT_MODE_MULTIPLE_NoTrade/10;ChallengeExpertModeCountUp_NoTrade/3;"}},{"itemId":495180,"className":"Ocelot_Box_04","name":"Ocelot Package - Day 4","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Multiple_Token_TurbulentCore_Party_NoTrade/5;Ticket_TurbulentCore_Auto_Enter_NoTrade/3;"}},{"itemId":495181,"className":"Ocelot_Box_05","name":"Ocelot Package - Day 5","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"piece_GabijaEarring_NoTrade/12;Ticket_earring_raid_NoTrade/3;"}},{"itemId":495182,"className":"Ocelot_Box_06","name":"Ocelot Package - Day 6","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Multiple_Token_Jellyzele_Party_NoTrade/7;piece_penetration_belt_NoTrade/40;Ticket_Jellyzele_Auto_Enter_NoTrade/3;"}},{"itemId":495183,"className":"Ocelot_Box_07","name":"Ocelot Package - Day 7","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_pvp_mine2_NotLimit_50000/8;VakarineCertificateCoin_50000p/8;"}},{"itemId":495184,"className":"EngraveSlotExtension_Ticket_30d_30d","name":"Engrave Slot +30D Voucher (30 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"engrave_slot_entension","numArg1":2592000}},{"itemId":500000,"className":"Premium_Vakarine","name":"Vakarine Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Premium_Vakarine","strArg":"Normal"}},{"itemId":500001,"className":"Steam_NewRankDLC","name":"TOS - New Rank Booster","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Steam_NewRankDLC","strArg":"Normal"}},{"itemId":500002,"className":"Premium_Forever","name":"ToS 4ever Attendance Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Premium_FOREVER","strArg":"Normal"}},{"itemId":500003,"className":"Premium_Ocelot","name":"Ocelot Attendance Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Premium_Ocelot","strArg":"Normal"}},{"itemId":620130,"className":"costume_Char1_19_4","name":"Matador Velbestiary Costume (Male)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":620134,"className":"costume_Char1_18_5","name":"Retiarius Rudiarius Costume (Male)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":620135,"className":"costume_Char1_18_6","name":"Retiarius Rudiarius Costume (Female)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":620136,"className":"costume_Char1_19_5","name":"Matador Velbestiary Costume (Female)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":621132,"className":"costume_Char2_20_05","name":"Onmyoji Royal Court Costume (Male)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621133,"className":"costume_Char2_20_06","name":"Onmyoji Royal Court Costume (Female)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":621134,"className":"costume_Char2_19_04","name":"Shadowmancer Super Ensconcer Costume (Male)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":621135,"className":"costume_Char2_19_05","name":"Shadowmancer Super Ensconcer Costume (Female)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":622123,"className":"costume_Char3_18_04","name":"Bullet Marker Flinter Costume (Male)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":622124,"className":"costume_Char3_18_05","name":"Bullet Marker Flinter Costume (Female)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":622134,"className":"costume_Char3_12_05","name":"Pied Piper Bergefuehrender Costume (Male)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622135,"className":"costume_Char3_12_06","name":"Pied Piper Bergefuehrender Costume (Female)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622146,"className":"costume_Char3_19_02_M","name":"Tiger Hunter White Tiger Costume (Male)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":622147,"className":"costume_Char3_19_02_F","name":"Tiger Hunter White Tiger Costume (Female)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":622148,"className":"costume_Char3_18_02_M","name":"Matross Victor Costume (Male)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":622149,"className":"costume_Char3_18_02_F","name":"Matross Victor Costume (Female)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":623125,"className":"costume_Char4_20_04","name":"Zealot Divine Vesture Costume (Male)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":623126,"className":"costume_Char4_20_05","name":"Zealot Divine Vesture Costume (Female)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":623136,"className":"costume_exorcist04","name":"Exorcist Concordat Costume (Male)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":623137,"className":"costume_exorcist05","name":"Exorcist Concordat Costume (Female)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":624101,"className":"costume_war_m_001","name":"Swordsman Master Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624102,"className":"costume_war_f_001","name":"Peltasta Master Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624103,"className":"costume_war_m_002","name":"Highlander Special Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624105,"className":"costume_war_m_003","name":"Orsha Soldier Costume: 7 Days","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624106,"className":"costume_war_f_003","name":"Orsha Soldier Costume: 7 Days","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624107,"className":"costume_war_f_002","name":"Highlander Special Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624108,"className":"costume_war_m_004","name":"Warrior's Spring Flower Dress (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624109,"className":"costume_war_f_004","name":"Warrior's Spring Flower Dress (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624110,"className":"costume_war_m_005","name":"Uska Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624111,"className":"costume_war_f_005","name":"Wilhelmina Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624112,"className":"costume_war_m_006","name":"Orsha Soldier Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624113,"className":"costume_war_f_006","name":"Orsha Soldier Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624114,"className":"costume_war_m_007","name":"Trump Swordman Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624115,"className":"costume_war_f_007","name":"Trump Swordman Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624116,"className":"costume_war_m_008","name":"Swordsman School Look Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624117,"className":"costume_war_f_008","name":"Swordsman School Look Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624118,"className":"costume_war_m_009","name":"Swordsman Special Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":624119,"className":"costume_war_f_009","name":"Swordsman Special Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":624120,"className":"costume_war_m_010","name":"Swordsman Swimwear Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624121,"className":"costume_war_f_010","name":"Swordsman Swimwear Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624122,"className":"costume_war_m_011","name":"Swordsman Wonderland Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624123,"className":"costume_war_f_011","name":"Swordsman Wonderland Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624124,"className":"costume_war_m_012","name":"Swordsman Royal Guard Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624125,"className":"costume_war_f_012","name":"Swordsman Sailor Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624126,"className":"costume_war_m_013","name":"Swordsman Ceremonial Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":624127,"className":"costume_war_f_013","name":"Swordsman Ceremonial Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":624128,"className":"costume_war_m_014","name":"Swordsman White Rose Costume (M)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624129,"className":"costume_war_f_014","name":"Swordsman White Rose Costume (F)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624130,"className":"costume_war_m_015","name":"Swordsman Smart Casual Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624131,"className":"costume_war_f_015","name":"Swordsman Smart Casual Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624132,"className":"costume_war_m_016","name":"Swordsman Christmas Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624133,"className":"costume_war_f_016","name":"Swordsman Christmas Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624134,"className":"costume_war_m_017","name":"Swordsman Party Outfit (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624135,"className":"costume_war_f_017","name":"Swordsman Party Outfit (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624136,"className":"costume_war_m_018","name":"Swordsman Simple Color Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624137,"className":"costume_war_f_018","name":"Swordsman Simple Color Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624198,"className":"costume_war_m_098","name":"Orsha Soldier Costume: 1 Minute","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624199,"className":"costume_war_f_099","name":"Orsha Soldier Costume: 1 Minute","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624301,"className":"costume_wiz_m_001","name":"Beholder Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624302,"className":"costume_wiz_f_001","name":"Mercenary Post Manager Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624303,"className":"costume_wiz_m_002","name":"Jurus Costume: 7 Days","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624304,"className":"costume_wiz_f_002","name":"Grita Costume: 7 Days","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624305,"className":"costume_wiz_m_003","name":"Wizard Special Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":624306,"className":"costume_wiz_f_003","name":"Wizard Special Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":624307,"className":"costume_wiz_m_004","name":"Wizard's Spring Flower Dress (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624308,"className":"costume_wiz_f_004","name":"Wizard's Spring Flower Dress (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624309,"className":"costume_wiz_m_005","name":"Lord Delmore Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624310,"className":"costume_wiz_f_005","name":"Wizard Master Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624311,"className":"costume_wiz_m_006","name":"Jurus Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624312,"className":"costume_wiz_f_006","name":"Grita Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624313,"className":"costume_wiz_m_007","name":"Trump Wizard Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624314,"className":"costume_wiz_f_007","name":"Trump Wizard Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624315,"className":"costume_wiz_m_008","name":"Wizard School Look Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624316,"className":"costume_wiz_f_008","name":"Wizard School Look Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624317,"className":"costume_wiz_m_009","name":"Mage Bunny Boy Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624318,"className":"costume_wiz_f_009","name":"Mage Bunny Girl Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624319,"className":"costume_wiz_m_010","name":"Wizard Swimwear Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624320,"className":"costume_wiz_f_010","name":"Wizard Swimwear Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624321,"className":"costume_wiz_m_011","name":"Wizard Wonderland Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624322,"className":"costume_wiz_f_011","name":"Wizard Wonderland Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624323,"className":"costume_wiz_m_012","name":"Wizard Ceremonial Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":624324,"className":"costume_wiz_f_012","name":"Wizard Ceremonial Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":624325,"className":"costume_wiz_m_013","name":"Wizard Gothic Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624326,"className":"costume_wiz_f_013","name":"Wizard Gothic Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624327,"className":"costume_wiz_m_014","name":"Wizard Smart Casual Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624328,"className":"costume_wiz_f_014","name":"Wizard Smart Casual Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624329,"className":"costume_wiz_m_016","name":"Wizard Christmas Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624332,"className":"costume_wiz_f_016","name":"Wizard Christmas Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624333,"className":"costume_wiz_m_017","name":"Pyromancer Special Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":624334,"className":"costume_wiz_f_017","name":"Pyromancer Special Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":624335,"className":"costume_wiz_m_018","name":"Wizard Party Outfit (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624336,"className":"costume_wiz_f_018","name":"Wizard Party Outfit (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624337,"className":"costume_wiz_m_019","name":"Psychokino Special Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624338,"className":"costume_wiz_f_019","name":"Psychokino Special Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624339,"className":"costume_wiz_m_020","name":"Wizard Simple Color Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624340,"className":"costume_wiz_f_020","name":"Wizard Simple Color Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624398,"className":"costume_wiz_m_098","name":"Jurus Costume: 1 Minute","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624399,"className":"costume_wiz_f_099","name":"Grita Costume: 1 Minute","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624501,"className":"costume_arc_m_001","name":"Paladin Follower Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624502,"className":"costume_arc_f_001","name":"Christina Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624503,"className":"costume_arc_m_002","name":"Archer Special Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":624504,"className":"costume_arc_f_002","name":"Archer Special Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":624505,"className":"costume_arc_m_003","name":"Pilgrim Costume (Male): 7 Days","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624506,"className":"costume_arc_f_003","name":"Pilgrim Costume (Female): 7 Days","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624507,"className":"costume_arc_m_004","name":"Archer's Spring Flower Dress (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624508,"className":"costume_arc_f_004","name":"Archer's Spring Flower Dress (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624509,"className":"costume_arc_m_005","name":"Manager Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624510,"className":"costume_arc_f_005","name":"Storage Keeper Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624511,"className":"costume_arc_m_006","name":"Quarrel Shooter Special Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624512,"className":"costume_arc_f_006","name":"Quarrel Shooter Special Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624513,"className":"costume_arc_m_007","name":"Pilgrim Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624514,"className":"costume_arc_f_007","name":"Pilgrim Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624515,"className":"costume_arc_m_008","name":"Trump Archer Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624516,"className":"costume_arc_f_008","name":"Trump Archer Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624517,"className":"costume_arc_m_009","name":"Archer School Look Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624518,"className":"costume_arc_f_009","name":"Archer School Look Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624520,"className":"costume_arc_f_010","name":"Archer Racoon Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624521,"className":"costume_arc_m_011","name":"Archer Swimwear Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624522,"className":"costume_arc_f_011","name":"Archer Swimwear Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624523,"className":"costume_arc_m_012","name":"Archer Wonderland Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624524,"className":"costume_arc_f_012","name":"Archer Wonderland Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624525,"className":"costume_arc_m_013","name":"Ranger Special Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":624526,"className":"costume_arc_f_013","name":"Ranger Special Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":624528,"className":"costume_arc_f_014","name":"Archer Sailor Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624529,"className":"costume_arc_m_015","name":"Archer Ceremonial Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":624530,"className":"costume_arc_f_015","name":"Archer Ceremonial Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":624531,"className":"costume_arc_m_016","name":"Archer's Heavily Armed Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624533,"className":"costume_arc_m_017","name":"Archer Smart Casual Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624534,"className":"costume_arc_f_017","name":"Archer Smart Casual Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624535,"className":"costume_arc_m_019","name":"Archer Christmas Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624538,"className":"costume_arc_f_019","name":"Archer Christmas Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624539,"className":"costume_arc_m_020","name":"Archer Party Outfit (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624540,"className":"costume_arc_f_020","name":"Archer Party Outfit (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624541,"className":"costume_arc_m_021","name":"Archer Simple Color Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624542,"className":"costume_arc_f_021","name":"Archer Simple Color Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624598,"className":"costume_arc_m_099","name":"Pilgrim Costume (Male): 1 Minute","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624599,"className":"costume_arc_f_099","name":"Pilgrim Costume (Female): 1 Minute","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624701,"className":"costume_clr_m_001","name":"Paladin Master Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624702,"className":"costume_clr_f_001","name":"Wings of Vaivora Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624703,"className":"costume_clr_m_002","name":"Priest Special Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624704,"className":"costume_clr_f_002","name":"Priest Special Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624705,"className":"costume_clr_m_003","name":"Fedimian Merchant Costume (Male): 7 Days","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624706,"className":"costume_clr_f_003","name":"Fedimian Merchant Costume (Female): 7 Days","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624707,"className":"costume_clr_m_004","name":"Cleric's Spring Flower Dress (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624708,"className":"costume_clr_f_004","name":"Cleric's Spring Flower Dress (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624709,"className":"costume_clr_m_005","name":"Item Merchant Alf Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624710,"className":"costume_clr_f_005","name":"Equipment Merchant Jura Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624711,"className":"costume_clr_m_006","name":"Fedimian Merchant Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624712,"className":"costume_clr_f_006","name":"Fedimian Merchant Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624713,"className":"costume_clr_m_007","name":"Trump Cleric Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624714,"className":"costume_clr_f_007","name":"Trump Cleric Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624715,"className":"costume_clr_m_008","name":"Dievdirbys Special Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624716,"className":"costume_clr_f_008","name":"Dievdirbys Special Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624717,"className":"costume_clr_m_009","name":"Cleric School Look Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624718,"className":"costume_clr_f_009","name":"Cleric School Look Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624719,"className":"costume_clr_m_010","name":"Cleric Servant Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624720,"className":"costume_clr_f_010","name":"Cleric Servant Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624721,"className":"costume_clr_m_011","name":"Cleric Swimwear Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624722,"className":"costume_clr_f_011","name":"Cleric Swimwear Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624723,"className":"costume_clr_m_012","name":"Cleric Wonderland Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624724,"className":"costume_clr_f_012","name":"Cleric Wonderland Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624725,"className":"costume_clr_m_013","name":"Cleric Ceremonial Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":624726,"className":"costume_clr_f_013","name":"Cleric Ceremonial Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":624727,"className":"costume_clr_m_014","name":"Monk Special Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624728,"className":"costume_clr_f_014","name":"Monk Special Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624729,"className":"costume_clr_m_015","name":"Cleric Special Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":624730,"className":"costume_clr_f_015","name":"Cleric Special Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":624731,"className":"costume_clr_m_016","name":"Cleric Smart Casual Look (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624732,"className":"costume_clr_f_016","name":"Cleric Smart Casual Look (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624733,"className":"costume_clr_m_017","name":"Cleric Christmas Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624734,"className":"costume_clr_f_017","name":"Cleric Christmas Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624735,"className":"costume_clr_m_018","name":"Cleric Party Outfit (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624736,"className":"costume_clr_f_018","name":"Cleric Party Outfit (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624737,"className":"costume_clr_m_019","name":"Cleric Simple Color Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624738,"className":"costume_clr_f_019","name":"Cleric Simple Color Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624798,"className":"costume_clr_m_099","name":"Fedimian Merchant Costume (Male): 1 Minute","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":624799,"className":"costume_clr_f_099","name":"Fedimian Merchant Costume (Female): 1 Minute","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":625028,"className":"costume_Char5_13_02_M","name":"Ardito Seasoned Troops Costume (Male)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625029,"className":"costume_Char5_13_02_F","name":"Ardito Seasoned Troops Costume (Female)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1},{"itemId":625030,"className":"costume_Char5_14_02_M","name":"Sheriff Raven Costume (Male)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":625031,"className":"costume_Char5_14_02_F","name":"Sheriff Raven Costume (Female)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","minLevel":1,"script":{"strArg":"UseCharCreate"}},{"itemId":633001,"className":"costume_Com_1","name":"Gabija Costume","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633002,"className":"costume_Com_2","name":"Ausrine Costume","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633003,"className":"costume_Com_3","name":"Vakarine Costume","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633004,"className":"costume_Com_4","name":"Cockatrice Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633005,"className":"costume_Com_5","name":"Hanbok Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633006,"className":"costume_Com_6","name":"Hanbok Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633007,"className":"costume_Com_7","name":"Bad Kids Black School Uniform (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633008,"className":"costume_Com_8","name":"Bad Kids Black School Uniform (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633009,"className":"costume_Com_9","name":"Bad Kids Red School Uniform (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633010,"className":"costume_Com_10","name":"Bad Kids Red School Uniform (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633011,"className":"costume_Com_11","name":"Bad Kids White School Uniform (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633012,"className":"costume_Com_12","name":"Bad Kids White School Uniform (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633013,"className":"costume_Com_13","name":"Bad Kids Blue School Uniform (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633014,"className":"costume_Com_14","name":"Bad Kids Blue School Uniform (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633015,"className":"costume_Com_15","name":"Cherry Blossom Sailor Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633016,"className":"costume_Com_16","name":"Cherry Blossom Sailor Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633017,"className":"costume_Com_17","name":"Best Man Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633018,"className":"costume_Com_18","name":"Bridesmaid Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633019,"className":"costume_Com_19","name":"Forest Fairy Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633020,"className":"costume_Com_20","name":"Forest Fairy Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633021,"className":"costume_Com_21","name":"Shark Pirate Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633022,"className":"costume_Com_22","name":"Shark Pirate Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633023,"className":"costume_Com_23","name":"Heart-Throb Wedding Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633024,"className":"costume_Com_24","name":"My Wedding Dress Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633025,"className":"costume_Com_25","name":"My Wedding Tuxedo Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633026,"className":"costume_Com_26","name":"Heart-Throb Wedding Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633027,"className":"costume_Com_27","name":"Stuffed Animal Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633028,"className":"costume_Com_28","name":"Tuxedo Cat Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633029,"className":"costume_Com_29","name":"Fried Chicken Poodle Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633030,"className":"costume_Com_30","name":"Black Butler Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633031,"className":"costume_Com_31","name":"Black Maid Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633032,"className":"costume_Com_32","name":"Red Butler Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633033,"className":"costume_Com_33","name":"Red Maid Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633034,"className":"costume_Com_34","name":"Blue Butler Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633035,"className":"costume_Com_35","name":"Blue Maid Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633036,"className":"costume_Com_36","name":"Junior Mercenary Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633037,"className":"costume_Com_37","name":"Junior Mercenary Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633038,"className":"costume_Com_38","name":"Golden Champion Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633039,"className":"costume_Com_39","name":"Golden Champion Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633040,"className":"costume_Com_40","name":"Black Champion Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633041,"className":"costume_Com_41","name":"Black Champion Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633042,"className":"costume_Com_42","name":"White Shorts Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633043,"className":"costume_Com_43","name":"Sling Bikini Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633044,"className":"costume_Com_44","name":"Rash Guard Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633045,"className":"costume_Com_45","name":"Rash Guard Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633046,"className":"costume_Com_46","name":"Trunks Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633047,"className":"costume_Com_47","name":"One-piece Swimsuit Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633048,"className":"costume_Com_48","name":"Flamingo Float White Shorts (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633049,"className":"costume_Com_49","name":"Flamingo Float Sling Bikini (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633050,"className":"costume_Com_50","name":"Duck Float Rash Guard (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633051,"className":"costume_Com_51","name":"Duck Float Rash Guard (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633052,"className":"costume_Com_52","name":"Flippers Trunks Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633053,"className":"costume_Com_53","name":"Flippers One-piece Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633054,"className":"costume_Com_54","name":"Mercenary Uniform (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633055,"className":"costume_Com_55","name":"Mercenary Uniform (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633056,"className":"costume_Com_56","name":"Modern Black Bunny Girl (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633057,"className":"costume_Com_57","name":"Modern Black Bunny Boy (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633058,"className":"costume_Com_58","name":"Hot Red Bunny Girl (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633059,"className":"costume_Com_59","name":"Hot Red Bunny Boy (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633060,"className":"costume_Com_60","name":"Lovely Pink Bunny Girl (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633061,"className":"costume_Com_61","name":"Lovely Pink Bunny Boy (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633062,"className":"costume_Com_62","name":"Romantic Pink Nurse (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633063,"className":"costume_Com_63","name":"Romantic Pink Nurse (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633064,"className":"costume_Com_64","name":"Sky Blue Nurse (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633065,"className":"costume_Com_65","name":"Sky Blue Nurse (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633066,"className":"costume_Com_66","name":"Pure White Nurse (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633067,"className":"costume_Com_67","name":"Pure White Nurse (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633068,"className":"costume_Com_68","name":"Chuseok Hanbok Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633069,"className":"costume_Com_69","name":"Chuseok Hanbok Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633070,"className":"costume_Com_70","name":"Vampire Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633071,"className":"costume_Com_71","name":"Vampire Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633072,"className":"costume_Com_72","name":"Glow-in-the-Dark Skeleton Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633073,"className":"costume_Com_73","name":"Winter Night Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633074,"className":"costume_Com_74","name":"Winter Night Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633075,"className":"costume_Com_75","name":"Santa Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633076,"className":"costume_Com_76","name":"Santa Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633077,"className":"costume_Com_77","name":"Rudolph Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633078,"className":"costume_Com_78","name":"Premium Snowflake Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633079,"className":"costume_Com_79","name":"Premium Snowflake Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633080,"className":"costume_Com_80","name":"Golden Puppy Body","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633081,"className":"costume_Com_81","name":"Golden Dog Warrior Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633082,"className":"costume_Com_82","name":"Golden Dog Warrior Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633083,"className":"costume_Com_83","name":"Preppy Freshman School Uniform (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633084,"className":"costume_Com_84","name":"Preppy Freshman School Uniform (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633085,"className":"costume_Com_85","name":"Mint Freshman School Uniform (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633086,"className":"costume_Com_86","name":"Pink Freshman School Uniform (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633087,"className":"costume_Com_87","name":"Student Council School Uniform (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633088,"className":"costume_Com_88","name":"Mint Freshman School Uniform (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633089,"className":"costume_Com_89","name":"Pink Freshman School Uniform (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633090,"className":"costume_Com_90","name":"Student Council School Uniform (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633091,"className":"costume_Com_91","name":"Trouble Gang School Uniform (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633092,"className":"costume_Com_92","name":"Trouble Gang School Uniform (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633093,"className":"costume_Com_93","name":"Velcoffer Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633094,"className":"costume_Com_94","name":"Spring Farmer Boy Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633095,"className":"costume_Com_95","name":"Spring Farmer Girl Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633096,"className":"costume_Com_96","name":"Golden Fairy Wedding Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633097,"className":"costume_Com_97","name":"Golden Fairy Wedding Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633098,"className":"costume_Com_98","name":"Dawn Fairy Wedding Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633099,"className":"costume_Com_99","name":"Dawn Fairy Wedding Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633100,"className":"costume_Com_100","name":"Teeny Fairy Wedding Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633101,"className":"costume_Com_101","name":"Teeny Fairy Wedding Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633104,"className":"costume_Com_104","name":"Klaipeda Capricorns Uniform (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633105,"className":"costume_Com_105","name":"Klaipeda Capricorns Uniform (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633106,"className":"costume_Com_106","name":"Orsha Lions Uniform (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633107,"className":"costume_Com_107","name":"Orsha Lions Uniform (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633108,"className":"costume_Com_108","name":"Whistle Referee Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633109,"className":"costume_Com_109","name":"Whistle Referee Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633110,"className":"costume_Com_110","name":"Orsha Supporters Uniform (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633111,"className":"costume_Com_111","name":"Orsha Supporters Uniform (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633112,"className":"costume_Com_112","name":"Klaipeda Supporters Uniform (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633113,"className":"costume_Com_113","name":"Klaipeda Supporters Uniform (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633114,"className":"costume_Com_114","name":"Romantic Sailor Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633115,"className":"costume_Com_115","name":"Romantic Sailor Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633116,"className":"costume_Com_116","name":"Marine Beachwear Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633117,"className":"costume_Com_117","name":"Marine Beachwear Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633118,"className":"costume_Com_118","name":"Summer Beachwear Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633119,"className":"costume_Com_119","name":"Summer Beachwear Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633120,"className":"costume_Com_120","name":"Romantic Sailor Whale Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633121,"className":"costume_Com_121","name":"Romantic Sailor Whale Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633122,"className":"costume_Com_122","name":"Marine Beachwear Whale Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633123,"className":"costume_Com_123","name":"Marine Beachwear Whale Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633124,"className":"costume_Com_124","name":"Summer Beachwear Whale Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633125,"className":"costume_Com_125","name":"Summer Beachwear Whale Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633126,"className":"costume_Com_126","name":"ITEM_20230425_028530","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633127,"className":"costume_Com_127","name":"ITEM_20230425_028531","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633128,"className":"costume_Com_128","name":"Ebony Rook Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633129,"className":"costume_Com_129","name":"Ivory Pawn Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633130,"className":"costume_Com_130","name":"Ivory Bishop Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633131,"className":"costume_Com_131","name":"Ebony Knight Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633132,"className":"costume_Com_132","name":"Ebony King Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633133,"className":"costume_Com_133","name":"Ivory Queen Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633134,"className":"costume_Com_134","name":"Moon Rabbit Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633135,"className":"costume_Com_135","name":"Royal Envoy Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633136,"className":"costume_Com_136","name":"Royal Envoy Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633137,"className":"costume_Com_137","name":"Court Scholar Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633138,"className":"costume_Com_138","name":"Court Scholar Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633139,"className":"costume_Com_139","name":"Black Ceremonial Robes (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633140,"className":"costume_Com_140","name":"Black Ceremonial Robes (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633141,"className":"costume_Com_141","name":"White Wolf Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633142,"className":"costume_Com_142","name":"White Wolf Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633143,"className":"costume_Com_143","name":"Black Cat Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633144,"className":"costume_Com_144","name":"Black Cat Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633145,"className":"costume_Com_145","name":"Spider Web Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633146,"className":"costume_Com_146","name":"Spider Web Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633149,"className":"costume_Com_149","name":"ITEM_20230425_028532","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633150,"className":"costume_Com_150","name":"ITEM_20230425_028533","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633154,"className":"costume_Com_154","name":"Nicopolis Guard Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633155,"className":"costume_Com_155","name":"Nicopolis Guard Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633156,"className":"costume_Com_156","name":"Pit-a-pat Tuxedo (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633157,"className":"costume_Com_157","name":"Pit-a-pat Dress (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633158,"className":"costume_Com_158","name":"Black Sailor Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633159,"className":"costume_Com_159","name":"Black Sailor Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633160,"className":"costume_Com_160","name":"Coral Blue Bunny Boy Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633161,"className":"costume_Com_161","name":"Coral Blue Bunny Girl Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633162,"className":"costume_Com_162","name":"Giltine Follower Robe (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633163,"className":"costume_Com_163","name":"Giltine Follower Robe (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633164,"className":"costume_Com_164","name":"Wrap Me Up Santa Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633165,"className":"costume_Com_165","name":"Wrap Me Up Santa Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633166,"className":"costume_Com_166","name":"Cozy Polar Bear Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633167,"className":"costume_Com_167","name":"Elegant Snow Fox Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633168,"className":"costume_Com_168","name":"Fluffy Penguin Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633169,"className":"costume_Com_169","name":"Black Tracksuit","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633170,"className":"costume_Com_170","name":"Red Tracksuit","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633171,"className":"costume_Com_171","name":"Green Student Tracksuit","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633172,"className":"costume_Com_172","name":"Grey Tracksuit","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633173,"className":"costume_Com_173","name":"Blue Lazy Day Tracksuit","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633174,"className":"costume_Com_174","name":"Purple Swag Tracksuit","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633175,"className":"costume_Com_175","name":"Yellow Jumpsuit","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633176,"className":"costume_Com_176","name":"Lucky Golden Pig Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633177,"className":"costume_Com_177","name":"ITEM_20230425_028534","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633178,"className":"costume_Com_178","name":"ITEM_20230425_028535","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633179,"className":"costume_Com_179","name":"Autumn Shade Hanbok Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633180,"className":"costume_Com_180","name":"Autumn Shade Hanbok Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633181,"className":"costume_Com_181","name":"Spring Shade Hanbok Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633182,"className":"costume_Com_182","name":"Spring Shade Hanbok Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633183,"className":"costume_Com_183","name":"Royal Hanbok Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633184,"className":"costume_Com_184","name":"Striped Hanbok Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633185,"className":"costume_Com_185","name":"Mystic Savior School Uniform (M)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633186,"className":"costume_Com_186","name":"Mystic Savior School Uniform (F)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633187,"className":"costume_Com_187","name":"Mystic Boy - Diamond (M)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"skillmake_magical_yellow"}},{"itemId":633188,"className":"costume_Com_188","name":"Mystic Girl - Diamond (F)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"skillmake_magical_yellow"}},{"itemId":633189,"className":"costume_Com_189","name":"Mystic Boy - Heart (M)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"skillmake_magical_red"}},{"itemId":633190,"className":"costume_Com_190","name":"Mystic Girl - Heart (F)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"skillmake_magical_red"}},{"itemId":633191,"className":"costume_Com_191","name":"Mystic Girl - Diamond (M)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"skillmake_magical_yellow_trans"}},{"itemId":633192,"className":"costume_Com_192","name":"Mystic Girl - Heart (M)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"skillmake_magical_red_trans"}},{"itemId":633199,"className":"costume_Com_199","name":"GM's Astro Ambition Costume (M)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633200,"className":"costume_Com_200","name":"GM's Astro Ambition Costume (F)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633201,"className":"costume_Com_201","name":"Laima Kindergarten Costume (M)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633202,"className":"costume_Com_202","name":"Laima Kindergarten Costume (F)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633203,"className":"costume_Com_203","name":"Private-Eye Costume (M)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633204,"className":"costume_Com_204","name":"Private-Eye Costume (F)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633205,"className":"costume_Com_205","name":"Martian Ambition Costume (M)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633206,"className":"costume_Com_206","name":"Martian Ambition Costume (F)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633207,"className":"costume_Com_207","name":"Elegant Noble Party Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633208,"className":"costume_Com_208","name":"Elegant Noble Party Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633209,"className":"costume_Com_209","name":"Red Rose Knight Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633210,"className":"costume_Com_210","name":"Red Rose Knight Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633211,"className":"costume_Com_211","name":"White Rose Knight Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633212,"className":"costume_Com_212","name":"White Knight Rose Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633216,"className":"costume_Com_216","name":"Varnaclipse Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633217,"className":"costume_Com_217","name":"Twilight Star Knight Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633218,"className":"costume_Com_218","name":"Twilight Star Knight Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633219,"className":"costume_Com_219","name":"Twilight Star Royal Guard Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633220,"className":"costume_Com_220","name":"Twilight Star Royal Guard Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633221,"className":"costume_Com_221","name":"Twilight Star Dispatcher Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633222,"className":"costume_Com_222","name":"Twilight Star Dispatcher Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633223,"className":"costume_Com_223","name":"Popolion Pirate Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633224,"className":"costume_Com_224","name":"Popolion Pirate Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633225,"className":"costume_Com_225","name":"Black Bear Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633226,"className":"costume_Com_226","name":"Scarlet Beachwear Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633227,"className":"costume_Com_227","name":"Scarlet Beachwear Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633228,"className":"costume_Com_228","name":"Marina Oceanware Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633229,"className":"costume_Com_229","name":"Marina Oceanware Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633230,"className":"costume_Com_230","name":"Beached Out Trunks (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633231,"className":"costume_Com_231","name":"Beached Out See-through Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633232,"className":"costume_Com_232","name":"Camping Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633233,"className":"costume_Com_233","name":"Camping Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633234,"className":"costume_Com_234","name":"Jungle Explorer Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633235,"className":"costume_Com_235","name":"Jungle Explorer Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633236,"className":"costume_Com_236","name":"Head Chef Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633237,"className":"costume_Com_237","name":"Head Chef Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633238,"className":"costume_Com_238","name":"Deputy Chef Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633239,"className":"costume_Com_239","name":"Deputy Chef Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633240,"className":"costume_Com_240","name":"Restaurant Manager Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633241,"className":"costume_Com_241","name":"Restaurant Manager Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633242,"className":"costume_Com_242","name":"Red TOS Ranger Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"skillmake_ranger_Red"}},{"itemId":633243,"className":"costume_Com_243","name":"Red TOS Ranger Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"skillmake_ranger_Red"}},{"itemId":633244,"className":"costume_Com_244","name":"TOS Ranger Pink Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"skillmake_ranger_Pink"}},{"itemId":633245,"className":"costume_Com_245","name":"Blue TOS Ranger Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"skillmake_ranger_Blue"}},{"itemId":633246,"className":"costume_Com_246","name":"Green TOS Ranger Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"skillmake_ranger_Green"}},{"itemId":633247,"className":"costume_Com_247","name":"Yellow TOS Ranger Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"skillmake_ranger_Yellow"}},{"itemId":633248,"className":"costume_Com_248","name":"Red TOS Ranger Costume - Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633249,"className":"costume_Com_249","name":"Pink TOS Ranger Costume - Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633250,"className":"costume_Com_250","name":"Blue TOS Ranger Costume - Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633251,"className":"costume_Com_251","name":"Yellow TOS Ranger Costume - Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633252,"className":"costume_Com_252","name":"Green TOS Ranger Costume - Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633253,"className":"costume_Com_253","name":"Pyrmas Tantalizer Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633254,"className":"costume_Com_254","name":"Pyrmas Moringponia Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633255,"className":"costume_Com_255","name":"Black Rabbit Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633256,"className":"costume_Com_256","name":"Candy Killer Rascal Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633257,"className":"costume_Com_257","name":"Candy Killer Clown Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633258,"className":"costume_Com_258","name":"Haunted Hospital Nurse Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633259,"className":"costume_Com_259","name":"Haunted Hospital Nurse Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633260,"className":"costume_Com_260","name":"Skull Party Skeleton Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633261,"className":"costume_Com_261","name":"Skull Party Skeleton Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633262,"className":"costume_Com_262","name":"NA","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633263,"className":"costume_Com_263","name":"NA","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633264,"className":"costume_Com_264","name":"Antras Tantalizer Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633265,"className":"costume_Com_265","name":"Antras Moringponia Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633266,"className":"costume_Com_266","name":"Conqueror Aukso Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633267,"className":"costume_Com_267","name":"Contender Sidabrine Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633268,"className":"costume_Com_268","name":"Competitor Valis Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633269,"className":"costume_Com_269","name":"Gabija Guardian Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633270,"className":"costume_Com_270","name":"Gabija Guardian Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633271,"className":"costume_Com_271","name":"Gabija Priest Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633272,"className":"costume_Com_272","name":"Gabija Priestess Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633273,"className":"costume_Com_273","name":"Sparking Tree Trunk Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633274,"className":"costume_Com_274","name":"Platina Dafne Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633275,"className":"costume_Com_275","name":"Platina Dafne Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633276,"className":"costume_Com_276","name":"Crimson Noel Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633277,"className":"costume_Com_277","name":"Crimson Noel Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633278,"className":"costume_Com_278","name":"Midnight Snow Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633279,"className":"costume_Com_279","name":"Midnight Snow Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633280,"className":"costume_Com_280","name":"Rouge Blossom Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633281,"className":"costume_Com_281","name":"Rouge Blossom Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633282,"className":"costume_Com_282","name":"Zaura Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633283,"className":"costume_Com_283","name":"Nuaele Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633284,"className":"costume_Com_284","name":"Heaven Guardian Armor (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633285,"className":"costume_Com_285","name":"Heaven Guardian Armor (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633286,"className":"costume_Com_286","name":"Earth Guardian Armor (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633287,"className":"costume_Com_287","name":"Earth Guardian Armor (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633288,"className":"costume_Com_288","name":"Magical Savior - Spade Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"skillmake_magical_mint"}},{"itemId":633289,"className":"costume_Com_289","name":"Magical Savior - Spade Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"skillmake_magical_mint"}},{"itemId":633290,"className":"costume_Com_290","name":"Magical Savior - Clover Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"skillmake_magical_pink"}},{"itemId":633291,"className":"costume_Com_291","name":"Magical Savior - Clover Costume (Female) ","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"skillmake_magical_pink"}},{"itemId":633292,"className":"costume_Com_292","name":"Magical Savior - Professor Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"skillmake_magical_black"}},{"itemId":633293,"className":"costume_Com_293","name":"Magical Savior - Professor Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"skillmake_magical_black"}},{"itemId":633294,"className":"costume_Com_294","name":"Magical Savior - Spade Costume (Male) - Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633295,"className":"costume_Com_295","name":"Magical Savior - Spade Costume (Female) - Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633296,"className":"costume_Com_296","name":"Magical Savior - Clover Costume (Male) - Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633297,"className":"costume_Com_297","name":"Magical Savior - Clover Costume (Female) - Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633298,"className":"costume_Com_298","name":"Magical Savior - Professor Costume (Male) - Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633299,"className":"costume_Com_299","name":"Magical Savior - Professor Costume (Female) - Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633300,"className":"costume_Com_300","name":"Magical Savior - Professor Costume (Male) - Transform (Male→Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633301,"className":"costume_Com_301","name":"Magical Savior - Professor Costume (Male) (Male→Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"skillmake_magical_black_trans"}},{"itemId":633302,"className":"costume_Com_302","name":"Popo Pop Neon Activity Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633303,"className":"costume_Com_303","name":"Popo Pop Neon Activity Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633304,"className":"costume_Com_304","name":"Popo Pop Damaged Street Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633305,"className":"costume_Com_305","name":"Popo Pop Damaged Street Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633306,"className":"costume_Com_306","name":"Popo Pop Funky Graffiti Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633307,"className":"costume_Com_307","name":"Popo Pop Funky Graffiti Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633308,"className":"costume_Com_308","name":"Popo Pop Main Stage Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633309,"className":"costume_Com_309","name":"Popo Pop Main Stage Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633310,"className":"costume_Com_310","name":"Bramble Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633311,"className":"costume_Com_311","name":"Kimono Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633312,"className":"costume_Com_312","name":"Kimono Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633313,"className":"costume_Com_313","name":"Flower Deer Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633314,"className":"costume_Com_314","name":"Solcomm Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633315,"className":"costume_Com_315","name":"Naktis Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633318,"className":"costume_Com_316","name":"Panda Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633323,"className":"costume_Com_313_kor","name":"Flower Deer Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633324,"className":"costume_Com_316_kor","name":"Panda Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633325,"className":"costume_Com_83_green","name":"[Event] Green School Uniform Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633326,"className":"costume_Com_84_green","name":"[Event] Green School Uniform Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633327,"className":"costume_Com_185_green","name":"[Event] Cardigan School Uniform Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633328,"className":"costume_Com_186_green","name":"[Event] Cardigan School Uniform Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633329,"className":"costume_Com_311_NoTrade","name":"Kimono Costume (Male)(Untradable)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633330,"className":"costume_Com_312_NoTrade","name":"Kimono Costume (Female)(Untradable)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633331,"className":"costume_Com_73_2","name":"Winter Night Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":633332,"className":"costume_Com_74_2","name":"Winter Night Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":635053,"className":"E_costume_Com_4","name":"[EVENT] Cockatrice Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":635123,"className":"costume_simple_festival_m","name":"TOS Celebration Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":635124,"className":"costume_simple_festival_f","name":"TOS Celebration Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":635156,"className":"costume_1709_NewField_m","name":"The Invited One Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":635157,"className":"costume_1709_NewField_f","name":"The Invited One Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":635339,"className":"EVENT_1804_ARBOR_COSTUME_M","name":"2018 Tree Lover Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":635340,"className":"EVENT_1804_ARBOR_COSTUME_F","name":"2018 Tree Lover Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":635358,"className":"costume_schaffenstar01_m","name":"Astral Tower Hero Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":635359,"className":"costume_schaffenstar01_f","name":"Astral Tower Hero Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":635410,"className":"costume_simple_festival_m_1809_ucc","name":"[Event] TOS Celebration Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":635411,"className":"costume_simple_festival_f_1809_ucc","name":"[Event] TOS Celebration Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":635509,"className":"costume_fes2019_m","name":"I♥TOS Costume (M)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":635510,"className":"costume_fes2019_f","name":"I♥TOS Costume (F)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":635570,"className":"costume_reissue_m","name":"Reissue Cafe T-shirt (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":635571,"className":"costume_reissue_f","name":"Reissue Cafe T-shirt (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":635572,"className":"wing_halloween_balloon","name":"Little Ghost Balloon","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":635631,"className":"Event_costume_1709_NewField_m","name":"[Event] The Invited One Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":635632,"className":"Event_costume_1709_NewField_f","name":"[Event] The Invited One Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":635633,"className":"Event_costume_simple_festival_m","name":"[Event] TOS Celebration Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":635634,"className":"Event_costume_simple_festival_f","name":"[Event] TOS Celebration Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":635635,"className":"Event_costume_fes2019_m","name":"[Event] I♥TOS Costume (M)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":635636,"className":"Event_costume_fes2019_f","name":"[Event] I♥TOS Costume (F)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":637000,"className":"Wing_Balloon","name":"Balloon Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637001,"className":"Wing_Heart","name":"Broken Pink Heart Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637002,"className":"Wing_Falcon","name":"Small Steam Punk Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637003,"className":"Wing_Angel","name":"Small Mint Angel Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637004,"className":"Wing_Bat","name":"Bat Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637005,"className":"Wing_Net","name":"Spider Web Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637006,"className":"Wing_Guilty","name":"Giltine's Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637007,"className":"Wing_Ice","name":"Ice Crystal Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637008,"className":"Wing_bagpack","name":"Fancy Backpack","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637009,"className":"Wing_Farmerhat","name":"Spring Farmer Hat","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637010,"className":"Wing_Flower01","name":"Golden Fairy Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637011,"className":"Wing_Flower02","name":"Dawn Fairy Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637012,"className":"Wing_Flower03","name":"Teeny Fairy Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637013,"className":"Wing_Rescue_Tube","name":"Marine Tube","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637014,"className":"Wing_Surfing_Marin","name":"Marine Surfboard","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637015,"className":"Wing_Kite_Rabbit","name":"Moon Rabbit Kite","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637016,"className":"Wing_Balloon_Rabbit","name":"Moon Rabbit Balloon","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637018,"className":"wing_inspector_scroll1","name":"Royal Envoy Scrolls","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637020,"className":"wing_halloween_pumpkin","name":"Jack-O-Lantern Balloon","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637021,"className":"wing_halloween_ghost","name":"Spooky Ghost Balloon","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637022,"className":"wing_halloween_cat","name":"Meow Cat Balloon","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637024,"className":"wing_Incense_Burner","name":"Giltine Incense Burner","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637025,"className":"wing_Guilty_Little","name":"Small Giltine Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637026,"className":"wing_winter_penguin","name":"Fluffy Penguin Balloon","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637027,"className":"wing_winter_star","name":"Shining Star Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637028,"className":"wing_winter_bell","name":"Jingle Bell Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637029,"className":"wing_corolla","name":"Glittering Rose Bouquet","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637030,"className":"wing_sea_wave","name":"Emerald Beach Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637031,"className":"wing_travelbag","name":"Explorer's Backpack","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637032,"className":"wing_Chicken","name":"Roasted Turkey Balloon","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637033,"className":"wing_ninetail","name":"Gumiho Tails","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1,"script":{"strArg":"TAIL"}},{"itemId":637034,"className":"wing_tantaliser1","name":"Pyrmas Tantalizer Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637035,"className":"wing_moth1","name":"Pyrmas Moringponia Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637037,"className":"wing_tantaliser2","name":"Antras Tantalizer Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637038,"className":"wing_moth2","name":"Antras Moringponia Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637039,"className":"wing_gabia","name":"Gabija Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637040,"className":"wing_gabia_re","name":"[Exchange Shop] Gabija Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637041,"className":"wing_2019xmas01","name":"Little Twinkle Star","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637042,"className":"wing_2019xmas02","name":"Evergreen and Bountiful","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637043,"className":"wing_redlight_balloon","name":"Red Lantern","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637044,"className":"wing_12animal01","name":"Pink Strand Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637045,"className":"wing_12animal02","name":"Red Strand Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637046,"className":"wing_12animal03","name":"Green Strand Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637047,"className":"wing_20magical01","name":"Magical Savior Wing - Spade","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637048,"className":"wing_20magical02","name":"Magical Savior Wing - Clover","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637049,"className":"wing_lecifer","name":"Rexipher Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637050,"className":"wing_marnoks","name":"Marnox Back Decoration","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637051,"className":"wing_froster_lord","name":"Froster Lord Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637052,"className":"wing_ChiefGuard","name":"Nebulas Back Decoration","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637053,"className":"wing_twndeer","name":"Flower Deer Head Balloon","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637054,"className":"wing_gabia_7d","name":"[Halloween] Gabija Wings (7 Days)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637055,"className":"Wing_Guilty_7d","name":"[Halloween] Giltine's Wing (7 Days)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637056,"className":"wing_tiny_balloon","name":"Tiny Tini","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637057,"className":"wing_twnpanda","name":"Panda Balloon","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637058,"className":"Wing_Guilty_Raid","name":"Giltine's Eroded Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637059,"className":"Wing_Guilty_NoTrade","name":"[Event] Giltine's Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637060,"className":"wing_asiomage","name":"Asiomage's Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637061,"className":"wing_quipmage","name":"Quipmage's Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637062,"className":"wing_diena","name":"Diena Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":637063,"className":"wing_delmore","name":"Delmore Observer","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":639101,"className":"Effect_Stamp_Good","name":"Good Student Stamp","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"GOOD_STAMP_EFFECT"}},{"itemId":639102,"className":"Effect_Special_Marin","name":"Lapping Waves","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"SPECIAL_MARIN_EFFECT"}},{"itemId":639103,"className":"Effect_Stamp_Rabbit","name":"Moon Rabbits Pounding Rice","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"RABBIT_STAMP_EFFECT"}},{"itemId":639104,"className":"Effect_Stamp_Horse","name":"Royal Envoy Horse Stamp","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"HORSE_STAMP_EFFECT"}},{"itemId":639105,"className":"Effect_Cherry_Blossom","name":"Blossoms in the Wind","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"CHERRY_BLOSSOM_EFFECT"}},{"itemId":639106,"className":"Effect_Stamp_Pumpkin","name":"Spooky Jack-O-Lantern","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"PUMPKIN_STAMP_EFFECT"}},{"itemId":639107,"className":"Effect_Ghost","name":"Creepy Ghost Party","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"GHOST_EFFECT"}},{"itemId":639108,"className":"Effect_Stamp_Thorn","name":"Giltine's Thorn","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"THORN_EFFECT"}},{"itemId":639109,"className":"Effect_AURORA","name":"Mysterious Aurora","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"AURORA_EFFECT"}},{"itemId":639110,"className":"Effect_SNOW","name":"Heavy Snow","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"SNOW_EFFECT"}},{"itemId":639111,"className":"Effect_Korean_Pattern","name":"Floral Decoration","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"KOREAN_PATTERN_EFFECT"}},{"itemId":639112,"className":"Effect_Valentine_01","name":"Sweet Explosion","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"VALENTINE_01_EFFECT"}},{"itemId":639113,"className":"Effect_magicalgirl_red","name":"Magic Circle - Heart","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"EFFECT_MAGICSQUARE_RED"}},{"itemId":639114,"className":"Effect_magicalgirl_yellow","name":"Magic Circle - Diamond","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"EFFECT_MAGICSQUARE_YELLOW"}},{"itemId":639115,"className":"Effect_flutting_rose","name":"Rose Petal Shower","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"EFFECT_FLUTTING_ROSE"}},{"itemId":639116,"className":"Effect_halloween_moon","name":"Crescent Moon","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"2019Halloween_effect_pre"}},{"itemId":639117,"className":"Effect_xmas_event","name":"Intense Sparkle","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1},{"itemId":639118,"className":"Effect_GabiaFire","name":"Gabija's Fire","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"GABIA_FIRE_EFFECT"}},{"itemId":639119,"className":"Effect_GabiaFire_re","name":"[Exchange Shop] Gabija's Fire","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"GABIA_FIRE_EFFECT"}},{"itemId":639120,"className":"Effect_2019xmas","name":"Midnight Starlight","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"2019XMAS_EFFECT"}},{"itemId":639121,"className":"Effect_12animal_halo","name":"Guardian Halo","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"12ANIMAL_EFFECT"}},{"itemId":639122,"className":"Effect_12animal_jump","name":"Mark of Doggaebi","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"12ANIMAL_JUMP"}},{"itemId":639123,"className":"Effect_Weekly_Mirtis","name":"Darkness of Mirtis","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1},{"itemId":639124,"className":"Effect_2020magical01","name":"Magic Circle - Spade","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"20MAGICAL01_JUMP"}},{"itemId":639125,"className":"Effect_2020magical02","name":"Magic Circle - Clover","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"20MAGICAL02_JUMP"}},{"itemId":639126,"className":"Effect_hiphop","name":"Colorful Spotlight","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"HiphopEffect_pre"}},{"itemId":639127,"className":"Effect_Weekly_warpulis","name":"Warpulis Effect Costume","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1},{"itemId":639128,"className":"Effect_Bamboo_twnpanda","name":"Bamboo Forest","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"ITEM_EFFECT_TWNPANDA_PRE"}},{"itemId":639129,"className":"Effect_Stamp_Good_A","name":"ITEM_20230424_028394","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"GOOD_STAMP_EFFECT"}},{"itemId":640000,"className":"Effect_SnowFlower","name":"White Snowflake Crystal","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"SNOW_FLOWER_EFFECT"}},{"itemId":640230,"className":"food_penguin","name":"Sardine","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"PET_FOOD_USE","strArg":"sardina","numArg1":600,"numArg2":11}},{"itemId":640244,"className":"food_cereal","name":"Battlebird Feed","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"PET_FOOD_USE","strArg":"cereal","numArg1":600,"numArg2":12}},{"itemId":640262,"className":"Premium_indunReset_TA","name":"Instanced Dungeon Reset Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":640267,"className":"Moru_Silver_TA","name":"Shining Silver Anvil","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"SILVER","numArg1":3,"numArg2":3}},{"itemId":640283,"className":"Moru_Silver_TA2","name":"Dazzling Silver Anvil","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"SILVER","numArg1":3,"numArg2":3}},{"itemId":640328,"className":"Moru_Silver_TA_Recycle","name":"Shining Silver Anvil (5 Medals)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"SILVER","numArg1":3,"numArg2":3}},{"itemId":640339,"className":"Moru_Silver_TA_V2","name":"Shining Silver Anvil","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"SILVER","numArg1":3,"numArg2":3}},{"itemId":640416,"className":"Ghaca_PC_Event_Csoume02","name":"ITEM_20230425_028576","type":"Consume","group":"Premium","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Ghaca_PC_Day"}},{"itemId":640429,"className":"NEWCHARACTER_EQUIP_LV350_UNIQUE_KUPOLE","name":"[Kupole] Masinios Weapon Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":640431,"className":"KUPOLE_ASIO_WEAPON_SELECT","name":"[Kupole] Asio Weapon Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":640432,"className":"KUPOLE_NECK_350","name":"[Kupole] 350 Necklace Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":640433,"className":"KUPOLE_BRC_350","name":"[Kupole] 350 Bracelet Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":640434,"className":"KUPOLE_CARD_LEGEND","name":"[Kupole] Legend Card Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":640442,"className":"Ghaca_PC_Event_Csoume03","name":"ITEM_20230425_028577","type":"Consume","group":"Premium","weight":5,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Ghaca_PC_Day"}},{"itemId":640458,"className":"TP_jexpCard_UpRank2","name":"Class EXP Card (1st)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_JEXP_MAX"}},{"itemId":640459,"className":"TP_jexpCard_UpRank3","name":"Class EXP Card (2nd)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_JEXP_MAX"}},{"itemId":640460,"className":"TP_jexpCard_UpRank4","name":"Class EXP Card (3rd)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_JEXP_MAX"}},{"itemId":640461,"className":"TP_jexpCard_UpRank5","name":"Class EXP Card (4th)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_JEXP_MAX"}},{"itemId":640534,"className":"SEASONLETICIA_Premium_indunReset_TA","name":"Instanced Dungeon Reset Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":641824,"className":"Select_Weapon_NewYear_Box","name":"Unique Support Weapon Box","type":"Etc","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":641825,"className":"NewYear_Weapon_Reinforce_11","name":"Growth Weapon +11 Enhancement Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_NEWYEAR_WEAPON_POWER_UP","strArg":"Reinforce"}},{"itemId":641826,"className":"NewYear_Weapon_Transcend_5","name":"Growth Weapon Stage 5 Transcendence Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_NEWYEAR_WEAPON_POWER_UP","strArg":"Transcend"}},{"itemId":641827,"className":"Select_Weapon_ChuSeok_Box","name":"Legend Growth Weapon Selection Box","type":"Etc","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":641828,"className":"Select_Weapon_forever_Box","name":"[4ever] Legend Growth Weapon Box","type":"Etc","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":641953,"className":"ChallengeModeReset","name":"Challenge Mode One Entry Voucher (A)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":641954,"className":"ChallengeModeReset_1d","name":"Challenge Mode One Entry Voucher (1 Day)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":641963,"className":"Premium_ChallengeModeReset","name":"Challenge Mode One Entry Voucher (A)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":641979,"className":"GuildMileage_Paper_50","name":"Guild Mileage: 50","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_GuildMileage_Paper","strArg":"GuildMileage_From_GM","numArg1":50}},{"itemId":641980,"className":"GuildMileage_Paper_100","name":"Guild Mileage: 100","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_GuildMileage_Paper","strArg":"GuildMileage_From_GM","numArg1":100}},{"itemId":641981,"className":"GuildMileage_Paper_200","name":"Guild Mileage: 200","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_GuildMileage_Paper","strArg":"GuildMileage_From_GM","numArg1":200}},{"itemId":641982,"className":"KUPOLE_GuildMileage_Paper_10000","name":"[Kupole] Guild Mileage: 10000","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_GuildMileage_Paper","strArg":"GuildMileage_From_GM","numArg1":10000}},{"itemId":641987,"className":"SEASONLETICIA_ChallengeModeReset","name":"Challenge Mode One Entry Voucher (A)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":642501,"className":"Gacha_TP_001","name":"Leticia's Secret Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_TP_001"}},{"itemId":642506,"className":"Gacha_TP_010","name":"Leticia's Secret Cube x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_TP_001"}},{"itemId":642511,"className":"Gacha_HairAcc_001","name":"Goddess' Blessed Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_001","numArg1":1}},{"itemId":642512,"className":"Gacha_HairAcc_010","name":"Goddess' Blessed Cube x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_001","numArg1":10}},{"itemId":642521,"className":"Gacha_TP_102","name":"School Uniform Cube (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_102"}},{"itemId":642522,"className":"Gacha_TP_103","name":"School Uniform Cube (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_103"}},{"itemId":642523,"className":"Gacha_Toy_Box","name":"Toy Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"TOY_GACHA"}},{"itemId":642524,"className":"Gacha_TP_104","name":"Heart-Throb Wedding Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_104"}},{"itemId":642525,"className":"Gacha_TP_105","name":"Heart-Throb Wedding Cube x 10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_104"}},{"itemId":642526,"className":"Gacha_TP_106","name":"Heart-Throb Wedding Cube Set","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Wedding_GACHA3_Box"}},{"itemId":642527,"className":"Gacha_TP_107","name":"Leticia's Secret Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP2_001"}},{"itemId":642528,"className":"Gacha_TP_108","name":"Leticia's Secret Cube x 10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP2_001"}},{"itemId":642529,"className":"Recipe_315_Box","name":"Artisan Weapon Recipe Box (Lv. 315)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":100000}},{"itemId":642530,"className":"Gacha_TP_109","name":"N/A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_106"}},{"itemId":642531,"className":"Gacha_TP_110","name":"N/A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_105"}},{"itemId":642532,"className":"Gacha_TP_111","name":"N/A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_107"}},{"itemId":642533,"className":"Gacha_TP_102_11","name":"ITEM_20230424_028406","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_102","numArg1":10}},{"itemId":642534,"className":"Gacha_TP_103_11","name":"ITEM_20230424_028407","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_103","numArg1":10}},{"itemId":642535,"className":"Gacha_TP_109_11","name":"ITEM_20230424_028408","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_106"}},{"itemId":642536,"className":"Gacha_TP_110_11","name":"ITEM_20230424_028409","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_105"}},{"itemId":642537,"className":"Gacha_TP_112","name":"Nurse Toy Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"NURSE_TOY_GACHA"}},{"itemId":642538,"className":"Gacha_TP_113","name":"Bunny Toy Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"BUNNY_TOY_GACHA"}},{"itemId":642539,"className":"Class_Solution_Select_Box","name":"Unlock Voucher Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":100000}},{"itemId":642540,"className":"Gacha_TP_101_JP","name":"ITEM_20230424_028410","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_101_JP"}},{"itemId":642541,"className":"Gacha_TP_102_JP","name":"ITEM_20230424_028411","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_102_JP"}},{"itemId":642542,"className":"Gacha_TP_101_11_JP","name":"ITEM_20230424_028412","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_101_JP"}},{"itemId":642543,"className":"Gacha_TP_102_11_JP","name":"ITEM_20230424_028413","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_102_JP"}},{"itemId":642544,"className":"Gacha_TP_103_JP","name":"ITEM_20230424_028414","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_103_JP"}},{"itemId":642545,"className":"Gacha_TP_104_JP","name":"ITEM_20230424_028415","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_104_JP"}},{"itemId":642546,"className":"Gacha_TP_103_11_JP","name":"ITEM_20230424_028416","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_103_JP"}},{"itemId":642547,"className":"Gacha_TP_104_11_JP","name":"ITEM_20230424_028417","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_104_JP"}},{"itemId":642549,"className":"Gacha_HalloweenTOY","name":"Halloween Surprise Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Halloween_TOY_GACHA"}},{"itemId":642550,"className":"misc_ore15_Box","name":"Practonium Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_MISC_ORE15_BOX","strArg":"Halloween_TOY_GACHA"}},{"itemId":642551,"className":"Event_Solmiki_Box","name":"Solmiki Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":100000}},{"itemId":642552,"className":"Gacha_Halloween_Event","name":"Halloween Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Gacha_Halloween_Event"}},{"itemId":642553,"className":"Gacha_TP_105_JP","name":"ITEM_20230424_028419","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_105_JP"}},{"itemId":642554,"className":"Gacha_TP_106_JP","name":"ITEM_20230424_028420","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_106_JP"}},{"itemId":642555,"className":"Gacha_TP_105_11_JP","name":"ITEM_20230424_028421","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_105_JP"}},{"itemId":642556,"className":"Gacha_TP_106_11_JP","name":"2017 Halloween Cube (Female) x10+1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_106_JP"}},{"itemId":642558,"className":"Gacha_Chrismas_2017","name":"Christmas Tree Ornament Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Gacha_Chrismas_2017"}},{"itemId":642559,"className":"Gacha_Toy_Box_Chrismas_2017","name":"Christmas Redsocks","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Toy_Box_Chrismas_2017"}},{"itemId":642560,"className":"Gacha_TP_107_JP","name":"ITEM_20230424_028422","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_107_JP"}},{"itemId":642561,"className":"Gacha_TP_108_JP","name":"ITEM_20230424_028423","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_108_JP"}},{"itemId":642562,"className":"Gacha_TP_107_11_JP","name":"ITEM_20230424_028424","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_107_JP"}},{"itemId":642563,"className":"Gacha_TP_108_11_JP","name":"ITEM_20230424_028425","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_108_JP"}},{"itemId":642564,"className":"Gacha_TP_109_JP","name":"ITEM_20230424_028426","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_109_JP"}},{"itemId":642565,"className":"Gacha_TP_110_JP","name":"ITEM_20230424_028427","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_110_JP"}},{"itemId":642566,"className":"Gacha_TP_109_11_JP","name":"ITEM_20230424_028428","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_109_JP"}},{"itemId":642567,"className":"Gacha_TP_110_11_JP","name":"ITEM_20230424_028429","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_110_JP"}},{"itemId":642568,"className":"Gacha_golddog","name":"Golden Pup Lucky Pouch","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","strArg":"Gacha_Golddog"}},{"itemId":642569,"className":"Gacha_TP_111_JP","name":"ITEM_20230424_028430","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_111_JP"}},{"itemId":642570,"className":"Gacha_TP_112_JP","name":"ITEM_20230424_028431","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_112_JP"}},{"itemId":642571,"className":"Gacha_TP_111_11_JP","name":"ITEM_20230424_028432","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_111_JP"}},{"itemId":642572,"className":"Gacha_TP_112_11_JP","name":"ITEM_20230424_028433","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_112_JP"}},{"itemId":642574,"className":"Gacha_SchoolUniform_m_2018","name":"Freshman School Uniform Box (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_SchoolUniform_m_2018"}},{"itemId":642575,"className":"Gacha_SchoolUniform_f_2018","name":"Freshman School Uniform Box (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_SchoolUniform_f_2018"}},{"itemId":642576,"className":"Gacha_TP_2YEARS_STEAM","name":"GM Keepsake Bundle","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_2YEARS_BOX"}},{"itemId":642577,"className":"Gacha_TP_113_JP","name":"ITEM_20230424_028434","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_113_JP"}},{"itemId":642578,"className":"Gacha_TP_114_JP","name":"ITEM_20230424_028435","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_114_JP"}},{"itemId":642579,"className":"Gacha_TP_113_11_JP","name":"ITEM_20230424_028436","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_113_JP"}},{"itemId":642580,"className":"Gacha_TP_114_11_JP","name":"ITEM_20230424_028437","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_114_JP"}},{"itemId":642581,"className":"Recipe_350_Box","name":"Artisan Weapon Recipe Box (Lv. 350)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":642582,"className":"Gacha_TP_115_JP","name":"ITEM_20230424_028438","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_115_JP"}},{"itemId":642583,"className":"Gacha_TP_116_JP","name":"ITEM_20230424_028439","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_116_JP"}},{"itemId":642584,"className":"Gacha_TP_115_11_JP","name":"ITEM_20230424_028440","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_115_JP"}},{"itemId":642585,"className":"Gacha_TP_116_11_JP","name":"ITEM_20230424_028441","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_116_JP"}},{"itemId":642586,"className":"Gacha_TP_114_11","name":"Fairy Wedding Cube x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_WEDDING_2018"}},{"itemId":642587,"className":"Gacha_TP_114","name":"Fairy Wedding Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_WEDDING_2018"}},{"itemId":642588,"className":"Gacha_TP_117_JP","name":"ITEM_20230424_028442","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_117_JP"}},{"itemId":642589,"className":"Gacha_TP_118_JP","name":"ITEM_20230424_028443","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_118_JP"}},{"itemId":642590,"className":"Gacha_TP_117_11_JP","name":"ITEM_20230424_028444","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_117_JP"}},{"itemId":642591,"className":"Gacha_TP_118_11_JP","name":"ITEM_20230424_028445","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_118_JP"}},{"itemId":642592,"className":"Class_Solution_Select_Box_PC","name":"ITEM_20230425_028579","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":642593,"className":"Gacha_TP_119_JP","name":"ITEM_20230424_028446","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_119_JP"}},{"itemId":642594,"className":"Gacha_TP_120_JP","name":"ITEM_20230424_028447","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_120_JP"}},{"itemId":642595,"className":"Gacha_TP_119_11_JP","name":"ITEM_20230424_028448","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_119_JP"}},{"itemId":642596,"className":"Gacha_TP_120_11_JP","name":"ITEM_20230424_028449","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_120_JP"}},{"itemId":642597,"className":"Gacha_TP_121_JP","name":"ITEM_20230424_028450","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_121_JP"}},{"itemId":642598,"className":"Gacha_TP_122_JP","name":"ITEM_20230424_028451","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_122_JP"}},{"itemId":642599,"className":"Gacha_TP_121_11_JP","name":"ITEM_20230424_028452","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_121_JP"}},{"itemId":642600,"className":"Gacha_TP_122_11_JP","name":"ITEM_20230424_028453","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_122_JP"}},{"itemId":642726,"className":"Servant_Black_Box","name":"Butler & Maid Costume Box (Black)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","numArg1":100000}},{"itemId":642727,"className":"Servant_Red_Box","name":"Butler & Maid Costume Box (Red)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","numArg1":100000}},{"itemId":642728,"className":"Servant_Blue_Box","name":"Butler & Maid Costume Box (Blue)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","numArg1":100000}},{"itemId":642735,"className":"Bunny_f_Box","name":"Bunny Costume Box (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","numArg1":100000}},{"itemId":642736,"className":"Bunny_m_Box","name":"Bunny Costume Box (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","numArg1":100000}},{"itemId":642737,"className":"Nurse_f_Box","name":"Nurse Costume Box (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","numArg1":100000}},{"itemId":642738,"className":"Nurse_m_Box","name":"Nurse Costume Box (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","numArg1":100000}},{"itemId":642753,"className":"Select_2018wedding_costume_A","name":"Golden Fairy Wedding Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","numArg1":100000}},{"itemId":642754,"className":"Select_2018wedding_costume_B","name":"Dawn Fairy Wedding Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","numArg1":100000}},{"itemId":642755,"className":"Select_2018wedding_costume_C","name":"Teeny Fairy Wedding Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","numArg1":100000}},{"itemId":642756,"className":"EventFootBall_350Arm_1","name":"Lv 350 Berthas Armor Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":100000}},{"itemId":642757,"className":"EventFootBall_350Arm_2","name":"Lv 350 Primus Armor Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":100000}},{"itemId":642758,"className":"EventFootBall_350Wep_1","name":"Lv 350 Berthas Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":100000}},{"itemId":642759,"className":"EventFootBall_350Wep_2","name":"Lv 350 Primus Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":642760,"className":"EventFootBall_350Wep_1_14d","name":"Lv 350 Berthas Weapon Selection Box (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":100000}},{"itemId":642781,"className":"Selectbox_EventMoonlightWeapon","name":"Moonlight Legend Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":100000}},{"itemId":643011,"className":"Moru_Gold_TA","name":"Shining Golden Anvil","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"gold_Moru","numArg1":3,"numArg2":3}},{"itemId":643012,"className":"Moru_Diamond","name":"Diamond Anvil","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"DIAMOND","numArg1":3,"numArg2":3}},{"itemId":643013,"className":"Moru_Diamond_14d","name":"Diamond Anvil (14 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"DIAMOND","numArg1":3,"numArg2":3}},{"itemId":643016,"className":"Moru_Diamond_DLC","name":"Diamond Anvil","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"DIAMOND","numArg1":3,"numArg2":3}},{"itemId":643018,"className":"Old_Socket_Gold","name":"Ancient Golden Socket","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"OLD_GOLD_SOCKET","numArg1":460,"numArg2":3}},{"itemId":643019,"className":"Premium_Socket_Gold","name":"Shining Golden Socket","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"OLD_GOLD_SOCKET","numArg1":460,"numArg2":3}},{"itemId":643024,"className":"Premium_Extract_kit_Sliver","name":"Shining Silver Ichor Extraction Kit","type":"Etc","group":"Premium","weight":4,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Extract_kit_Sliver"}},{"itemId":643030,"className":"Transcend_Scroll_5_Event_2","name":"[Event] Transcendence Stage 5 Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"transcend_Set","numArg1":5,"numArg2":100}},{"itemId":643032,"className":"Old_Socket_Gold_Team","name":"Ancient Golden Socket","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"OLD_GOLD_SOCKET","numArg1":460,"numArg2":3}},{"itemId":643033,"className":"Transcend_Scroll_8","name":"[Lv. 380] Stage 8 Transcendence Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"transcend_Set_380","numArg1":8,"numArg2":100}},{"itemId":643034,"className":"Moru_Diamond_14d_Team","name":"Diamond Anvil (14 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"DIAMOND","numArg1":3,"numArg2":3}},{"itemId":643040,"className":"Old_Socket_Gold_Event","name":"[Event] Ancient Golden Socket","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"OLD_GOLD_SOCKET","numArg1":460,"numArg2":3}},{"itemId":643061,"className":"Moru_Diamond_14d_Team_Lv400","name":"[Lv.400] Diamond Anvil (14 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"DIAMOND","numArg1":3,"numArg2":3}},{"itemId":643062,"className":"Moru_Diamond_14d_Team_Lv430","name":"[Lv.440] Diamond Anvil (14 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"DIAMOND","numArg1":3,"numArg2":3}},{"itemId":643066,"className":"Transcend_Scroll_10_450","name":"[Lv.450] Stage 10 Transcendence Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"transcend_Set_450","numArg1":10,"numArg2":100}},{"itemId":643067,"className":"Transcend_Scroll_10_450_Trade","name":"[Lv.450] Stage 10 Transcendence Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"transcend_Set_450","numArg1":10,"numArg2":100}},{"itemId":645001,"className":"Mic","name":"Megaphone","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":646075,"className":"misc_gemExpStone11","name":"Shining 9 Star Gem Abrasive","type":"Etc","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":647023,"className":"Abrasive_400","name":"Lv. 400 Awakening Abrasive","type":"Etc","group":"Premium","weight":1,"maxStack":32767,"price":300,"sellPrice":5,"minLevel":1,"script":{"strArg":"AbrasiveStone","numArg1":400}},{"itemId":647038,"className":"misc_gemExpStone12","name":"Shining LV 10 Gem Abrasive","type":"Etc","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":647040,"className":"Abrasive_430","name":"Lv.430 Awakening Abrasive","type":"Etc","group":"Premium","weight":1,"maxStack":32767,"price":300,"sellPrice":5,"minLevel":1,"script":{"strArg":"AbrasiveStone","numArg1":430}},{"itemId":647041,"className":"misc_gemExpStone11_Team","name":"9-Star Gem Abrasive","type":"Etc","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":647048,"className":"misc_gemExpStone12_NoTrade","name":"10-Star Gem Abrasive","type":"Etc","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":649604,"className":"egg_004","name":"Toucan Egg","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"Toucan","numArg1":38}},{"itemId":649606,"className":"egg_006","name":"Penguin Egg","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"penguin","numArg1":38}},{"itemId":649609,"className":"egg_009","name":"Battlebird Egg","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"parrotbill","numArg1":38}},{"itemId":649610,"className":"egg_010","name":"Rocksodon Box","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"Pet_Rocksodon","numArg1":38}},{"itemId":649611,"className":"egg_011","name":"Shining Penguin Egg","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"penguin","numArg1":38}},{"itemId":649612,"className":"egg_012","name":"Leaf Penguin Egg","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"penguin_green","numArg1":38}},{"itemId":649613,"className":"egg_013","name":"Pengmarine Egg","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"penguin_marine","numArg1":38}},{"itemId":649614,"className":"egg_014","name":"[Reward] Guinea Pig Egg","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"Guineapig","numArg1":38}},{"itemId":649616,"className":"egg_016","name":"Christmas Sled Box","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_sled","numArg1":38}},{"itemId":649618,"className":"egg_018","name":"Goro Egg","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_goro_suit","numArg1":38}},{"itemId":649619,"className":"egg_019","name":"Golden Dog Warrior Box","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"Pet_Golddog","numArg1":38}},{"itemId":649620,"className":"egg_020","name":"Winter Penguin Egg","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_winter_penguine","numArg1":38}},{"itemId":649621,"className":"egg_025","name":"Goro Egg","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_goro_suit2","numArg1":38}},{"itemId":649701,"className":"egg_021","name":"Shining Battlebird Egg","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"parrotbill","numArg1":38}},{"itemId":649703,"className":"egg_023","name":"Fairy Cardinal Egg","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_weddingbird","numArg1":38}},{"itemId":649705,"className":"egg_guineapig_white","name":"White Guinea Pig Egg","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"guineapig_white","numArg1":38}},{"itemId":649706,"className":"egg_gold_pig","name":"Lucky Golden Pig Egg","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"Pet_gold_pig","numArg1":38}},{"itemId":649707,"className":"egg_chick_crowtit","name":"Teeny Chick Egg","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_chick_crowtit","numArg1":38}},{"itemId":649708,"className":"egg_dionys","name":"Dionys Cub Egg","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_dionys","numArg1":38}},{"itemId":649709,"className":"egg_sparrow","name":"Fluffy Sparrow Egg","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_sparrow","numArg1":38}},{"itemId":649710,"className":"egg_school_dodo","name":"School Dodo Bird Egg","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_school_dodo","numArg1":38}},{"itemId":649711,"className":"egg_pet_hedgehog","name":"Hedgehog Egg","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_hedgehog","numArg1":38}},{"itemId":649712,"className":"egg_pet_policedog","name":"Police Shepherd Egg","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_policedog","numArg1":38}},{"itemId":649713,"className":"egg_pet_new_penguin","name":"Baby Penguin Egg","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_new_penguin","numArg1":38}},{"itemId":649714,"className":"egg_006_Trade","name":"ITEM_20230424_028504","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"penguin","numArg1":38}},{"itemId":649715,"className":"egg_pet_new_penguin_Trade","name":"ITEM_20230424_028505","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_new_penguin","numArg1":38}},{"itemId":649716,"className":"egg_016_blue","name":"Combat Sled Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"Pet_Sled_blue","numArg1":38}},{"itemId":649717,"className":"egg_010_NoTrade","name":"Rocksodon Box (Untradable)","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"Pet_Rocksodon","numArg1":38}},{"itemId":649718,"className":"egg_016_NoTrade","name":"Christmas Sled Box (Untradable)","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_sled","numArg1":38}},{"itemId":649719,"className":"egg_019_NoTrade","name":"Golden Dog Warrior Box (Untradable)","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"Pet_Golddog","numArg1":38}},{"itemId":649720,"className":"egg_025_NoTrade","name":"Dandy Doggo Egg (Untradable)","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_goro_suit2","numArg1":38}},{"itemId":649721,"className":"egg_016_skyblue","name":"Sky Blue Sled Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"Pet_Sled_skyblue","numArg1":38}},{"itemId":649722,"className":"egg_dionys_NoTrade","name":"ITEM_20230116_028332","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_dionys","numArg1":38}},{"itemId":649723,"className":"egg_sparrow_NoTrade","name":"ITEM_20230116_028334","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_sparrow","numArg1":38}},{"itemId":649724,"className":"egg_pet_hedgehog_NoTrade","name":"ITEM_20230116_028336","type":"Consume","group":"Premium","weight":10,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_hedgehog","numArg1":38}},{"itemId":649725,"className":"egg_016_green","name":"ITEM_20230130_028359","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"Pet_Sled_green","numArg1":38}},{"itemId":649726,"className":"egg_016_skyblue_NoTrade","name":"ITEM_20230109_028323","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":10000,"sellPrice":2000,"minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"Pet_Sled_skyblue","numArg1":38}},{"itemId":664164,"className":"Jumping_expCard_450Lv_notrade","name":"Level Jumping Card (Lv.450)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EXPCARD_JUMPING_SET_LV","numArg1":450}},{"itemId":689002,"className":"Dungeon_Key03","name":"Res Sacrae Raid: Auto/Solo(Hard) Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_MythicDungeon_Auto_Hard_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":817}},{"itemId":721045,"className":"instrument_string","name":"Rosy Floret Erhu","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":100,"sellPrice":20,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PLAY_SELECT_TOY_INSTRUMENT","strArg":"ep13cherryblossom"}},{"itemId":820000,"className":"Adventure_dungeoncount_01","name":"Instanced Dungeon Multiply Token","type":"Etc","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":820001,"className":"Adventure_Point_Stone","name":"1,000 Attribute Points (AJ)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":1000}},{"itemId":820002,"className":"Adventure_Enchantchip","name":"Enchant Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":820003,"className":"Adventure_Point_Stone2","name":"100 Attribute Points (AJ)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":100}},{"itemId":820004,"className":"Adventure_Point_Stone3","name":"500 Attribute Points (AJ)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPoint","numArg1":500}},{"itemId":900001,"className":"Doll_fairy_guilty","name":"Small Giltine Doll","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Doll","minLevel":1,"script":{"strArg":"WING_GUILTY_FAIRY_BUFF"}},{"itemId":900002,"className":"Doll_tiny","name":"Tiny Tini","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Doll","minLevel":1,"script":{"strArg":"DOLL_TINY_BUFF"}},{"itemId":900003,"className":"Doll_gabia","name":"Little Gabija Doll","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Doll","minLevel":1,"script":{"strArg":"DOLL_GABIA_BUFF"}},{"itemId":900004,"className":"Doll_gabia_re","name":"[Exchange Shop] Little Gabija Doll","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Doll","minLevel":1,"script":{"strArg":"DOLL_GABIA_BUFF"}},{"itemId":900005,"className":"Doll_hauberk","name":"Hauberk Doll","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Doll","minLevel":1,"script":{"strArg":"DOLL_GABIA_BUFF"}},{"itemId":900006,"className":"Doll_lucy","name":"Lucy Doll","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Doll","minLevel":1,"script":{"strArg":"DOLL_LUCY_BUFF"}},{"itemId":900007,"className":"Doll_vakarine","name":"Mini Vakarine Doll","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Doll","minLevel":1,"script":{"strArg":"DOLL_VAKARINE_BUFF"}},{"itemId":900008,"className":"Doll_laima","name":"Little Laima Doll","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Doll","minLevel":1,"script":{"strArg":"DOLL_LAIMA_BUFF"}},{"itemId":900009,"className":"Doll_medeina","name":"Little Medeina Doll","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Doll","minLevel":1,"script":{"strArg":"DOLL_MEDEINA_BUFF"}},{"itemId":900013,"className":"Doll_zemina","name":"Little Zemyna Doll","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Doll","minLevel":1,"script":{"strArg":"DOLL_ZEMINA_BUFF"}},{"itemId":900014,"className":"Doll_zanas_jpn","name":"Zanas Doll","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Doll","minLevel":1,"script":{"strArg":"DOLL_ZANAS_BUFF"}},{"itemId":900015,"className":"Doll_santa_guilty","name":"Small Santa Giltine Doll","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Doll","minLevel":1,"script":{"strArg":"DOLL_SANTA_GUILTY_BUFF"}},{"itemId":900016,"className":"Event_Doll_fairy_guilty","name":"[Event] Small Giltine Doll","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Doll","minLevel":1,"script":{"strArg":"WING_GUILTY_FAIRY_BUFF"}},{"itemId":900017,"className":"Doll_succubus","name":"Succubus Doll","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Doll","minLevel":1,"script":{"strArg":"DOLL_SUCCUBUS_BUFF"}},{"itemId":900018,"className":"Doll_paulius","name":"Paulius Doll","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Doll","minLevel":1,"script":{"strArg":"DOLL_PAULIUS_BUFF"}},{"itemId":900019,"className":"Doll_furry_guilty","name":"ITEM_20221219_028319","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Doll","minLevel":1,"script":{"strArg":"DOLL_FURRY_GUILTY_BUFF"}},{"itemId":900020,"className":"Doll_jellyzele","name":"Jellyzele Doll","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Doll","minLevel":1,"script":{"strArg":"DOLL_JELLYZELE_BUFF"}},{"itemId":900021,"className":"Doll_tiny_2","name":"Tiny Tini","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Doll","minLevel":1,"script":{"strArg":"DOLL_TINY_BUFF"}},{"itemId":900145,"className":"Gacha_HairAcc_001_event14d","name":"Goddess' Blessed Cube (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":900146,"className":"Premium_dungeoncount_Event","name":"Instanced Dungeon Multiply Token (14 Days)","type":"Etc","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":900199,"className":"Event_","name":"Void Egg","type":"Etc","group":"Premium","weight":0,"maxStack":200000000,"price":0,"sellPrice":1,"minLevel":1},{"itemId":900303,"className":"Event_1704_Premium_indunReset_1add","name":"[Re:Build] Instanced Dungeon One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900304,"className":"Event_1704_Premium_indunReset","name":"[Re:Build] Instanced Dungeon Reset Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1},{"itemId":900351,"className":"Event_Select_Acc_Box","name":"Superior Bracelet Box (7 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","numArg1":100000}},{"itemId":900380,"className":"Gacha_img_vote_ev","name":"Illustration Contest Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_EV_JP01"}},{"itemId":902031,"className":"Halloween_2017_Paper","name":"2017 Halloween Commemorative Note","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1,"script":{"strArg":"icon_item_halloweenevent_100cash_2","numArg1":500,"numArg2":500}},{"itemId":902050,"className":"EVENT_STEAM_DLC_WEAPON_BOX","name":"New Rank Booster - Weapon Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","numArg1":100000}},{"itemId":902051,"className":"EVENT_STEAM_DLC_ARMOR_BOX","name":"New Rank Booster - Armor Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","numArg1":100000}},{"itemId":902095,"className":"PREMIUM_CHALLENG_PORTAL","name":"Challenge Portal Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1712_SECOND_CHALLENG"}},{"itemId":902160,"className":"Event_STEAM_Secret_Buff_1","name":"Dark Energy","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_AddBuff_Event_STEAM_Secret_Buff_1"}},{"itemId":902166,"className":"Steam_Premium_To_begin_Box_1","name":"To begin:Weapon Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Steam_To_begin","numArg1":1}},{"itemId":902167,"className":"Steam_Premium_PENGUIN_BOX","name":"[Freebie] Penguin Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","numArg1":1}},{"itemId":902170,"className":"GLOBAL_EVENT_MISSION_TRY_CUBE_TALT","name":"Victory Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_Mission_Try_Global"}},{"itemId":902171,"className":"GLOBAL_EVENT_MISSION_TRY_CUBE_SILVER","name":"Victory Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_Mission_Try_Global"}},{"itemId":902172,"className":"GLOBAL_EVENT_MISSION_TRY_CUBE_TP","name":"Victory Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_Mission_Try_Global"}},{"itemId":902173,"className":"GLOBAL_EVENT_MISSION_TRY_CUBE_MEDAL","name":"Victory Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_Mission_Try_Global"}},{"itemId":902176,"className":"GLOBAL_EVENT_MISSION_TRY_CUBE_TP_11","name":"Victory Cube x10+1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_Mission_Try_Global"}},{"itemId":902177,"className":"GLOBAL_EVENT_MISSION_TRY_CUBE_MEDAL_11","name":"Victory Cube x10+1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_Mission_Try_Global"}},{"itemId":904018,"className":"EVENT_1804_ROOT_BONUS_CUBE","name":"Secret Tree Root Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":100000}},{"itemId":904020,"className":"EVENT_1804_TRANSCEND_REINFORCE_CUBE","name":"Enhancement Chance Package","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1804_TRANSCEND_REINFORCE_CUBE","numArg1":100000}},{"itemId":904022,"className":"Moru_Diamond_Team_Trade","name":"Diamond Anvil","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"DIAMOND","numArg1":3,"numArg2":3}},{"itemId":904073,"className":"NEWCHARACTER_EQUIP_LV15","name":"Lv 15 Weapon/Armor Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904074,"className":"NEWCHARACTER_EQUIP_LV40","name":"Lv 40 Weapon/Armor Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904075,"className":"NEWCHARACTER_EQUIP_LV75","name":"Lv 75 Weapon/Armor Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904076,"className":"NEWCHARACTER_EQUIP_LV120","name":"Lv 120 Weapon/Armor Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904077,"className":"NEWCHARACTER_EQUIP_LV170","name":"Lv 170 Weapon/Armor Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904078,"className":"NEWCHARACTER_EQUIP_LV220","name":"Lv 220 Weapon/Armor Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904079,"className":"NEWCHARACTER_EQUIP_LV270","name":"Lv 270 Weapon/Armor Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904080,"className":"NEWCHARACTER_EQUIP_LV315","name":"Lv 315 Weapon/Armor Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904081,"className":"NEWCHARACTER_EQUIP_LV350","name":"Lv 350 Weapon/Armor Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904082,"className":"NEWCHARACTER_EQUIP_LV350_UNIQUE","name":"[Re:Build] Masinios Weapon Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904090,"className":"EVENT_1809_UCC_COSTUME_BOX","name":"TOS Celebration Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904091,"className":"EVENT_1809_UCC_ARTEFACT","name":"TOS Celebration Toy Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904106,"className":"EVENT_1810_HALLOWEEN_COSTUME_BOX","name":"Jack-O-Lantern Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904112,"className":"EVENT_1812_GILTINE_EQUIPITEM_BOX_1","name":"Asio Weapon Recipe Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904113,"className":"EVENT_1812_GILTINE_EQUIPITEM_BOX_2","name":"Wastrel Weapon Recipe Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904116,"className":"KEDORA_40LV_WEAPON_BOX","name":"Kedora Merchant Alliance Support Selection Box (Lv. 40 weapon and shield)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904117,"className":"KEDORA_40LV_ARMOR_BOX","name":"Kedora Merchant Alliance Support Selection Box (Lv. 40 armor)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904118,"className":"KEDORA_75LV_WEAPON_BOX","name":"Kedora Merchant Alliance Support Selection Box (Lv. 75 weapon and shield)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904119,"className":"KEDORA_75LV_ARMOR_BOX","name":"Kedora Merchant Alliance Support Selection Box (Lv. 75 armor)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904120,"className":"KEDORA_120LV_WEAPON_BOX","name":"Kedora Merchant Alliance Support Selection Box (Lv. 120 weapon and shield)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904121,"className":"KEDORA_120LV_ARMOR_BOX","name":"Kedora Merchant Alliance Support Selection Box (Lv. 120 armor)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904122,"className":"KEDORA_170LV_WEAPON_BOX","name":"Kedora Merchant Alliance Support Selection Box (Lv. 170 weapon and shield)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904123,"className":"KEDORA_170LV_ARMOR_BOX","name":"Kedora Merchant Alliance Support Selection Box (Lv. 170 armor)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904124,"className":"KEDORA_220LV_WEAPON_BOX","name":"Kedora Merchant Alliance Support Selection Box (Lv. 220 weapon and shield)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904125,"className":"KEDORA_220LV_ARMOR_BOX","name":"Kedora Merchant Alliance Support Selection Box (Lv. 220 armor)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904130,"className":"EVENT_1812_XMAS_WEAPON_BOX","name":"[Re:Build] Lv 380 Unique Weapon Recipe Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904131,"className":"EVENT_1812_XMAS_PENGUIN_BOX","name":"[Re:Build] Penguin Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904132,"className":"EVENT_RankReset_Point_Lv3","name":"[Event] Class Change Voucher Lv. 3","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"EVENT_RankReset_Point_Lv3","numArg1":1000}},{"itemId":904139,"className":"EVENT_PENGUIN_BOX","name":"[Event] Penguin Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904142,"className":"KEDORA_315LV_WEAPON_BOX","name":"Kedora Alliance Support Selection Box (Lv. 315 Weapon and Shield)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904143,"className":"KEDORA_350LV_WEAPON_BOX","name":"Kedora Alliance Support Selection Box (Lv. 350 Weapon and Shield)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904144,"className":"KEDORA_380LV_WEAPON_BOX","name":"Kedora Alliance Support Selection Box (Lv. 380 Weapon and Shield)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904145,"className":"KEDORA_380LV_ARMOR_BOX","name":"Kedora Alliance Support Selection Box (Lv. 380 Armor)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904147,"className":"EVENT_1903_TERIAVELIS_MORU_BOX","name":"[Event] Teliavelis' Anvil Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1903_TERIAVELIS_MORU_BOX"}},{"itemId":904152,"className":"Gacha_HairAcc_001_event1d","name":"Goddess' Blessed Cube (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904156,"className":"KEDORA_270LV_WEAPON_BOX","name":"Kedora Merchant Alliance Support Selection Box (Lv. 270 weapon and shield)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904157,"className":"KEDORA_270LV_ARMOR_BOX","name":"Kedora Merchant Alliance Support Selection Box (Lv. 270 armor)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904158,"className":"KEDORA_315LV_ARMOR_BOX","name":"Kedora Merchant Alliance Support Selection Box (Lv. 315 armor)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904159,"className":"KEDORA_350LV_ARMOR_BOX","name":"Kedora Merchant Alliance Support Selection Box (Lv. 350 armor)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904160,"className":"EVENT_1905_EQUIPITEM_BOX","name":"Asio, Wastrel Weapon Recipe Selection Box (14 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904161,"className":"EVENT_1905_EQUIPITEM_BOX1","name":"[Event] Asio Weapon Recipe Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","numArg1":1}},{"itemId":904162,"className":"EVENT_1905_EQUIPITEM_BOX2","name":"[Event] Wastrel Weapon Recipe Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE","numArg1":1}},{"itemId":904164,"className":"EVENT_1906_EQUIPITEM_BOX_MASINIOS","name":"[Event] Masinios Weapon Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904165,"className":"EVENT_1906_EQUIPITEM_BOX_ASIO","name":"[Event] Asio Weapon Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904190,"className":"event1909_RankReset_Point_Lv3_90","name":"[Event] Class Change Voucher Lv. 3 (90 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"event1909_RankReset_Point_Lv3_90","numArg1":1000}},{"itemId":904200,"className":"Event_JobexpCard_BOX","name":"Class EXP Card Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Event_JobexpCard_BOX"}},{"itemId":904202,"className":"PREMIUM_CHALLENG_PORTAL_TEAM","name":"Challenge Portal Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"minLevel":1,"script":{"function":"SCR_USE_EVENT_1712_SECOND_CHALLENG"}},{"itemId":904208,"className":"Event_RankReset_Point_Lv3_14d","name":"[Event] Class Change Voucher Lv. 3 (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"Event_RankReset_Point_Lv3_14d","numArg1":1000}},{"itemId":904209,"className":"Event_Skill_Ability_Reset_Package_14d","name":"[Event] Skill + Attribute Reset Potion Package (14 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Event_Skill_Ability_Reset_Package_14d"}},{"itemId":904211,"className":"Event_Transcend_Scroll_3_420Lv","name":"[Lv. 420] Stage 3 Transcendence Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"transcend_Set_420","numArg1":3,"numArg2":100}},{"itemId":904212,"className":"Event_Transcend_Scroll_5_420Lv","name":"[Lv. 420] Stage 5 Transcendence Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"transcend_Set_420","numArg1":5,"numArg2":100}},{"itemId":904213,"className":"Event_Transcend_Scroll_8_420Lv","name":"[Lv. 420] Stage 8 Transcendence Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"transcend_Set_420","numArg1":8,"numArg2":100}},{"itemId":904214,"className":"Event_Transcend_Scroll_10_420Lv","name":"[Lv. 420] Stage 10 Transcendence Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"transcend_Set_420","numArg1":10,"numArg2":100}},{"itemId":904224,"className":"Event_Stamp_Tour_AllClear_Box","name":"[Event] Stamp Tour Completion Reward Box (14 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_Event_Stamp_Tour_AllClear_Box"}},{"itemId":904236,"className":"KEDORA_400LV_WEAPON_BOX","name":"Kedora Merchant Alliance Support Selection Box (Lv. 400 weapon and shield)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904237,"className":"KEDORA_400LV_ARMOR_BOX","name":"Kedora Merchant Alliance Support Selection Box (Lv. 400 armor)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_FIRST_USE_GHACHA_CUBE"}},{"itemId":904310,"className":"legend_ExpPotion_Care","name":"[Reward] Pamoka Solution Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Legend_ExpPotion_2_complete/1/ItemExpString/1250000000;"}},{"itemId":904319,"className":"Global_Gacha_HairAcc_Bonus_14d","name":"Bonus Cube (S+A) (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":904327,"className":"TWN_Gacha_HairAcc_Bonus_14d","name":"Bonus Cube (S+A) (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":1000001,"className":"Gacha_HairAcc_022","name":"Goddess' Blessed Cube x20 +2 Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_GACHA_HAIRACC_022_BOX"}},{"itemId":1000002,"className":"Gacha_TP_123_JP","name":"ITEM_20230424_028454","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_123_JP"}},{"itemId":1000003,"className":"Gacha_TP_124_JP","name":"ITEM_20230424_028455","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_124_JP"}},{"itemId":1000004,"className":"Gacha_TP_123_11_JP","name":"ITEM_20230424_028456","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_123_JP"}},{"itemId":1000005,"className":"Gacha_TP_124_11_JP","name":"ITEM_20230424_028457","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_124_JP"}},{"itemId":1000006,"className":"Gacha_TP_125_JP","name":"ITEM_20230424_028458","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_125_JP"}},{"itemId":1000007,"className":"Gacha_TP_126_JP","name":"ITEM_20230424_028459","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_126_JP"}},{"itemId":1000008,"className":"Gacha_TP_125_11_JP","name":"ITEM_20230424_028460","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_125_JP"}},{"itemId":1000009,"className":"Gacha_TP_126_11_JP","name":"ITEM_20230424_028461","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_126_JP"}},{"itemId":1000010,"className":"TOS_Revolution_gem_box","name":"Monster Gem Selection Box: Swordsman","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":1000011,"className":"TOS_Revolution_gem_box1","name":"Monster Gem Selection Box: Archer","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":1000012,"className":"TOS_Revolution_gem_box2","name":"Monster Gem Selection Box: Wizard","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":1000013,"className":"TOS_Revolution_gem_box3","name":"Monster Gem Selection Box: Cleric","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":1000014,"className":"TOS_Revolution_gem_box4","name":"Monster Gem Selection Box: Scout","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":1000015,"className":"TOS_Revolution_gem_box5","name":"Monster Gem Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":1000016,"className":"Gacha_TP_127_JP","name":"ITEM_20230424_028462","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_127_JP"}},{"itemId":1000017,"className":"Gacha_TP_128_JP","name":"ITEM_20230424_028463","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_128_JP"}},{"itemId":1000018,"className":"Gacha_TP_127_11_JP","name":"ITEM_20230424_028464","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_127_JP"}},{"itemId":1000019,"className":"Gacha_TP_128_11_JP","name":"ITEM_20230424_028465","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_128_JP"}},{"itemId":1000020,"className":"Gacha_TP_129_JP","name":"ITEM_20230424_028466","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_129_JP"}},{"itemId":1000021,"className":"Gacha_TP_130_JP","name":"ITEM_20230424_028467","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_130_JP"}},{"itemId":1000022,"className":"Gacha_TP_129_11_JP","name":"ITEM_20230424_028468","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_129_JP"}},{"itemId":1000023,"className":"Gacha_TP_130_11_JP","name":"ITEM_20230424_028469","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_130_JP"}},{"itemId":1000024,"className":"Gacha_TP_131_JP","name":"ITEM_20230424_028470","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_131_JP"}},{"itemId":1000025,"className":"Gacha_TP_132_JP","name":"ITEM_20230424_028471","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_132_JP"}},{"itemId":1000026,"className":"Gacha_TP_131_11_JP","name":"ITEM_20230424_028472","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_131_JP"}},{"itemId":1000027,"className":"Gacha_TP_132_11_JP","name":"ITEM_20230424_028473","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_132_JP"}},{"itemId":1000030,"className":"Gacha_TP_133_JP","name":"ITEM_20230424_028474","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_133_JP"}},{"itemId":1000031,"className":"Gacha_TP_133_11_JP","name":"ITEM_20230424_028475","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_133_JP"}},{"itemId":1000032,"className":"Gacha_TP_134_JP","name":"ITEM_20230424_028476","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_134_JP"}},{"itemId":1000033,"className":"Gacha_TP_135_JP","name":"ITEM_20230424_028477","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_135_JP"}},{"itemId":1000034,"className":"Gacha_TP_134_11_JP","name":"ITEM_20230424_028478","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_134_JP"}},{"itemId":1000035,"className":"Gacha_TP_135_11_JP","name":"ITEM_20230424_028479","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_135_JP"}},{"itemId":1000042,"className":"STEAM_Gacha_TP_Box_1","name":"Snow Globe Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"STEAM_Gacha_TP_Box_1"}},{"itemId":1000043,"className":"STEAM_Gacha_TP_Box_11","name":"Snow Globe Cube x10+1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"STEAM_Gacha_TP_Box_1"}},{"itemId":1000044,"className":"STEAM_Pack_TP_Box_2","name":"GM's Astro Ambition","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_STEAM_Pack_TP_Box_2"}},{"itemId":1000045,"className":"Gacha_TP_136_JP","name":"ITEM_20230424_028480","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_136_JP"}},{"itemId":1000046,"className":"Gacha_TP_136_11_JP","name":"ITEM_20230424_028481","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_136_JP"}},{"itemId":1000047,"className":"Gacha_TP_137_JP","name":"ITEM_20230424_028482","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_137_JP"}},{"itemId":1000048,"className":"Gacha_TP_138_JP","name":"ITEM_20230424_028483","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_138_JP"}},{"itemId":1000049,"className":"Gacha_TP_137_11_JP","name":"ITEM_20230424_028484","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_137_JP"}},{"itemId":1000050,"className":"Gacha_TP_138_11_JP","name":"ITEM_20230424_028485","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_138_JP"}},{"itemId":1000051,"className":"Gacha_TP_139_JP","name":"ITEM_20230424_028486","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_139_JP"}},{"itemId":1000052,"className":"Gacha_TP_140_JP","name":"ITEM_20230424_028487","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_140_JP"}},{"itemId":1000053,"className":"Gacha_TP_139_11_JP","name":"ITEM_20230424_028488","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_139_JP"}},{"itemId":1000054,"className":"Gacha_TP_140_11_JP","name":"ITEM_20230424_028489","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_140_JP"}},{"itemId":1000055,"className":"Gacha_TP_141_JP","name":"ITEM_20230424_028490","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_141_JP"}},{"itemId":1000056,"className":"Gacha_TP_142_JP","name":"ITEM_20230424_028491","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_142_JP"}},{"itemId":1000057,"className":"Gacha_TP_141_11_JP","name":"ITEM_20230424_028492","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_141_JP"}},{"itemId":1000058,"className":"Gacha_TP_142_11_JP","name":"ITEM_20230424_028493","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_142_JP"}},{"itemId":1000061,"className":"Gacha_TP_143_JP","name":"ITEM_20230424_028494","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_143_JP"}},{"itemId":1000062,"className":"Gacha_TP_144_JP","name":"ITEM_20230424_028495","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_144_JP"}},{"itemId":1000063,"className":"Gacha_TP_143_11_JP","name":"ITEM_20230424_028496","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_143_JP"}},{"itemId":1000064,"className":"Gacha_TP_144_11_JP","name":"ITEM_20230424_028497","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP_144_JP"}},{"itemId":1000065,"className":"Gacha_m_Camping_001_JP","name":"ITEM_20230424_028498","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_m_Camping_001_JP","numArg1":1}},{"itemId":1000066,"className":"Gacha_m_Camping_010_JP","name":"ITEM_20230424_028499","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_m_Camping_001_JP","numArg1":10}},{"itemId":1000067,"className":"Gacha_f_Camping_001_JP","name":"ITEM_20230424_028500","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_f_Camping_001_JP","numArg1":1}},{"itemId":1000068,"className":"Gacha_f_Camping_010_JP","name":"ITEM_20230424_028501","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_f_Camping_001_JP","numArg1":10}},{"itemId":1000069,"className":"Gacha_HairAcc_ReSale001_M","name":"Remake: Goddess' Blessed Cube (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_001_M","numArg1":1}},{"itemId":1000070,"className":"Gacha_HairAcc_ReSale010_M","name":"Remake: Goddess' Blessed Cube (Male) x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_001_M","numArg1":10}},{"itemId":1000071,"className":"Gacha_HairAcc_ReSale001_F","name":"Remake: Goddess' Blessed Cube (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_001_F","numArg1":1}},{"itemId":1000072,"className":"Gacha_HairAcc_ReSale010_F","name":"Remake: Goddess' Blessed Cube (Female) x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_001_F","numArg1":10}},{"itemId":1000075,"className":"GLOBAL_STEAM_GABIA","name":"Gabija Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GLOBAL_STEAM_GABIA","numArg1":1}},{"itemId":1000076,"className":"GLOBAL_STEAM_GABIA_11","name":"Gabija Cube x10+1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GLOBAL_STEAM_GABIA","numArg1":10}},{"itemId":1000077,"className":"Gacha_2020_Newyear_11_TWN","name":"2020 New Year's Cube x10 +1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_2020_Newyear_TWN","numArg1":10}},{"itemId":1000078,"className":"Gacha_2020_Orgel_Steam","name":"2020 Music Box Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_2020_Orgel_Steam","numArg1":1}},{"itemId":1000079,"className":"Gacha_2020_Orgel_11_Steam","name":"2020 Music Box Cube x10 +1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_2020_Orgel_Steam","numArg1":10}},{"itemId":1000080,"className":"Gacha_HairAcc_Resale1_M_JP","name":"리턴1차 : 축복받은 여신의 큐브(남)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_HairAcc_Resale1_M_JP","numArg1":1}},{"itemId":1000081,"className":"Gacha_HairAcc_Resale1_11_M_JP","name":"리턴1차 : 축복받은 여신의 큐브(남) x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_HairAcc_Resale1_M_JP","numArg1":10}},{"itemId":1000082,"className":"Gacha_HairAcc_Resale1_F_JP","name":"리턴1차 : 축복받은 여신의 큐브(여)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_HairAcc_Resale1_F_JP","numArg1":1}},{"itemId":1000083,"className":"Gacha_HairAcc_Resale1_11_F_JP","name":"리턴1차 : 축복받은 여신의 큐브(여) x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_HairAcc_Resale1_F_JP","numArg1":10}},{"itemId":1000084,"className":"GLOBAL_Gacha_HairAcc_Resale1_M","name":"Fashion Museum 2020: Goddess' Blessed Cube (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GLOBAL_Gacha_HairAcc_Resale1_M","numArg1":1}},{"itemId":1000085,"className":"GLOBAL_Gacha_HairAcc_Resale1_11_M","name":"Fashion Museum 2020: Goddess' Blessed Cube (Male) x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GLOBAL_Gacha_HairAcc_Resale1_M","numArg1":10}},{"itemId":1000086,"className":"GLOBAL_Gacha_HairAcc_Resale1_F","name":"Fashion Museum 2020: Goddess' Blessed Cube (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GLOBAL_Gacha_HairAcc_Resale1_F","numArg1":1}},{"itemId":1000087,"className":"GLOBAL_Gacha_HairAcc_Resale1_11_F","name":"Fashion Museum 2020: Goddess' Blessed Cube (Female) x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GLOBAL_Gacha_HairAcc_Resale1_F","numArg1":10}},{"itemId":1000088,"className":"Gacha_HairAcc_Resale2_M_JP","name":"-","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_HairAcc_Resale2_M_JP","numArg1":1}},{"itemId":1000089,"className":"Gacha_HairAcc_Resale2_F_JP","name":"-","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_HairAcc_Resale2_F_JP","numArg1":1}},{"itemId":1000090,"className":"Gacha_HairAcc_4year_TWN","name":"4th Anniversary Cube x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_HairAcc_4year_TWN","numArg1":10}},{"itemId":1000091,"className":"Gacha_TP2_Season_001","name":"[Season] Leticia's Secret Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP2_Season_001"}},{"itemId":1000092,"className":"Gacha_TP2_Season_010","name":"[Season] Leticia's Secret Cube x 10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_TP2_Season_001"}},{"itemId":1000093,"className":"Gacha_HairAcc_Animal_TWN","name":"Fashion Museum 2020: Animal Costume x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_HairAcc_Animal_TWN","numArg1":10}},{"itemId":1000095,"className":"Gacha_HairAcc_ReSale001_M_2","name":"RemakeII: Goddess' Blessed Cube (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_002_M","numArg1":1}},{"itemId":1000096,"className":"Gacha_HairAcc_ReSale010_M_2","name":"RemakeII: Goddess' Blessed Cube (Male) x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_002_M","numArg1":10}},{"itemId":1000097,"className":"Gacha_HairAcc_ReSale001_F_2","name":"RemakeII: Goddess' Blessed Cube (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_002_F","numArg1":1}},{"itemId":1000098,"className":"Gacha_HairAcc_ReSale010_F_2","name":"RemakeII: Goddess' Blessed Cube (Female) x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_002_F","numArg1":10}},{"itemId":1000099,"className":"Gacha_HairAcc_ReSale001_M_3","name":"ALL-STAR: Goddess' Blessed Cube (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_003_M","numArg1":1}},{"itemId":1000100,"className":"Gacha_HairAcc_ReSale010_M_3","name":"ALL-STAR: Goddess' Blessed Cube (Male) 10+1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_003_M","numArg1":10}},{"itemId":1000101,"className":"Gacha_HairAcc_ReSale001_F_3","name":"ALL-STAR: Goddess' Blessed Cube (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_003_F","numArg1":1}},{"itemId":1000102,"className":"Gacha_HairAcc_ReSale010_F_3","name":"ALL-STAR: Goddess' Blessed Cube (Female) 10+1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_003_F","numArg1":10}},{"itemId":1000103,"className":"Gacha_HairAcc_ReSale001_M_JP","name":"2021 Fashion Museum: All Stars (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_001_F_JP","numArg1":1}},{"itemId":1000104,"className":"Gacha_HairAcc_ReSale010_M_JP","name":"2021 Fashion Museum: All Stars (Male) x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_001_F_JP","numArg1":10}},{"itemId":1000105,"className":"Gacha_HairAcc_ReSale001_F_JP","name":"2021 Fashion Museum: All Stars (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_001_M_JP","numArg1":1}},{"itemId":1000106,"className":"Gacha_HairAcc_ReSale010_F_JP","name":"2021 Fashion Museum: All Stars (Female) x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_001_M_JP","numArg1":10}},{"itemId":1000107,"className":"Fifth_Anniversary_Cube_010","name":"5 Anniversary Cube 10+1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_Fifth_Anniversary_TWN","numArg1":10}},{"itemId":1000108,"className":"Gacha_HairAcc_ReSale001_M_STM","name":"2021 Fashion Museum: All Stars (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_001_F_STM","numArg1":1}},{"itemId":1000109,"className":"Gacha_HairAcc_ReSale010_M_STM","name":"2021 Fashion Museum: All Stars (Male) x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_001_F_STM","numArg1":10}},{"itemId":1000110,"className":"Gacha_HairAcc_ReSale001_F_STM","name":"2021 Fashion Museum: All Stars (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_001_M_STM","numArg1":1}},{"itemId":1000111,"className":"Gacha_HairAcc_ReSale010_F_STM","name":"2021 Fashion Museum: All Stars (Female) x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_001_M_STM","numArg1":10}},{"itemId":1000112,"className":"Gacha_HairAcc_ReSale001_1","name":"Fashion Museum: End of Year ","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_1","numArg1":1}},{"itemId":1000113,"className":"Gacha_HairAcc_ReSale010_1","name":"Fashion Museum: End of Year x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_1","numArg1":10}},{"itemId":1000114,"className":"Gacha_HairAcc_HotTime001_1","name":"Tempting Demon God's Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_HairAcc_HotTime","numArg1":1}},{"itemId":1000115,"className":"Gacha_HairAcc_HotTime010_1","name":"Tempting Demon God's Cube x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_HairAcc_HotTime","numArg1":10}},{"itemId":1000116,"className":"Gacha_HairAcc_End_Year_ReSale_001_M_STM","name":"Fashion Museum: End of Year (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_End_Year_ReSale_001_M_STM","numArg1":1}},{"itemId":1000117,"className":"Gacha_HairAcc_End_Year_ReSale_010_M_STM","name":"Fashion Museum: End of Year (Male) x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_End_Year_ReSale_001_M_STM","numArg1":10}},{"itemId":1000118,"className":"Gacha_HairAcc_End_Year_ReSale_001_F_STM","name":"Fashion Museum: End of Year (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_End_Year_ReSale_001_F_STM","numArg1":1}},{"itemId":1000119,"className":"Gacha_HairAcc_End_Year_ReSale_010_F_STM","name":"Fashion Museum: End of Year (Female) x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_End_Year_ReSale_001_F_STM","numArg1":10}},{"itemId":1000120,"className":"Gacha_HairAcc_End_Year_ReSale_010_TWN","name":"Fashion Museum: End of Year x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_End_Year_ReSale_001_TWN","numArg1":10}},{"itemId":1000121,"className":"Gacha_Blessed_CUBE_001","name":"Goddess' Blessing","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_Blessed_CUBE_001"}},{"itemId":1000122,"className":"Gacha_Blessed_CUBE_010","name":"Goddess' Glory x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_Blessed_CUBE_001"}},{"itemId":1000123,"className":"GACHA_HAIRACC_Animal_001_M_STM","name":"Fashion Museum: Panda-nald had a Farm (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_Animal_001_M_STM","numArg1":1}},{"itemId":1000124,"className":"GACHA_HAIRACC_Animal_010_M_STM","name":"Fashion Museum: Panda-nald had a Farm (Male) x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_Animal_001_M_STM","numArg1":10}},{"itemId":1000125,"className":"GACHA_HAIRACC_Animal_001_F_STM","name":"Fashion Museum: Panda-nald had a Farm (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_Animal_001_F_STM","numArg1":1}},{"itemId":1000126,"className":"GACHA_HAIRACC_Animal_010_F_STM","name":"Fashion Museum: Panda-nald had a Farm (Female) x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_Animal_001_F_STM","numArg1":10}},{"itemId":1000127,"className":"GACHA_SEASON_RESALE_M_001","name":"Fashion Museum: Wing of the Goddess (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_SEASON_RESALE_M_001","numArg1":1}},{"itemId":1000128,"className":"GACHA_SEASON_RESALE_M_010","name":"Fashion Museum: Wing of the Goddess (Male) x10 + 1 ","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_SEASON_RESALE_M_001","numArg1":10}},{"itemId":1000129,"className":"GACHA_SEASON_RESALE_F_001","name":"Fashion Museum: Wing of the Goddess (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_SEASON_RESALE_F_001","numArg1":1}},{"itemId":1000130,"className":"GACHA_SEASON_RESALE_F_010","name":"Fashion Museum: Wing of the Goddess (Female) x10 + 1 ","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_SEASON_RESALE_F_001","numArg1":10}},{"itemId":1000131,"className":"Gacha_6TH_010_TWN","name":"Taiwan 6th Anniversary Cube x10 +1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_6TH_001_TWN","numArg1":10}},{"itemId":1000132,"className":"Gacha_Blessed_CUBE_Event_2209","name":"Goddess' Blessing","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"EXECUTE_BLESSED_GACHA_EVENT_ITEM","strArg":"Gacha_Blessed_CUBE_001"}},{"itemId":1000133,"className":"Gacha_HairAcc_HotTime001_GLOBAL","name":"Tempting Demon God's Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_HairAcc_HotTime","numArg1":1}},{"itemId":1000134,"className":"Gacha_HairAcc_HotTime010_GLOBAL","name":"Tempting Demon God's Cube x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_HairAcc_HotTime","numArg1":10}},{"itemId":1000135,"className":"GACHA_TWN_RESALE_001","name":"Fashion Museum: Wing of the Goddess x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_TWN_RESALE_001","numArg1":1}},{"itemId":1000136,"className":"GACHA_TWN_RESALE_ONE","name":"Fashion Museum: Wing of the Goddess","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_TWN_RESALE_001","numArg1":1}},{"itemId":1000137,"className":"GACHA_TWN_ANIMAL_010","name":"Panda-nald had a Farm (TW) x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_TWN_ANIMAL_001","numArg1":1}},{"itemId":1000138,"className":"Gacha_HairAcc_Christmas001_GLOBAL","name":"Fashion Museum: Papa Noel's Closet","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_HairAcc_Christmas","numArg1":1}},{"itemId":1000139,"className":"Gacha_HairAcc_Christmas010_GLOBAL","name":"Fashion Museum: Papa Noel's Closet x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_HairAcc_Christmas","numArg1":10}},{"itemId":1000140,"className":"box_GACHA_HAIRACC_ReSale_001_4_NoTrade","name":"ITEM_20230116_028324","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"numArg1":1}},{"itemId":1000141,"className":"GACHA_HAIRACC_ReSale_4_001_M","name":"ITEM_20230116_028326","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_4_001_M","numArg1":1}},{"itemId":1000142,"className":"GACHA_HAIRACC_ReSale_4_010_M","name":"ITEM_20230116_028327","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_4_001_M","numArg1":10}},{"itemId":1000143,"className":"GACHA_HAIRACC_ReSale_4_001_F","name":"ITEM_20230116_028328","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_4_001_F","numArg1":1}},{"itemId":1000144,"className":"GACHA_HAIRACC_ReSale_4_010_F","name":"ITEM_20230116_028329","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_4_001_F","numArg1":10}},{"itemId":1000145,"className":"GACHA_HAIRACC_ReSale_4_001_M_NoTrade","name":"ITEM_20230116_028330","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_4_001_M_NoTrade","numArg1":1}},{"itemId":1000146,"className":"GACHA_HAIRACC_ReSale_4_001_F_NoTrade","name":"ITEM_20230116_028331","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_4_001_F_NoTrade","numArg1":1}},{"itemId":1000147,"className":"GACHA_HAIRACC_ReSale_4_001_TWN","name":"ITEM_20230130_028349","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_4_001_TWN","numArg1":1}},{"itemId":1000148,"className":"GACHA_HAIRACC_ReSale_4_010_TWN","name":"ITEM_20230130_028350","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_4_010_TWN","numArg1":10}},{"itemId":1000149,"className":"Gacha_7TH_010_TWN","name":"ITEM_20230703_028614","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"Gacha_7TH_001_TWN","numArg1":10}},{"itemId":1249900,"className":"PersonalHousing_Item_voucher_1","name":"Personal Housing Voucher : 100,000 Silver","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"PersonalHousingShopCoupon","numArg1":100000}},{"itemId":1249901,"className":"PersonalHousing_Item_voucher_2","name":"Personal Housing Voucher : 10,000 Silver","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"PersonalHousingShopCoupon","numArg1":10000}},{"itemId":1249902,"className":"PersonalHousing_Item_voucher_3","name":"Personal Housing Voucher : 1,000,000 Silver","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"PersonalHousingShopCoupon","numArg1":1000000}},{"itemId":1249903,"className":"PersonalHousing_Item_voucher_4","name":"Personal Housing Voucher : 500,000 Silver","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"PersonalHousingShopCoupon","numArg1":500000}},{"itemId":1250000,"className":"Chat_Balloon_RollingDoor_Pink_90d","name":"Rolling Door Speech Bubble (Pink) 90 Days","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_BALLOON","strArg":"Balloon_0002","numArg1":7776000}},{"itemId":1250001,"className":"Chat_Balloon_RollingDoor_BlueSky_90d","name":"Rolling Door Speech Bubble (Sky Blue) 90 Days","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_BALLOON","strArg":"Balloon_0003","numArg1":7776000}},{"itemId":1250002,"className":"Gesture_Wave","name":"Gesture: Wave","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GESTURE","strArg":"WAVE"}},{"itemId":1250006,"className":"Gesture_Cheerup","name":"Gesture : Cheer Up","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GESTURE","strArg":"CHEERUP"}},{"itemId":1250007,"className":"Gesture_Unbelievable","name":"Gesture : Pose Beyond Imagination","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GESTURE","strArg":"UNBELIEVABLE"}},{"itemId":1250008,"className":"Chat_Balloon_tiny_badge_90d","name":"Tini Badge Speech Bubble 90 Days","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_BALLOON","strArg":"Balloon_0004","numArg1":7776000}},{"itemId":1250009,"className":"Chat_Balloon_poporion_badge_90d","name":"Popolion Badge Speech Bubble 90 Days","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_BALLOON","strArg":"Balloon_0005","numArg1":7776000}},{"itemId":1250010,"className":"Chat_Balloon_kepa_badge_90d","name":"Kepa Badge Speech Bubble 90 Days","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_BALLOON","strArg":"Balloon_0006","numArg1":7776000}},{"itemId":1250014,"className":"Gesture_Dabdance","name":"Gesture : Dab Dance","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GESTURE","strArg":"DABDANCE"}},{"itemId":1250015,"className":"Gesture_Flex","name":"Gesture: Want Some?","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GESTURE","strArg":"FLEX"}},{"itemId":1250016,"className":"Gesture_Homerun","name":"Gesture: Home Run","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GESTURE","strArg":"HOMERUN"}},{"itemId":1250017,"className":"Gesture_Nyang","name":"Gesture: Meow","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GESTURE","strArg":"NYANG"}},{"itemId":1250018,"className":"Gesture_Wipe","name":"Gesture: Swingy","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GESTURE","strArg":"WIPE"}},{"itemId":1250019,"className":"Gesture_PULLUP","name":"Gesture : Chin Up","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GESTURE","strArg":"PULLUP"}},{"itemId":1250020,"className":"Gesture_BASEBALL","name":"Gesture: Baseball","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GESTURE","strArg":"BASEBALL"}},{"itemId":1250021,"className":"Gesture_SQUAT","name":"Gesture : Squats","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GESTURE","strArg":"SQUAT"}},{"itemId":1250025,"className":"Gesture_SPOTLIGHT","name":"Gesture : Gangster","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GESTURE","strArg":"SPOTLIGHT"}},{"itemId":1250029,"className":"Gesture_WIGGLE","name":"Gesture : Wiggle","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GESTURE","strArg":"WIGGLE"}},{"itemId":1250033,"className":"Gesture_SHOOTDANCE","name":"Gesture: Hammer Dance","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GESTURE","strArg":"SHOOTDANCE"}},{"itemId":1250034,"className":"Gesture_CHEER","name":"Gesture: Cheer","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GESTURE","strArg":"CHEER"}},{"itemId":1250038,"className":"Chat_Balloon_kepa_badge_30d","name":"Kepa Badge Speech Bubble 30 Days","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_BALLOON","strArg":"Balloon_0006","numArg1":2592000}},{"itemId":1250039,"className":"Chat_Balloon_tiny_badge_30d","name":"Tini Badge Speech Bubble 30 Days","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_BALLOON","strArg":"Balloon_0004","numArg1":2592000}},{"itemId":1250040,"className":"Chat_Balloon_poporion_badge_30d","name":"Popolion Badge Speech Bubble 30 Days","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_BALLOON","strArg":"Balloon_0005","numArg1":2592000}},{"itemId":1250041,"className":"balloon_skin_icecream_01_30d","name":"Cherry Ice Cream Speech Bubble (30 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_BALLOON","strArg":"Balloon_0009","numArg1":2592000}},{"itemId":1250042,"className":"balloon_skin_icecream_02_30d","name":"Blueberry Ice Cream Speech Bubble (30 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_BALLOON","strArg":"Balloon_0010","numArg1":2592000}},{"itemId":1250043,"className":"Chat_Balloon_RollingDoor_Pink_30d","name":"Rolling Door Speech Bubble (Pink) 30 Days","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_BALLOON","strArg":"Balloon_0002","numArg1":2592000}},{"itemId":1250044,"className":"Chat_Balloon_RollingDoor_BlueSky_30d","name":"Rolling Door Speech Bubble (Sky Blue) 30 Days","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_BALLOON","strArg":"Balloon_0003","numArg1":2592000}},{"itemId":1250048,"className":"Gesture_RUSTLE","name":"Gesture : Waggy ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GESTURE","strArg":"RUSTLEDANCE"}},{"itemId":1250049,"className":"Gesture_CLOCK","name":"Gesture: Pendulum Dance","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GESTURE","strArg":"CLOCKWORKDANCE"}},{"itemId":1250050,"className":"Gesture_LUCHADOR","name":"Gesture: Hero's Arrival","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_GESTURE","strArg":"LUCHADOR"}},{"itemId":1250051,"className":"balloon_skin_gabija_balloon","name":"Goddess Gabija Speech Bubble","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_BALLOON","strArg":"Balloon_0014"}},{"itemId":1250052,"className":"balloon_skin_paulius_balloon","name":"Resurrected Paulius Speech Bubble","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_BALLOON","strArg":"Balloon_0015"}},{"itemId":2000001,"className":"GLOBAL_STEAM_REWARD_1","name":"Special Compensation Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"GLOBAL_STEAM_REWARD_1"}},{"itemId":2000004,"className":"GLOBAL_Transcend_Scroll_9_440","name":"[Lv. 440] Stage 9 Transcendence Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"strArg":"transcend_Set_440","numArg1":9,"numArg2":100}},{"itemId":2000007,"className":"PCbang_legend_ExpPotion_Team_Trade","name":"ITEM_20230425_028582","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Legend_ExpPotion_2_complete_Team_Trade/40/ItemExpString/1250000000;"}},{"itemId":2020007,"className":"AbillityArts_Box_Total","name":"Arts Reset Potion Profession Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":2020008,"className":"AbillityArts_Box_Swordman","name":"Swordsman Tree Arts Reset Potion Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":2020009,"className":"AbillityArts_Box_Wizard","name":"Wizard Tree Arts Reset Potion Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":2020010,"className":"AbillityArts_Box_Archer","name":"Archer Tree Arts Reset Potion Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":2020011,"className":"AbillityArts_Box_Cleric","name":"Cleric Tree Arts Reset Potion Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":2020012,"className":"AbillityArts_Box_Scout","name":"Scout Tree Arts Reset Potion Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":2020013,"className":"Premium_AbillityArts_Box_Total","name":"Shining Arts Reset Potion Profession Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":2020014,"className":"AbillityArts_Box_Swordman_14d","name":"Swordsman Tree Arts Reset Potion Selection Box (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":2020015,"className":"AbillityArts_Box_Wizard_14d","name":"Wizard Tree Arts Reset Potion Selection Box (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":2020016,"className":"AbillityArts_Box_Archer_14d","name":"Archer Tree Arts Reset Potion Selection Box (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":2020017,"className":"AbillityArts_Box_Cleric_14d","name":"Cleric Tree Arts Reset Potion Selection Box (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":2020018,"className":"AbillityArts_Box_Scout_14d","name":"Scout Tree Arts Reset Potion Selection Box (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":2020019,"className":"RankReset_Point_Lv3_14d","name":"Class Change Voucher Lv 3 (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"Event_RankReset_Point_Lv3_14d","numArg1":1000}},{"itemId":2021001,"className":"Premium_AbillityArts_Char1_1","name":"Arts Reset Potion - Swordsman","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":1}},{"itemId":2021002,"className":"Premium_AbillityArts_Char1_2","name":"Arts Reset Potion - Highlander","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":2}},{"itemId":2021003,"className":"Premium_AbillityArts_Char1_3","name":"Arts Reset Potion - Peltasta","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":3}},{"itemId":2021004,"className":"Premium_AbillityArts_Char1_4","name":"Arts Reset Potion - Hoplite","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":4}},{"itemId":2021005,"className":"Premium_AbillityArts_Char1_6","name":"Arts Reset Potion - Barbarian","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":6}},{"itemId":2021006,"className":"Premium_AbillityArts_Char1_7","name":"Arts Reset Potion - Cataphract","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":7}},{"itemId":2021007,"className":"Premium_AbillityArts_Char1_9","name":"Arts Reset Potion - Doppelsoeldner","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":9}},{"itemId":2021008,"className":"Premium_AbillityArts_Char1_10","name":"Arts Reset Potion - Rodelero","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":10}},{"itemId":2021009,"className":"Premium_AbillityArts_Char1_12","name":"Arts Reset Potion - Murmillo","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":12}},{"itemId":2021010,"className":"Premium_AbillityArts_Char1_14","name":"Arts Reset Potion - Fencer","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":14}},{"itemId":2021011,"className":"Premium_AbillityArts_Char1_15","name":"Arts Reset Potion - Dragoon","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":15}},{"itemId":2021012,"className":"Premium_AbillityArts_Char1_16","name":"Arts Reset Potion - Templar","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":16}},{"itemId":2021013,"className":"Premium_AbillityArts_Char1_17","name":"Arts Reset Potion - Lancer","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":17}},{"itemId":2021014,"className":"Premium_AbillityArts_Char1_19","name":"Arts Reset Potion - Matador","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":19}},{"itemId":2021015,"className":"Premium_AbillityArts_Char1_20","name":"Arts Reset Potion - Nak Muay","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":20}},{"itemId":2021016,"className":"Premium_AbillityArts_Char1_18","name":"Arts Reset Potion - Retiarius","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":18}},{"itemId":2021017,"className":"Premium_AbillityArts_Char1_21","name":"Arts Reset Potion - Hackapell","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":21}},{"itemId":2021018,"className":"Premium_AbillityArts_Char2_1","name":"Arts Reset Potion - Wizard","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":1}},{"itemId":2021019,"className":"Premium_AbillityArts_Char2_2","name":"Arts Reset Potion - Pyromancer","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":2}},{"itemId":2021020,"className":"Premium_AbillityArts_Char2_3","name":"Arts Reset Potion - Cryomancer","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":3}},{"itemId":2021021,"className":"Premium_AbillityArts_Char2_4","name":"Arts Reset Potion - Psychokino","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":4}},{"itemId":2021022,"className":"Premium_AbillityArts_Char2_5","name":"Arts Reset Potion - Alchemist","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":5}},{"itemId":2021023,"className":"Premium_AbillityArts_Char2_6","name":"Arts Reset Potion - Sorcerer","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":6}},{"itemId":2021024,"className":"Premium_AbillityArts_Char2_8","name":"Arts Reset Potion - Chronomancer","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":8}},{"itemId":2021025,"className":"Premium_AbillityArts_Char2_9","name":"Arts Reset Potion - Necromancer","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":9}},{"itemId":2021026,"className":"Premium_AbillityArts_Char2_11","name":"Arts Reset Potion - Elementalist","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":11}},{"itemId":2021027,"className":"Premium_AbillityArts_Char2_14","name":"Arts Reset Potion - Sage","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":14}},{"itemId":2021028,"className":"Premium_AbillityArts_Char2_15","name":"Arts Reset Potion - Warlock","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":15}},{"itemId":2021029,"className":"Premium_AbillityArts_Char2_16","name":"Arts Reset Potion - Featherfoot","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":16}},{"itemId":2021030,"className":"Premium_AbillityArts_Char2_17","name":"Arts Reset Potion - Rune Caster","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":17}},{"itemId":2021031,"className":"Premium_AbillityArts_Char2_19","name":"Arts Reset Potion - Shadowmancer","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":19}},{"itemId":2021032,"className":"Premium_AbillityArts_Char2_20","name":"Arts Reset Potion - Onmyoji","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":20}},{"itemId":2021033,"className":"Premium_AbillityArts_Char2_21","name":"Arts Reset Potion - Taoist","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":21}},{"itemId":2021034,"className":"Premium_AbillityArts_Char2_22","name":"Arts Reset Potion - Bokor","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":22}},{"itemId":2021035,"className":"Premium_AbillityArts_Char3_1","name":"Arts Reset Potion - Archer","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":1}},{"itemId":2021036,"className":"Premium_AbillityArts_Char3_2","name":"Arts Reset Potion - Hunter","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":2}},{"itemId":2021037,"className":"Premium_AbillityArts_Char3_3","name":"Arts Reset Potion - Quarrel Shooter","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":3}},{"itemId":2021038,"className":"Premium_AbillityArts_Char3_4","name":"Arts Reset Potion - Ranger","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":4}},{"itemId":2021039,"className":"Premium_AbillityArts_Char3_5","name":"Arts Reset Potion - Sapper","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":5}},{"itemId":2021040,"className":"Premium_AbillityArts_Char3_6","name":"Arts Reset Potion - Wugushi","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":6}},{"itemId":2021041,"className":"Premium_AbillityArts_Char3_11","name":"Arts Reset Potion - Fletcher","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":11}},{"itemId":2021042,"className":"Premium_AbillityArts_Char3_12","name":"Arts Reset Potion - Pied Piper","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":12}},{"itemId":2021043,"className":"Premium_AbillityArts_Char3_13","name":"Arts Reset Potion - Appraiser","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":13}},{"itemId":2021044,"className":"Premium_AbillityArts_Char3_14","name":"Arts Reset Potion - Falconer","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":14}},{"itemId":2021045,"className":"Premium_AbillityArts_Char3_15","name":"Arts Reset Potion - Cannoneer","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":15}},{"itemId":2021046,"className":"Premium_AbillityArts_Char3_16","name":"Arts Reset Potion - Musketeer","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":16}},{"itemId":2021047,"className":"Premium_AbillityArts_Char3_17","name":"Arts Reset Potion - Mergen","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":17}},{"itemId":2021048,"className":"Premium_AbillityArts_Char3_18","name":"Arts Reset Potion - Matross","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":18}},{"itemId":2021049,"className":"Premium_AbillityArts_Char3_19","name":"Arts Reset Potion - Tiger Hunter","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":19}},{"itemId":2021050,"className":"Premium_AbillityArts_Char4_1","name":"Arts Reset Potion - Cleric","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":1}},{"itemId":2021051,"className":"Premium_AbillityArts_Char4_2","name":"Arts Reset Potion - Priest","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":2}},{"itemId":2021052,"className":"Premium_AbillityArts_Char4_3","name":"Arts Reset Potion - Krivis","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":3}},{"itemId":2021053,"className":"Premium_AbillityArts_Char4_5","name":"Arts Reset Potion - Druid","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":5}},{"itemId":2021054,"className":"Premium_AbillityArts_Char4_6","name":"Arts Reset Potion - Sadhu","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":6}},{"itemId":2021055,"className":"Premium_AbillityArts_Char4_7","name":"Arts Reset Potion - Dievdirbys","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":7}},{"itemId":2021056,"className":"Premium_AbillityArts_Char4_8","name":"Arts Reset Potion - Oracle","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":8}},{"itemId":2021057,"className":"Premium_AbillityArts_Char4_9","name":"Arts Reset Potion - Monk","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":9}},{"itemId":2021058,"className":"Premium_AbillityArts_Char4_10","name":"Arts Reset Potion - Pardoner","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":10}},{"itemId":2021059,"className":"Premium_AbillityArts_Char4_11","name":"Arts Reset Potion - Paladin","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":11}},{"itemId":2021060,"className":"Premium_AbillityArts_Char4_12","name":"Arts Reset Potion - Chaplain","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":12}},{"itemId":2021061,"className":"Premium_AbillityArts_Char4_14","name":"Arts Reset Potion - Plague Doctor","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":14}},{"itemId":2021062,"className":"Premium_AbillityArts_Char4_15","name":"Arts Reset Potion - Kabbalist","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":15}},{"itemId":2021063,"className":"Premium_AbillityArts_Char4_16","name":"Arts Reset Potion - Inquisitor","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":16}},{"itemId":2021064,"className":"Premium_AbillityArts_Char4_18","name":"Arts Reset Potion - Miko","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":18}},{"itemId":2021065,"className":"Premium_AbillityArts_Char4_19","name":"Arts Reset Potion - Zealot","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":19}},{"itemId":2021066,"className":"Premium_AbillityArts_Char4_20","name":"Arts Reset Potion - Exorcist","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":20}},{"itemId":2021067,"className":"Premium_AbillityArts_Char5_1","name":"Arts Reset Potion - Scout","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":1}},{"itemId":2021068,"className":"Premium_AbillityArts_Char5_2","name":"Arts Reset Potion - Assassin","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":2}},{"itemId":2021069,"className":"Premium_AbillityArts_Char5_3","name":"Arts Reset Potion - Outlaw","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":3}},{"itemId":2021070,"className":"Premium_AbillityArts_Char5_4","name":"Arts Reset Potion - Squire","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":4}},{"itemId":2021071,"className":"Premium_AbillityArts_Char5_5","name":"Arts Reset Potion - Corsair","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":5}},{"itemId":2021072,"className":"Premium_AbillityArts_Char5_6","name":"Arts Reset Potion - Shinobi","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":6}},{"itemId":2021073,"className":"Premium_AbillityArts_Char5_7","name":"Arts Reset Potion - Thaumaturge","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":7}},{"itemId":2021074,"className":"Premium_AbillityArts_Char5_8","name":"Arts Reset Potion - Enchanter","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":8}},{"itemId":2021075,"className":"Premium_AbillityArts_Char5_9","name":"Arts Reset Potion - Linker","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":9}},{"itemId":2021076,"className":"Premium_AbillityArts_Char5_10","name":"Arts Reset Potion - Rogue","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":10}},{"itemId":2021077,"className":"Premium_AbillityArts_Char5_11","name":"Arts Reset Potion - Schwarzer Reiter","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":11}},{"itemId":2021078,"className":"Premium_AbillityArts_Char5_12","name":"Arts Reset Potion - Bullet Marker","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":12}},{"itemId":2021079,"className":"Premium_AbillityArts_Char5_13","name":"Arts Reset Potion - Ardito","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":13}},{"itemId":2021080,"className":"Premium_AbillityArts_Char5_14","name":"Arts Reset Potion - Sheriff","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":14}},{"itemId":2021081,"className":"Premium_AbillityArts_Char1_22","name":"Arts Reset Potion - Blossom Blader","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":22}},{"itemId":2021082,"className":"Premium_AbillityArts_Char2_23","name":"Arts Reset Potion - Terramancer","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":23}},{"itemId":2021083,"className":"Premium_AbillityArts_Char3_20","name":"Arts Reset Potion - Arbalester","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":20}},{"itemId":2021084,"className":"Premium_AbillityArts_Char4_21","name":"Arts Reset Potion - Crusader","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":21}},{"itemId":2021085,"className":"Premium_AbillityArts_Char5_15","name":"Arts Reset Potion - Rangda","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":15}},{"itemId":2021086,"className":"Premium_AbillityArts_Rodelero32_1d","name":"Arts Reset Potion - Targe Smash: Break (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":106025}},{"itemId":2021087,"className":"Premium_AbillityArts_Murmillo21_1d","name":"Arts Reset Potion - Cassis Crista: Gladiator (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":115021}},{"itemId":2021088,"className":"Premium_AbillityArts_Peltasta39_1d","name":"Arts Reset Potion - Guardian: Reflect Missile (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":102035}},{"itemId":2021089,"className":"Premium_AbillityArts_Barbarian35_1d","name":"Arts Reset Potion - Leather Mastery: Animal Instinct (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":105026}},{"itemId":2021090,"className":"Premium_AbillityArts_Hackapell16_1d","name":"Arts Reset Potion - Hakka Palle: Guerilla (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":314016}},{"itemId":2021091,"className":"Premium_AbillityArts_Cryomancer26_1d","name":"Arts Reset Potion - Ice Wall: Magic Igloo (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":203024}},{"itemId":2021092,"className":"Premium_AbillityArts_Wugushi29_1d","name":"Arts Reset Potion - Latent Venom: Enervation (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":306024}},{"itemId":2021093,"className":"Premium_AbillityArts_Druid23_1d","name":"Arts Reset Potion - Chortasmata: Healing Garden (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":410023}},{"itemId":2021094,"className":"Premium_AbillityArts_Exorcist20_1d","name":"Arts Reset Potion - Rubric: Corruption (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":419018}},{"itemId":2021095,"className":"Premium_AbillityArts_Sheriff8_1d","name":"Arts Reset Potion - Westraid: Final Roulette (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":505008}},{"itemId":2021096,"className":"Premium_AbillityArts_Rogue22_1d","name":"Arts Reset Potion - Knife Throw: Zenith (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":308014}},{"itemId":2021097,"className":"Premium_AbillityArts_Corsair21_1d","name":"Arts Reset Potion - Jolly Roger: Support Shot (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":109014}},{"itemId":2021098,"className":"Premium_AbillityArts_Fencer13_1d","name":"Arts Reset Potion - Fencer: Nobility (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":112013}},{"itemId":2021099,"className":"Premium_AbillityArts_Sapper42_1d","name":"Arts Reset Potion - Punji Stake: Instance (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":304032}},{"itemId":2021100,"className":"Premium_AbillityArts_Thaumaturge22_1d","name":"Arts Reset Potion - Swell Body: Ally (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":206019}},{"itemId":2021101,"className":"Premium_AbillityArts_Thaumaturge23_1d","name":"Arts Reset Potion - Shrink Body: Ally (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":206020}},{"itemId":2021102,"className":"Premium_AbillityArts_Peltasta44_1d","name":"Arts Reset Potion - Swash Buckling: Swear Word (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":102040}},{"itemId":2021103,"className":"Premium_AbillityArts_Onmyoji28_1d","name":"Arts Reset Potion - Genbu Armor: Possessed (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":218028}},{"itemId":2021104,"className":"Premium_AbillityArts_Ranger39_1d","name":"Arts Reset Potion - Barrage: Perfect Angle (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":302026}},{"itemId":2021105,"className":"Premium_AbillityArts_Ranger38_1d","name":"Arts Reset Potion - Bounce Shot: Insta-Freeze Arrow (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":302025}},{"itemId":2021106,"className":"Premium_AbillityArts_Mergen24_1d","name":"Arts Reset Potion - Down Fall: Rapid Shot (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":315024}},{"itemId":2021107,"className":"Premium_AbillityArts_Arbalester18_1d","name":"Arts Reset Potion - Dead Zone: Exterminate (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":321018}},{"itemId":2021108,"className":"Premium_AbillityArts_Highlander42_1d","name":"Arts Reset Potion - Skyliner: Fury (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":103036}},{"itemId":2021109,"className":"Premium_AbillityArts_Templar11_1d","name":"Arts Reset Potion - Forge: Recall (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":117011}},{"itemId":2021110,"className":"Premium_AbillityArts_Appraiser7_1d","name":"Arts Reset Potion - Blindside: Focus (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":316007}},{"itemId":2021111,"className":"Premium_AbillityArts_Chaplain21_1d","name":"Arts Reset Potion - Aspergillum: Magnus Exorcismus (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":414016}},{"itemId":2021112,"className":"AbillityArts_Char1_1_1d","name":"Arts Reset Potion - Swordsman (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":1}},{"itemId":2021113,"className":"AbillityArts_Char1_2_1d","name":"Arts Reset Potion - Highlander (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":2}},{"itemId":2021114,"className":"AbillityArts_Char1_3_1d","name":"Arts Reset Potion - Peltasta (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":3}},{"itemId":2021115,"className":"AbillityArts_Char1_4_1d","name":"Arts Reset Potion - Hoplite (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":4}},{"itemId":2021116,"className":"AbillityArts_Char1_6_1d","name":"Arts Reset Potion - Barbarian (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":6}},{"itemId":2021117,"className":"AbillityArts_Char1_7_1d","name":"Arts Reset Potion - Cataphract (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":7}},{"itemId":2021118,"className":"AbillityArts_Char1_9_1d","name":"Arts Reset Potion - Doppelsoeldner (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":9}},{"itemId":2021119,"className":"AbillityArts_Char1_10_1d","name":"Arts Reset Potion - Rodelero (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":10}},{"itemId":2021120,"className":"AbillityArts_Char1_12_1d","name":"Arts Reset Potion - Murmillo (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":12}},{"itemId":2021121,"className":"AbillityArts_Char1_14_1d","name":"Arts Reset Potion - Fencer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":14}},{"itemId":2021122,"className":"AbillityArts_Char1_15_1d","name":"Arts Reset Potion - Dragoon (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":15}},{"itemId":2021123,"className":"AbillityArts_Char1_16_1d","name":"Arts Reset Potion - Templar (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":16}},{"itemId":2021124,"className":"AbillityArts_Char1_17_1d","name":"Arts Reset Potion - Lancer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":17}},{"itemId":2021125,"className":"AbillityArts_Char1_19_1d","name":"Arts Reset Potion - Matador (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":19}},{"itemId":2021126,"className":"AbillityArts_Char1_20_1d","name":"Arts Reset Potion - Nak Muay (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":20}},{"itemId":2021127,"className":"AbillityArts_Char1_18_1d","name":"Arts Reset Potion - Retiarius (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":18}},{"itemId":2021128,"className":"AbillityArts_Char1_21_1d","name":"Arts Reset Potion - Hackapell (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":21}},{"itemId":2021129,"className":"AbillityArts_Char2_1_1d","name":"Arts Reset Potion - Wizard (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":1}},{"itemId":2021130,"className":"AbillityArts_Char2_2_1d","name":"Arts Reset Potion - Pyromancer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":2}},{"itemId":2021131,"className":"AbillityArts_Char2_3_1d","name":"Arts Reset Potion - Cryomancer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":3}},{"itemId":2021132,"className":"AbillityArts_Char2_4_1d","name":"Arts Reset Potion - Psychokino (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":4}},{"itemId":2021133,"className":"AbillityArts_Char2_5_1d","name":"Arts Reset Potion - Alchemist (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":5}},{"itemId":2021134,"className":"AbillityArts_Char2_6_1d","name":"Arts Reset Potion - Sorcerer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":6}},{"itemId":2021135,"className":"AbillityArts_Char2_8_1d","name":"Arts Reset Potion - Chronomancer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":8}},{"itemId":2021136,"className":"AbillityArts_Char2_9_1d","name":"Arts Reset Potion - Necromancer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":9}},{"itemId":2021137,"className":"AbillityArts_Char2_11_1d","name":"Arts Reset Potion - Elementalist (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":11}},{"itemId":2021138,"className":"AbillityArts_Char2_14_1d","name":"Arts Reset Potion - Sage (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":14}},{"itemId":2021139,"className":"AbillityArts_Char2_15_1d","name":"Arts Reset Potion - Warlock (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":15}},{"itemId":2021140,"className":"AbillityArts_Char2_16_1d","name":"Arts Reset Potion - Featherfoot (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":16}},{"itemId":2021141,"className":"AbillityArts_Char2_17_1d","name":"Arts Reset Potion - Rune Caster (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":17}},{"itemId":2021142,"className":"AbillityArts_Char2_19_1d","name":"Arts Reset Potion - Shadowmancer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":19}},{"itemId":2021143,"className":"AbillityArts_Char2_20_1d","name":"Arts Reset Potion - Onmyoji (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":20}},{"itemId":2021144,"className":"AbillityArts_Char2_21_1d","name":"Arts Reset Potion - Taoist (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":21}},{"itemId":2021145,"className":"AbillityArts_Char2_22_1d","name":"Arts Reset Potion - Bokor (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":22}},{"itemId":2021146,"className":"AbillityArts_Char3_1_1d","name":"Arts Reset Potion - Archer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":1}},{"itemId":2021147,"className":"AbillityArts_Char3_2_1d","name":"Arts Reset Potion - Hunter (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":2}},{"itemId":2021148,"className":"AbillityArts_Char3_3_1d","name":"Arts Reset Potion - Quarrel Shooter (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":3}},{"itemId":2021149,"className":"AbillityArts_Char3_4_1d","name":"Arts Reset Potion - Ranger (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":4}},{"itemId":2021150,"className":"AbillityArts_Char3_5_1d","name":"Arts Reset Potion - Sapper (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":5}},{"itemId":2021151,"className":"AbillityArts_Char3_6_1d","name":"Arts Reset Potion - Wugushi (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":6}},{"itemId":2021152,"className":"AbillityArts_Char3_11_1d","name":"Arts Reset Potion - Fletcher (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":11}},{"itemId":2021153,"className":"AbillityArts_Char3_12_1d","name":"Arts Reset Potion - Pied Piper (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":12}},{"itemId":2021154,"className":"AbillityArts_Char3_13_1d","name":"Arts Reset Potion - Appraiser (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":13}},{"itemId":2021155,"className":"AbillityArts_Char3_14_1d","name":"Arts Reset Potion - Falconer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":14}},{"itemId":2021156,"className":"AbillityArts_Char3_15_1d","name":"Arts Reset Potion - Cannoneer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":15}},{"itemId":2021157,"className":"AbillityArts_Char3_16_1d","name":"Arts Reset Potion - Musketeer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":16}},{"itemId":2021158,"className":"AbillityArts_Char3_17_1d","name":"Arts Reset Potion - Mergen (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":17}},{"itemId":2021159,"className":"AbillityArts_Char3_18_1d","name":"Arts Reset Potion - Matross (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":18}},{"itemId":2021160,"className":"AbillityArts_Char3_19_1d","name":"Arts Reset Potion - Tiger Hunter (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":19}},{"itemId":2021161,"className":"AbillityArts_Char4_1_1d","name":"Arts Reset Potion - Cleric (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":1}},{"itemId":2021162,"className":"AbillityArts_Char4_2_1d","name":"Arts Reset Potion - Priest (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":2}},{"itemId":2021163,"className":"AbillityArts_Char4_3_1d","name":"Arts Reset Potion - Krivis (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":3}},{"itemId":2021164,"className":"AbillityArts_Char4_5_1d","name":"Arts Reset Potion - Druid (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":5}},{"itemId":2021165,"className":"AbillityArts_Char4_6_1d","name":"Arts Reset Potion - Sadhu (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":6}},{"itemId":2021166,"className":"AbillityArts_Char4_7_1d","name":"Arts Reset Potion - Dievdirbys (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":7}},{"itemId":2021167,"className":"AbillityArts_Char4_8_1d","name":"Arts Reset Potion - Oracle (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":8}},{"itemId":2021168,"className":"AbillityArts_Char4_9_1d","name":"Arts Reset Potion - Monk (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":9}},{"itemId":2021169,"className":"AbillityArts_Char4_10_1d","name":"Arts Reset Potion - Pardoner (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":10}},{"itemId":2021170,"className":"AbillityArts_Char4_11_1d","name":"Arts Reset Potion - Paladin (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":11}},{"itemId":2021171,"className":"AbillityArts_Char4_12_1d","name":"Arts Reset Potion - Chaplain (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":12}},{"itemId":2021172,"className":"AbillityArts_Char4_14_1d","name":"Arts Reset Potion - Plague Doctor (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":14}},{"itemId":2021173,"className":"AbillityArts_Char4_15_1d","name":"Arts Reset Potion - Kabbalist (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":15}},{"itemId":2021174,"className":"AbillityArts_Char4_16_1d","name":"Arts Reset Potion - Inquisitor (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":16}},{"itemId":2021175,"className":"AbillityArts_Char4_18_1d","name":"Arts Reset Potion - Miko (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":18}},{"itemId":2021176,"className":"AbillityArts_Char4_19_1d","name":"Arts Reset Potion - Zealot (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":19}},{"itemId":2021177,"className":"AbillityArts_Char4_20_1d","name":"Arts Reset Potion - Exorcist (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":20}},{"itemId":2021178,"className":"AbillityArts_Char5_1_1d","name":"Arts Reset Potion - Scout (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":1}},{"itemId":2021179,"className":"AbillityArts_Char5_2_1d","name":"Arts Reset Potion - Assassin (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":2}},{"itemId":2021180,"className":"AbillityArts_Char5_3_1d","name":"Arts Reset Potion - Outlaw (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":3}},{"itemId":2021181,"className":"AbillityArts_Char5_4_1d","name":"Arts Reset Potion - Squire (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":4}},{"itemId":2021182,"className":"AbillityArts_Char5_5_1d","name":"Arts Reset Potion - Corsair (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":5}},{"itemId":2021183,"className":"AbillityArts_Char5_6_1d","name":"Arts Reset Potion - Shinobi (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":6}},{"itemId":2021184,"className":"AbillityArts_Char5_7_1d","name":"Arts Reset Potion - Thaumaturge (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":7}},{"itemId":2021185,"className":"AbillityArts_Char5_8_1d","name":"Arts Reset Potion - Enchanter (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":8}},{"itemId":2021186,"className":"AbillityArts_Char5_9_1d","name":"Arts Reset Potion - Linker (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":9}},{"itemId":2021187,"className":"AbillityArts_Char5_10_1d","name":"Arts Reset Potion - Rogue (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":10}},{"itemId":2021188,"className":"AbillityArts_Char5_11_1d","name":"Arts Reset Potion - Schwarzer Reiter (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":11}},{"itemId":2021189,"className":"AbillityArts_Char5_12_1d","name":"Arts Reset Potion - Bullet Marker (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":12}},{"itemId":2021190,"className":"AbillityArts_Char5_13_1d","name":"Arts Reset Potion - Ardito (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":13}},{"itemId":2021191,"className":"AbillityArts_Char5_14_1d","name":"Arts Reset Potion - Sheriff (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":14}},{"itemId":2021192,"className":"AbillityArts_Char1_22_1d","name":"Arts Reset Potion - Blossom Blader (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":1,"numArg2":22}},{"itemId":2021193,"className":"AbillityArts_Char2_23_1d","name":"Arts Reset Potion - Terramancer (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":2,"numArg2":23}},{"itemId":2021194,"className":"AbillityArts_Char3_20_1d","name":"Arts Reset Potion - Arbalester (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":20}},{"itemId":2021195,"className":"AbillityArts_Char4_21_1d","name":"Arts Reset Potion - Crusader (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":4,"numArg2":21}},{"itemId":2021196,"className":"AbillityArts_Char5_15_1d","name":"Arts Reset Potion - Rangda (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":15}},{"itemId":2021197,"className":"AbillityArts_Char3_21_1d","name":"Arts Reset Potion - Arquebusier (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":21}},{"itemId":2021198,"className":"AbillityArts_Char5_16_1d","name":"Arts Reset Potion - Clown (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":16}},{"itemId":2021199,"className":"Premium_AbillityArts_Char3_21","name":"Arts Reset Potion - Arquebusier","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":3,"numArg2":21}},{"itemId":2021200,"className":"Premium_AbillityArts_Char5_16","name":"Arts Reset Potion - Clown","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":5,"numArg2":16}},{"itemId":2021201,"className":"Premium_AbillityArts_Crusader15_1d","name":"Arts Reset Potion - Chant: Goddess' Blessing (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":420015}},{"itemId":2021202,"className":"Premium_AbillityArts_Exorcist19_1d","name":"Arts Reset Potion - Katadikazo: Flame Spear (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":419017}},{"itemId":2021203,"className":"Premium_AbillityArts_Exorcist27_1d","name":"Arts Reset Potion - Entity: search (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":419025}},{"itemId":2021204,"className":"Premium_AbillityArts_Musketeer37_1d","name":"Arts Reset Potion - Sniper's Serenity: Large Caliber (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":313037}},{"itemId":2021205,"className":"Premium_AbillityArts_Matross19_1d","name":"Arts Reset Potion - Canister Shot: Gravity Adjustment (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":319019}},{"itemId":2021206,"className":"Premium_AbillityArts_Cannoneer31_1d","name":"Arts Reset Potion - Bazooka: Nimble (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":312031}},{"itemId":2021207,"className":"Premium_AbillityArts_Hoplite33_1d","name":"Arts Reset Potion - Spear Throw: Explosion (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":104028}},{"itemId":2021208,"className":"Premium_AbillityArts_Falconer27_1d","name":"Arts Reset Potion - Tomahawk: Scorched (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":310027}},{"itemId":2021209,"className":"Premium_AbillityArts_Doppelsoeldner35_1d","name":"Arts Reset Potion - Cyclone: Tornado (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":111029}},{"itemId":2021210,"className":"Premium_AbillityArts_Rodelero41_1d","name":"Arts Reset Potion - Shooting Star: Violence (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":106034}},{"itemId":2021211,"className":"Premium_AbillityArts_Matador21_1d","name":"Arts Reset Potion - Corrida Finale: Raging Bull (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":118021}},{"itemId":2021212,"className":"Premium_AbillityArts_Pyromancer38_1d","name":"Arts Reset Potion - Hell Breath: Napalm (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":202033}},{"itemId":2021213,"className":"Premium_AbillityArts_Pyromancer30_1d","name":"Arts Reset Potion - Prominence: Flame Jewel (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":202025}},{"itemId":2021214,"className":"Premium_AbillityArts_Psychokino25_1d","name":"Arts Reset Potion - Heavy Gravity: Distort (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":204023}},{"itemId":2021215,"className":"Premium_AbillityArts_Wugushi36_1d","name":"Arts Reset Potion - Jincan Gu: Golden Frog (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":306031}},{"itemId":2021216,"className":"Premium_AbillityArts_Cleric25_1d","name":"Arts Reset Potion - Cloth Mastery: Healing (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":401024}},{"itemId":2021217,"className":"Premium_AbillityArts_Kriwi29_1d","name":"Arts Reset Potion - Zaibas: Catatumbo (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":402025}},{"itemId":2021218,"className":"Premium_AbillityArts_Zealot16_1d","name":"Arts Reset Potion - Fanatic Illusion (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":418016}},{"itemId":2021219,"className":"Premium_AbillityArts_Rogue26_1d","name":"Arts Reset Potion - Lachrymator: Lethal Gas (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":308018}},{"itemId":2021220,"className":"Premium_AbillityArts_Swordman33_1d","name":"Arts Reset Potion - Thrust: Charge (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":101025}},{"itemId":2021221,"className":"Premium_AbillityArts_QuarrelShooter26_1d","name":"Arts Reset Potion - Deploy Pavise: Fortress (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":303021}},{"itemId":2021222,"className":"Premium_AbillityArts_Schwarzereiter34_1d","name":"Arts Reset Potion - Evasive Action: Duration (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":311028}},{"itemId":2021223,"className":"Premium_AbillityArts_Monk27_1d","name":"Arts Reset Potion - Monk: Nirvana (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":408020}},{"itemId":2021224,"className":"Premium_AbillityArts_Linker19_1d","name":"Arts Reset Potion - Joint Penalty: Chain Heart (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":205018}},{"itemId":2021225,"className":"Premium_AbillityArts_Cryomancer32_1d","name":"Arts Reset Potion - Cryomancer: Thin Ice (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":203030}},{"itemId":2021226,"className":"Premium_AbillityArts_Sadhu35_1d","name":"Arts Reset Potion - Spirit Expert: Wandering Soul (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Arts","numArg1":406029}},{"itemId":2500000,"className":"GLOBAL_steam_Lucky_Shard_Package","name":"Lucky Shard Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GLOBAL_steam_Lucky_Shard_Package","strArg":"Normal"}},{"itemId":2500001,"className":"GLOBAL_steam_Feeling_Lucky_Package","name":"Feeling Lucky Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GACHA","strArg":"GLOBAL_steam_Feeling_Lucky_Package"}},{"itemId":2500002,"className":"GLOBAL_steam_Lucky_Sub_Box","name":"Goddess' Blessed Gem Box (x100)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GLOBAL_steam_Lucky_Sub_Box","strArg":"Normal"}},{"itemId":2500003,"className":"GLOBAL_steam_Lucky_Shard_Package_3","name":"Lucky Shard Package x3 Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GLOBAL_steam_Lucky_Shard_Package_3","strArg":"Normal"}},{"itemId":2500005,"className":"Transcend_Scroll_8_Event_TWN","name":"Stage 8 Transcendence SCroll","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"transcend_Set","numArg1":8,"numArg2":100}},{"itemId":2500006,"className":"GLOBAL_TWN_3YEARS_PACKAGE_1","name":"Enhancement Package ","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GLOBAL_TWN_3YEARS_PACKAGE_1","strArg":"Normal"}},{"itemId":2500007,"className":"GLOBAL_TWN_3YEARS_PACKAGE_2","name":"Card Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GLOBAL_TWN_3YEARS_PACKAGE_2","strArg":"Normal"}},{"itemId":2500008,"className":"GLOBAL_TWN_3YEARS_PACKAGE_3","name":"Gem Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GLOBAL_TWN_3YEARS_PACKAGE_3","strArg":"Normal"}},{"itemId":2500009,"className":"GLOBAL_TWN_3YEARS_PACKAGE_4","name":"Growth Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GLOBAL_TWN_3YEARS_PACKAGE_4","strArg":"Normal"}},{"itemId":2500010,"className":"GLOBAL_TWN_3YEARS_PACKAGE_5","name":"ALL-IN-ONE Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GLOBAL_TWN_3YEARS_PACKAGE_5","strArg":"Normal"}},{"itemId":2500011,"className":"GLOBAL_STEAM_WakeUp_PACKAGE_1","name":"Wake Up: Advanced","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GLOBAL_STEAM_WakeUp_PACKAGE_1","strArg":"Normal"}},{"itemId":2500012,"className":"GLOBAL_STEAM_WakeUp_PACKAGE_2","name":"Wake Up: Learner's package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GLOBAL_STEAM_WakeUp_PACKAGE_2","strArg":"Normal"}},{"itemId":2500014,"className":"STM_CB_Support","name":"Battle March Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STM_CB_Support","strArg":"Normal"}},{"itemId":2500015,"className":"STM_Reset_Pack","name":"Reset Pack","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STM_Reset_Pack","strArg":"Normal"}},{"itemId":2500016,"className":"STM_ENH_Pack","name":"Teliavelis' Forge Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STM_ENH_Pack","strArg":"Normal"}},{"itemId":2500017,"className":"GLOBAL_THA_Gacha_2YEARS_001","name":"2nd Anniversary Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"GLOBAL_THA_Gacha_2YEARS_001","numArg1":1}},{"itemId":2500018,"className":"GLOBAL_THA_Gacha_2YEARS_010","name":"2nd Anniversary Cube x10 + 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"GLOBAL_THA_Gacha_2YEARS_001","numArg1":10}},{"itemId":2500019,"className":"Premium_Vakarine_Steam","name":"Vakarine Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Premium_Vakarine_Steam","strArg":"Normal"}},{"itemId":2500020,"className":"Premium_Vakarine_Steam_NBU","name":"Vakarine First Time Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Premium_Vakarine_NBU_Steam","strArg":"Normal"}},{"itemId":2500021,"className":"STM_Premium_Pizza","name":"[PP] Pizza","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":2500022,"className":"GLOBAL_LEGEND_ENCHANTJEWEL_Box","name":"Legend Enchant Jewel Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GLOBAL_LEGEND_ENCHANTJEWEL_Box","strArg":"Normal","numArg1":3}},{"itemId":2500023,"className":"GLOBAL_UNIQUE_ENCHANTJEWEL_Box","name":"Unique Enchant Jewel Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GLOBAL_UNIQUE_ENCHANTJEWEL_Box","strArg":"Normal","numArg1":3}},{"itemId":2500024,"className":"GLOBAL_1910_PACKAGE_1","name":"Medeina's Bootcamp Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GLOBAL_1910_PACKAGE_1","strArg":"Normal"}},{"itemId":2500025,"className":"GLOBAL_1910_PACKAGE_2","name":"Ausurine's Power Leveling Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GLOBAL_1910_PACKAGE_2","strArg":"Normal"}},{"itemId":2500026,"className":"GLOBAL_1911_CHALLENGE_PACKAGE","name":"Challenger Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GLOBAL_1911_CHALLENGE_PACKAGE","strArg":"Normal"}},{"itemId":2500027,"className":"GLOBAL_1911_REINFORCE_PACKAGE","name":"Endeavor Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GLOBAL_1911_REINFORCE_PACKAGE","strArg":"Normal"}},{"itemId":2500028,"className":"GLOBAL_1903_astronaut_selelctbox","name":"[Event] GM's Astro Ambition Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500029,"className":"GLOBAL_1911_GROWTH_PACKAGE","name":"Growth Weapon Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GLOBAL_1911_GROWTH_PACKAGE","strArg":"Normal"}},{"itemId":2500030,"className":"GLOBAL_1911_SPARROW_PACKAGE","name":"Sparrow Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GLOBAL_1911_SPARROW_PACKAGE","strArg":"Normal"}},{"itemId":2500031,"className":"GLOBAL_1911_LETICIA_BONUS_REWARD_BOX","name":"2019 Leticia's Special Reward Box (Season 10)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GLOBAL_1911_LETICIA_BONUS_REWARD_BOX"}},{"itemId":2500032,"className":"GLOBAL_1912_PACKAGE_1","name":"Friend of Penguins","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GLOBAL_1912_PACKAGE_1","strArg":"Normal"}},{"itemId":2500033,"className":"GLOBAL_1912_PACKAGE_2","name":"Ready to Arm","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GLOBAL_1912_PACKAGE_2","strArg":"Normal"}},{"itemId":2500034,"className":"GLOBAL_1912_PACKAGE_3","name":"Career Change","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GLOBAL_1912_PACKAGE_3","strArg":"Normal"}},{"itemId":2500035,"className":"LEGEND_ENCHANTJEWEL_2020_Box","name":"[Event] Year-of-the-Rat Unique Enchant Jewel Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_LEGEND_ENCHANTJEWEL_2020_Box","strArg":"Normal","numArg1":3}},{"itemId":2500040,"className":"2020_ARBORDAY_PACKAGE_Growth","name":"2020 Seed Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"2020_ARBORDAY_NECK05/1/Transcend/10/Reinforce_2/11;2020_ARBORDAY_BRC05/2/Transcend/10/Reinforce_2/11;Event_expCard_430Lv/1;Event_JobexpCard_BOX/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Event_Drug_Alche_HP15_Premium/500;Event_Drug_Alche_SP15_Premium/500;Drug_RedApple20/50;Drug_BlueApple20/50;Ability_Point_Stone_10000/10;Premium_moneyBox/10;ChallengeModeReset_NoTrade/30;CHALLENG_PORTAL_Team/30;Premium_boostToken02/9;Premium_indunReset/20;Adventure_dungeoncount_01/30;Adventure_Reward_Seed/20;Adventure_Goddess_Statue/20;Dungeon_Key01/50;Legend_SlotOpen_Card_Team/1;Premium_RankReset/1;PremiumToken_New_Return/1;","numArg1":3}},{"itemId":2500041,"className":"2020_ARBORDAY_PACKAGE_BattleA","name":"2020 Sprout Package A","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Silver_Team_Trade/30;Moru_Premium/20;Moru_Ruby_Charge/10;Team_Legend_Enchant_Jewel_460/3;Old_Socket_Gold_Team/3;misc_gemExpStone11_Team/3;Transcend_Scroll_10_430/1;Leticia_Siera/3;Leticia_Newcle/10;Premium_Sandra_Glass/10;Premium_Sandra_Glass_1line/20;Extract_kit_Gold_Team_nonEvent/10;","numArg1":3}},{"itemId":2500042,"className":"2020_ARBORDAY_PACKAGE_BattleB","name":"2020 Sprout Package B","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"HiddenAbility_Piece/50;Ability_Point_Stone_10000/10;Drug_AddMaxWeight3/3;Premium_RankReset/1;Premium_Reset_Package/1;Premium_StatReset/1;AbillityArts_Box_Total/3;","numArg1":3}},{"itemId":2500043,"className":"2020_ARBORDAY_PACKAGE_All","name":"2020 Berry Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"2020_ARBORDAY_PACKAGE_Growth/1;2020_ARBORDAY_PACKAGE_BattleA/1;2020_ARBORDAY_PACKAGE_BattleB/1;Moru_Diamond_14d_Team_Lv430/3;","numArg1":3}},{"itemId":2500044,"className":"Gacha_HairAcc_Resale2_M_4_JP","name":"NA","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Gacha_HairAcc_Resale2_M_JP/4"}},{"itemId":2500045,"className":"Gacha_HairAcc_Resale2_M_7_JP","name":"NA","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Gacha_HairAcc_Resale2_M_JP/7"}},{"itemId":2500046,"className":"Gacha_HairAcc_Resale2_F_4_JP","name":"NA","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Gacha_HairAcc_Resale2_F_JP/4"}},{"itemId":2500047,"className":"Gacha_HairAcc_Resale2_F_7_JP","name":"NA","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Gacha_HairAcc_Resale2_F_JP/7"}},{"itemId":2500048,"className":"2020_TWN_MORU_PACKAGE","name":"#N/A","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Premium/5;Moru_Ruby_Charge/1;Moru_Diamond_14d_Team_Lv400/1;Event_Reinforce_100000coupon/50;","numArg1":3}},{"itemId":2500049,"className":"GLOBAL_2004_PACKAGE_1","name":"Power Up Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"HiddenAbility_Piece/2;Premium_item_transcendence_Stone/5;Ability_Point_Stone_10000/5;","numArg1":3}},{"itemId":2500050,"className":"GLOBAL_2004_PACKAGE_2","name":"Medeina's Bootcamp Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Select_Weapon_ChuSeok_Box/1;NewYear_Weapon_Reinforce_11/1;NewYear_Weapon_Transcend_5/1;Event_drug_steam_1h_Premium/50;Event_Drug_Alche_HP15_Premium/500;Event_Drug_Alche_SP15_Premium/500;Ability_Point_Stone_10000/10;PremiumToken_New_Return/1;Premium_moneyBox/10;ChallengeModeReset_NoTrade/20;CHALLENG_PORTAL_Team/20;Premium_boostToken02/5;Dungeon_Key01/40;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Event_expCard_400Lv/1;Event_JobexpCard_BOX/1;","numArg1":3}},{"itemId":2500051,"className":"GLOBAL_2004_PACKAGE_3","name":"Thumbs Up Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/30;PREMIUM_CHALLENG_PORTAL_TEAM/15;Dungeon_Key01/50;Dungeon_Key02/10;Ability_Point_Stone_10000/1;","numArg1":3}},{"itemId":2500052,"className":"GLOBAL_JP_2004_PACKAGE_1","name":"#N/A","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"2020_ARBORDAY_NECK05/1/Transcend/10/Reinforce_2/11;2020_ARBORDAY_BRC05/2/Transcend/10/Reinforce_2/11;Drug_AddMaxWeight3/3;Event_expCard_400Lv/1;Event_JobexpCard_BOX/1;Legend_SlotOpen_Card_JP/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;ChallengeModeReset_NoTrade/50;CHALLENG_PORTAL_Team/50;Premium_indunReset/20;Adventure_dungeoncount_01/30;Adventure_Reward_Seed/20;Adventure_Goddess_Statue/20;Drug_RedApple20/50;Drug_BlueApple20/50;Event_Drug_Alche_HP15_Premium/200;Event_Drug_Alche_SP15_Premium/200;Premium_boostToken02/10;Ability_Point_Stone_10000/10;","numArg1":3}},{"itemId":2500053,"className":"GLOBAL_JP_2004_PACKAGE_2","name":"#N/A","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_Sandra_Glass/5;Premium_Sandra_Glass_1line/15;Extract_kit_Sliver/10;Extract_kit_Gold_Team_nonEvent/5;Team_Legend_Enchant_Jewel_460/3;Dungeon_Key01/30;Dungeon_Key02/10;Leticia_Siera/5;Leticia_Newcle/10;ChallengeModeReset_NoTrade/20;CHALLENG_PORTAL_Team/20;Ability_Point_Stone_10000/3;","numArg1":3}},{"itemId":2500054,"className":"GLOBAL_JP_2004_PACKAGE_3","name":"#N/A","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Old_Socket_Gold_Team/2;Gem_Gacha_gold_coin_Team/10;misc_gemExpStone09/5;Ability_Point_Stone_10000/1;Ominous_Card_Book_Team/10;card_Xpupkit10_Team/3;legend_reinforce_card_lv2_Team/3;","numArg1":3}},{"itemId":2500055,"className":"GLOBAL_JP_2004_PACKAGE_4","name":"#N/A","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_JP_2004_PACKAGE_1/1;GLOBAL_JP_2004_PACKAGE_2/1;GLOBAL_JP_2004_PACKAGE_3/1;Legend_SlotOpen_Card_JP/1;Event_JobexpCard_BOX/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Event_expCard_400Lv/1;","numArg1":3}},{"itemId":2500056,"className":"TWN_2005_GEM_BOX_SWORDMAN","name":"Skill Gem Selection Box: Swordsman","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500057,"className":"TWN_2005_GEM_BOX_ARCHER","name":"Skill Gem Selection Box: Archer","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500058,"className":"TWN_2005_GEM_BOX_WIZARD","name":"Skill Gem Selection Box: Wizard","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500059,"className":"TWN_2005_GEM_BOX_CLERIC","name":"Skill Gem Selection Box: Cleric","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500060,"className":"TWN_2005_GEM_BOX_SCOUT","name":"Skill Gem Selection Box: Scout","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500061,"className":"GLOBAL_JP_2005_PACKAGE_1","name":"Raid Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"WeeklyBossEnteredCountReset/1;Dungeon_Key01/30;Dungeon_Key02/10;Drung_Box_Elixer_Premium/3;","numArg1":3}},{"itemId":2500062,"className":"GLOBAL_JP_2005_PACKAGE_2","name":"Arts Growth Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"HiddenAbility_Piece/2;Premium_item_transcendence_Stone/5;Ability_Point_Stone_10000/5;","numArg1":3}},{"itemId":2500063,"className":"GLOBAL_JP_2005_PACKAGE_3","name":"Identification Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Leticia_Siera/2;Leticia_Newcle/5;Premium_Master_Glass/2;Premium_Mystic_Glass/5;Premium_Sandra_Glass/2;Premium_Sandra_Glass_1line/5;","numArg1":3}},{"itemId":2500064,"className":"GLOBAL_JP_2005_PACKAGE_4","name":"Equipment Enhance Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Silver_Team_Trade/20;Moru_Gold_Team_Trade/10;Moru_Ruby_Charge/3;Transcend_Scroll_10_430/1;Old_Socket_Gold_Team/3;","numArg1":3}},{"itemId":2500065,"className":"GEM_BOX_Rodelero","name":"Skill Gem Selection Box: Rodelero","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500066,"className":"GEM_BOX_Wugushi","name":"Skill Gem Selection Box: Wugushi","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500067,"className":"GEM_BOX_Bulletmarker","name":"Skill Gem Selection Box: Bullet Marker","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500068,"className":"DESIGNCUT_PACKAGE_M_All","name":"Pocket Wig All in One Package (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"DesignCut_HAIR_M_132/1;DesignCut_HAIR_M_133/1;DesignCut_HAIR_M_134/1;DesignCut_HAIR_M_125/1;DesignCut_HAIR_M_137/1;DesignCut_HAIR_M_138/1;DesignCut_HAIR_M_139/1;DesignCut_HAIR_M_140/1;DesignCut_HAIR_M_141/1;DesignCut_HAIR_M_142/1;DesignCut_HAIR_M_143/1;DesignCut_HAIR_M_144/1;","numArg1":3}},{"itemId":2500069,"className":"DESIGNCUT_PACKAGE_F_All","name":"Pocket Wig All in One Package (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"DesignCut_HAIR_F_126/1;DesignCut_HAIR_F_133/1;DesignCut_HAIR_F_134/1;DesignCut_HAIR_F_135/1;DesignCut_HAIR_F_138/1;DesignCut_HAIR_F_139/1;DesignCut_HAIR_F_140/1;DesignCut_HAIR_F_141/1;DesignCut_HAIR_F_142/1;DesignCut_HAIR_F_143/1;DesignCut_HAIR_F_147/1;DesignCut_HAIR_F_148/1;","numArg1":3}},{"itemId":2500070,"className":"DESIGNCUT_PACKAGE_M_A","name":"Pocket Wig Package A (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"DesignCut_HAIR_M_134/1;DesignCut_HAIR_M_139/1;DesignCut_HAIR_M_144/1;","numArg1":3}},{"itemId":2500071,"className":"DESIGNCUT_PACKAGE_F_A","name":"Pocket Wig Package A (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"DesignCut_HAIR_F_133/1;DesignCut_HAIR_F_140/1;DesignCut_HAIR_F_148/1;","numArg1":3}},{"itemId":2500072,"className":"DESIGNCUT_PACKAGE_M_B","name":"Pocket Wig Package B (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"DesignCut_HAIR_M_132/1;DesignCut_HAIR_M_140/1;DesignCut_HAIR_M_142/1;","numArg1":3}},{"itemId":2500073,"className":"DESIGNCUT_PACKAGE_F_B","name":"Pocket Wig Package B (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"DesignCut_HAIR_F_134/1;DesignCut_HAIR_F_141/1;DesignCut_HAIR_F_143/1;","numArg1":3}},{"itemId":2500074,"className":"DESIGNCUT_PACKAGE_M_C","name":"Pocket Wig Package C (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"DesignCut_HAIR_M_133/1;DesignCut_HAIR_M_137/1;DesignCut_HAIR_M_141/1;","numArg1":3}},{"itemId":2500075,"className":"DESIGNCUT_PACKAGE_F_C","name":"Pocket Wig Package C (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"DesignCut_HAIR_F_135/1;DesignCut_HAIR_F_138/1;DesignCut_HAIR_F_142/1;","numArg1":3}},{"itemId":2500076,"className":"DESIGNCUT_PACKAGE_M_D","name":"Pocket Wig Package D (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"DesignCut_HAIR_M_125/1;DesignCut_HAIR_M_138/1;DesignCut_HAIR_M_143/1;","numArg1":3}},{"itemId":2500077,"className":"DESIGNCUT_PACKAGE_F_D","name":"Pocket Wig Package D (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"DesignCut_HAIR_F_126/1;DesignCut_HAIR_F_139/1;DesignCut_HAIR_F_147/1;","numArg1":3}},{"itemId":2500078,"className":"selectbox_costume_jp_kimono","name":"Kimono Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500079,"className":"2020_ARBORDAY_PACKAGE_All_TWN","name":"2020 Berry Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"2020_ARBORDAY_PACKAGE_BattleA/1;2020_ARBORDAY_PACKAGE_BattleB/1;Moru_Diamond_14d_Team_Lv430/2;","numArg1":3}},{"itemId":2500080,"className":"Special_Gift_Box_Leticia_2006_JPN","name":"2020 Leticia's Treasure Chest (Season 7)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"egg_gold_pig/1;CompanionExpcard400/3;"}},{"itemId":2500081,"className":"GLOBAL_SHINING_ANVIL_PACKAGE","name":"Great Boost Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Ruby_noCharge/3;GLOBAL_STEAM_Transcend_Scroll_8_PC/1;Card_Box_A/2;legend_reinforce_card_lv2/1;Legend_SlotOpen_Card/1;Ability_Point_Stone_10000_Premium/10;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Premium_Socket_Gold/3;Leticia_Siera/3;Leticia_Newcle/10","numArg1":3}},{"itemId":2500082,"className":"GLOBAL_selectbox_Seal_Boruta","name":"Boruta Seal Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500083,"className":"Special_Gift_Box_Leticia_2007_JPN","name":"2020 Leticia's Treasure Chest (Season 8)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_selectbox_Seal_Boruta/1;Seal_Material_Boruta/3;"}},{"itemId":2500084,"className":"Special_Gift_Box_Leticia_2006_Global","name":"2020 Leticia's Treasure Chest (Season 7)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Seal_Material_Boruta/3;GLOBAL_selectbox_Seal_Boruta/1;"}},{"itemId":2500085,"className":"GLOBAL_Package_A_2007_JPN","name":"Business-Class Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_STEAM_Transcend_Scroll_8_PC/1;Moru_Ruby_noCharge/3;GLOBAL_goldmoru_box_S_teamtrade/1;Legend_Enchant_Jewel_460/5;Extract_kit_Gold/3;Premium_Sandra_Glass/5;Premium_Sandra_Glass_1line/5;","numArg1":3}},{"itemId":2500086,"className":"GLOBAL_Package_B_2007_JPN","name":"Economy-Class Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Legend_Enchant_Jewel_460/5;Premium_Extract_kit_Sliver/5;Moru_Silver_TA/3;Premium_Master_Glass/10;","numArg1":3}},{"itemId":2500087,"className":"GLOBAL_Package_C_2007_JPN","name":"First-Class Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_Package_A_2007_JPN/1;GLOBAL_Package_B_2007_JPN/1;Moru_Diamond_14d_Team_Lv430/1;","numArg1":3}},{"itemId":2500088,"className":"GLOBAL_TWN_2008_Package_A","name":"Raid Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"WeeklyBossEnteredCountReset/5;Dungeon_Key01/30;Dungeon_Key02/10;Challenge_Reset_Box/3;Drung_Box_Elixer_Premium/5;"}},{"itemId":2500089,"className":"GLOBAL_TWN_2008_Package_B","name":"Arts Growth Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"HiddenAbility_Piece/10;Premium_item_transcendence_Stone/15;Ability_Point_Stone_10000/5;"}},{"itemId":2500090,"className":"GLOBAL_TWN_2008_Package_C","name":"Identification Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Leticia_Siera/2;Leticia_Newcle/5;Premium_Master_Glass/2;Premium_Mystic_Glass/5;Premium_Sandra_Glass/2;Premium_Sandra_Glass_1line/5;"}},{"itemId":2500091,"className":"GLOBAL_TWN_2008_Package_D","name":"Equipment Enhance Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Silver_Team_Trade/20;Moru_Gold_Team_Trade/10;Moru_Ruby_Charge/3;Transcend_Scroll_10_430/1;Moru_Diamond_14d_Team_Lv430/1;Old_Socket_Gold_Team/2;"}},{"itemId":2500092,"className":"GLOBAL_TWN_2008_Package_E","name":"Moonlight Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_gemExpStone12/3;Premium_awakeningStone_TA/10;premium_Abrasive_400/10;Legend_Enchant_Jewel_460/5;Premium_Sandra_Glass/10;Premium_Extract_kit_Sliver/30;Extract_kit_Gold/15;Selectbox_EventMoonlightWeapon_2/1;"}},{"itemId":2500093,"className":"GLOBAL_JP_Special_Gift_Box_Leticia_2008","name":"2020 Leticia's Treasure Chest (season7)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"egg_dionys/1;CompanionExpcard400/1;"}},{"itemId":2500094,"className":"GLOBAL_2020_S2_ARBORDAY_PACKAGE_Growth","name":"2020 Fresh Seed Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"2020_ARBORDAY_NECK05/1/Transcend/10/Reinforce_2/11;2020_ARBORDAY_BRC05/2/Transcend/10/Reinforce_2/11;Ability_Point_Stone_10000/5;Event_Drug_Alche_HP15_Premium/1000;Event_Drug_Alche_SP15_Premium/1000;Drug_RedApple20/200;Drug_BlueApple20/200;Premium_boostToken03/5;R_Steam_HP_Potion_1Day/10;R_Steam_SP_Potion_1Day/10;Adventure_Reward_Seed/30;Adventure_Goddess_Statue/30;Premium_indunReset/10;Adventure_dungeoncount_01/20;","numArg1":3}},{"itemId":2500095,"className":"GLOBAL_2020_S2_ARBORDAY_PACKAGE_BattleA","name":"2020 Fresh Sprout Package A","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Reinforce_100000coupon/100;Moru_Premium/30;Moru_Ruby_Charge/20;Premium_Socket_Gold/3;misc_gemExpStone11_Team/3;Transcend_Scroll_10_430/1;Leticia_Siera/3;Leticia_Newcle/10;Extract_kit_Gold_Team_nonEvent/10;","numArg1":3}},{"itemId":2500096,"className":"GLOBAL_2020_S2_ARBORDAY_PACKAGE_BattleB","name":"2020 Fresh Sprout Package B","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"HiddenAbility_Piece/20;Ability_Point_Stone_10000/3;Drug_AddMaxWeight3/1;Premium_RankReset/1;Premium_Reset_Package/1;Premium_StatReset/1;AbillityArts_Box_Total/1;","numArg1":3}},{"itemId":2500097,"className":"GLOBAL_2020_S2_ARBORDAY_PACKAGE_All","name":"2020 Fresh Berry Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_2020_S2_ARBORDAY_PACKAGE_Growth/1;GLOBAL_2020_S2_ARBORDAY_PACKAGE_BattleA/1;GLOBAL_2020_S2_ARBORDAY_PACKAGE_BattleB/1;Moru_Diamond_14d_Team_Lv430/5;","numArg1":3}},{"itemId":2500098,"className":"GLOBAL_Package_C_2007_TWN","name":"First-Class Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_Package_A_2007_JPN/1;GLOBAL_Package_B_2007_JPN/1;Drug_AddMaxWeight3/3;","numArg1":3}},{"itemId":2500099,"className":"GLOBAL_Package_A_2009_JPN","name":"September Growth Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"2020_ARBORDAY_NECK05/1/Transcend/10/Reinforce_2/11;2020_ARBORDAY_BRC05/2/Transcend/10/Reinforce_2/11;Ability_Point_Stone_10000/5;Event_Drug_Alche_HP15_Premium/1000;Event_Drug_Alche_SP15_Premium/1000;Drug_RedApple20/30;Drug_BlueApple20/30;Premium_boostToken02/9;Adventure_Reward_Seed/30;Adventure_Goddess_Statue/30;","numArg1":3}},{"itemId":2500100,"className":"GLOBAL_Package_B_2009_JPN","name":"September Get Ready Package A","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/30;PREMIUM_CHALLENG_PORTAL_TEAM/30;Premium_indunReset/10;Adventure_dungeoncount_01/20;Dungeon_Key01/100;AbillityArts_Box_Total/1;Premium_RankReset/1;Premium_Reset_Package/1;Premium_StatReset/1;","numArg1":3}},{"itemId":2500101,"className":"GLOBAL_Package_C_2009_JPN","name":"September All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_Package_A_2009_JPN/1;GLOBAL_Package_B_2009_JPN/1;Drug_AddMaxWeight3/5;","numArg1":3}},{"itemId":2500102,"className":"GLOBAL_JP_Special_Gift_Box_Leticia_2009","name":"2020 Leticia's Treasure Chest (Season 8)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Legend_card_boruta/1;legend_reinforce_card_lv1/1;legend_reinforce_card_lv2/1;legend_reinforce_card_lv3/1;legend_reinforce_card_lv4/1;"}},{"itemId":2500103,"className":"GLOBAL_TWN_Special_Gift_Box_Leticia_2009","name":"2020 Leticia's Treasure Chest (October)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"egg_pet_cadet_armadillo/1;CompanionExpcard400/3;"}},{"itemId":2500106,"className":"GLOBAL_Package_BLACKSMITH","name":"Blacksmith's Support Package ","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Ruby_noCharge/5;Premium_Socket_Gold/1;Legend_Enchant_Jewel_460/5;Premium_awakeningStone_TA/5;Abrasive_430/5;Moru_Premium/10;Event_Reinforce_100000coupon/50;","numArg1":3}},{"itemId":2500107,"className":"GLOBAL_Package_GODDESS","name":"Goddess' Support Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_expCard_430Lv/1;Event_JobexpCard_BOX/1;Legend_SlotOpen_Card_Team/1;Event_Drug_Alche_HP15_Premium/100;Event_Drug_Alche_SP15_Premium/100;Event_Drug_RedApple20/50;Event_Drug_BlueApple20/50;Premium_boostToken03/5;Premium_indunReset/20;Adventure_dungeoncount_01/30;Adventure_Reward_Seed/20;Adventure_Goddess_Statue/20;Premium_RankReset/1;","numArg1":3}},{"itemId":2500108,"className":"GLOBAL_Package_MASTER","name":"Master's Support Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_HiddenAbility_MasterPiece/1;Ability_Point_Stone_10000_Premium/5;Premium_SkillReset/1;Premium_Abillitypoint/1;","numArg1":3}},{"itemId":2500109,"className":"GLOBAL_TWN_2020_S2_ARBORDAY_PACKAGE_All","name":"2020 Fresh Berry Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_2020_S2_ARBORDAY_PACKAGE_Growth/1;GLOBAL_2020_S2_ARBORDAY_PACKAGE_BattleA/1;GLOBAL_2020_S2_ARBORDAY_PACKAGE_BattleB/1;GLOBAL_TWN_Yellow_Watermelon_Box/1;","numArg1":3}},{"itemId":2500110,"className":"GLOBAL_JP_2020_10_ARTS_PACKAGE","name":"October Arts Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"HiddenAbility_Piece/25;Ability_Point_Stone_10000/5;AbillityArts_Box_Total/1;","numArg1":3}},{"itemId":2500111,"className":"GLOBAL_JP_2020_10_BATTLE_PACKAGE","name":"October Get Ready Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/20;PREMIUM_CHALLENG_PORTAL_TEAM/20;Dungeon_Key01/25;Dungeon_Key02/50;ChallengeExpertModeCountUp_NoTrade/10;EP12_EXPERT_MODE_MULTIPLE_NoTrade/10;uphill_multiple/6;rift_dungeon_multiple/6;","numArg1":3}},{"itemId":2500112,"className":"GLOBAL_JP_2020_10_LETICIA_BOX","name":"2020 Leticia's Treasure Chest (Season 9)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_Transcend_Scroll_9_440/5;","numArg1":3}},{"itemId":2500113,"className":"GLOBAL_select_transcend_Scroll_440","name":"[Lv.440] Transcendence Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500114,"className":"GLOBAL_TWN_2020_10_LETICIA_BOX","name":"2020 Leticia's Treasure Chest (Season 11)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeExpertModeCountUp/100;EP12_EXPERT_MODE_MULTIPLE/100;","numArg1":3}},{"itemId":2500115,"className":"GLOBAL_JP_2020_10_COCONE_GROWTH","name":"2020 Kokone Growth Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_expCard_430Lv/1;Event_JobexpCard_BOX/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Legend_SlotOpen_Card_Team/1;Class_Solution_Select_Box_Event/1;Event_Roulette_Baleuna_box_1/2;Event_Roulette_Baleuna_box_2/4;Premium_moneyBox/10;Ability_Point_Stone_10000/5;Event_Drug_Alche_HP15_Premium/1000;Event_Drug_Alche_SP15_Premium/1000;Drug_RedApple20/30;Drug_BlueApple20/30;Premium_boostToken02/9;Adventure_Reward_Seed/30;Adventure_Goddess_Statue/30;misc_pvp_mine2/50000;","numArg1":3}},{"itemId":2500116,"className":"GLOBAL_JP_2020_10_COCONE_BATTLE_A","name":"2020 Kokone Package A","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_indunReset_TA/30;Premium_dungeoncount_01/30;ChallengeModeReset_NoTrade/30;PREMIUM_CHALLENG_PORTAL_TEAM/30;Dungeon_Key01/40;Ancient_CardBook_ALL/50;","numArg1":3}},{"itemId":2500117,"className":"GLOBAL_JP_2020_10_COCONE_BATTLE_B","name":"2020 Kokone Package B","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Extract_kit_Gold/20;Premium_Sandra_Glass/20;Premium_Sandra_Glass_1line/10;Leticia_Siera/5;Leticia_Newcle/5;Legend_Enchant_Jewel_460/7;","numArg1":3}},{"itemId":2500118,"className":"GLOBAL_JP_2020_10_COCONE_ALL","name":"2020 Kokone All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_JP_2020_10_COCONE_GROWTH/1;GLOBAL_JP_2020_10_COCONE_BATTLE_A/1;GLOBAL_JP_2020_10_COCONE_BATTLE_B/1;Drug_AddMaxWeight3/3;Premium_RankReset/1;egg_pet_thankgiving_sparrow/1;Premium_Reset_Package/1;AbillityArts_Box_Total/3;Premium_StatReset/1;","numArg1":3}},{"itemId":2500119,"className":"GLOBAL_Pacakage_Lunar_1","name":"Half Moon Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_expCard_430Lv/1;Event_JobexpCard_BOX/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Legend_SlotOpen_Card_Team/1;Class_Solution_Select_Box_Event/1;Event_Roulette_Baleuna_box_1/2;Event_Roulette_Baleuna_box_2/4;Premium_moneyBox/10;Ability_Point_Stone_10000/5;Event_Drug_Alche_HP15_Premium/1000;Event_Drug_Alche_SP15_Premium/1000;Drug_RedApple20/30;Drug_BlueApple20/30;Premium_boostToken02/9;Adventure_Reward_Seed/30;Adventure_Goddess_Statue/30;misc_pvp_mine2/50000;","numArg1":3}},{"itemId":2500120,"className":"GLOBAL_Pacakage_Lunar_2","name":"Crescent Moon Package A","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_indunReset/40;ChallengeModeReset_NoTrade/30;ChallengeExpertModeCountUp_NoTrade/15;Dungeon_Key01/100;uphill_multiple/3;rift_dungeon_multiple/3;","numArg1":3}},{"itemId":2500121,"className":"GLOBAL_Pacakage_Lunar_3","name":"Crescent Moon Package B","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Premium/30;Moru_Ruby_Charge/10;Event_Reinforce_100000coupon/1000;GLOBAL_Transcend_Scroll_9_440/1;Ancient_CardBook_ALL/50;Drug_AddMaxWeight3/10;Premium_RankReset/1;Premium_Reset_Package/1;Premium_StatReset/1;AbillityArts_Box_Total/3;","numArg1":3}},{"itemId":2500122,"className":"GLOBAL_Pacakage_Lunar_4","name":"Full Moon Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_Pacakage_Lunar_1/1;GLOBAL_Pacakage_Lunar_2/1;GLOBAL_Pacakage_Lunar_3/1;Moru_Diamond_14d_Team_Lv430/3;egg_pet_thankgiving_sparrow/1;2020_ARBORDAY_NECK05/1/Transcend/10/Reinforce_2/11;2020_ARBORDAY_BRC05/2/Transcend/10/Reinforce_2/11;","numArg1":3}},{"itemId":2500123,"className":"GLOBAL_JP_2020_11_LETICIA_BOX","name":"2020 Leticia's Treasure Chest (Season 10)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeExpertModeCountUp/150;EP12_EXPERT_MODE_MULTIPLE/50;","numArg1":3}},{"itemId":2500124,"className":"GLOBAL_TWN_2020_11_LUNAR_PACKAGE_GROWTH","name":"Half Moon Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_expCard_430Lv/1;Event_JobexpCard_BOX/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Legend_SlotOpen_Card_Team/1;Class_Solution_Select_Box_Event/1;Event_Roulette_Baleuna_box_1/2;Event_Roulette_Baleuna_box_2/4;Premium_moneyBox/10;Ability_Point_Stone_10000/5;Event_Drug_Alche_HP15_Premium/1000;Event_Drug_Alche_SP15_Premium/1000;Drug_RedApple20/30;Drug_BlueApple20/30;Premium_boostToken02/9;Adventure_Reward_Seed/30;Adventure_Goddess_Statue/30;misc_pvp_mine2/50000;","numArg1":3}},{"itemId":2500125,"className":"GLOBAL_TWN_2020_11_LUNAR_PACKAGE_BATTLE_A","name":"Crescent Moon Package A","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_indunReset/40;ChallengeModeReset_NoTrade/30;ChallengeExpertModeCountUp_NoTrade/15;Dungeon_Key01/100;uphill_multiple/3;rift_dungeon_multiple/3;","numArg1":3}},{"itemId":2500126,"className":"GLOBAL_TWN_2020_11_LUNAR_PACKAGE_BATTLE_B","name":"Crescent Moon Package B","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Premium/30;Moru_Ruby_Charge/10;Event_Reinforce_100000coupon/1000;GLOBAL_Transcend_Scroll_9_440/1;Ancient_CardBook_ALL/50;Drug_AddMaxWeight3/10;Premium_RankReset/1;Premium_Reset_Package/1;Premium_StatReset/1;AbillityArts_Box_Total/3;","numArg1":3}},{"itemId":2500127,"className":"GLOBAL_TWN_2020_11_LUNAR_PACKAGE_ALL","name":"Full Moon Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_TWN_2020_11_LUNAR_PACKAGE_GROWTH/1;GLOBAL_TWN_2020_11_LUNAR_PACKAGE_BATTLE_A/1;GLOBAL_TWN_2020_11_LUNAR_PACKAGE_BATTLE_B/1;Moru_Diamond_14d_Team_Lv430/3;egg_pet_thankgiving_sparrow/1;2020_ARBORDAY_NECK05/1;2020_ARBORDAY_BRC05/2;","numArg1":3}},{"itemId":2500128,"className":"GLOBAL_JP_2020_11_2_LETICIA_BOX","name":"2020 Leticia's Treasure Chest (Season 11)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Piece_LegendMisc/5;misc_ore15/50;","numArg1":3}},{"itemId":2500129,"className":"GLOBAL_TWN_2020_11_LETICIA_BOX","name":"2020 Leticia's Treasure Chest (November)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"goldmoru_box_S/30;txbox_Ruby_Moru_cnt20/20;Premium_item_transcendence_Stone/100;","numArg1":3}},{"itemId":2500130,"className":"GLOBAL_Package_2020_11_1","name":"Abracadabra Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Ruby_Charge/10;Moru_Premium/20;Event_Reinforce_100000coupon/50;Legend_Enchant_Jewel_460/3;Premium_awakeningStone_TA/10;Abrasive_430/10;","numArg1":3}},{"itemId":2500131,"className":"GLOBAL_Package_2020_11_2","name":"Open Sesame Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"SoloRaidCntReset_TP/3;rift_dungeon_multiple/3;uphill_multiple/3;misc_0530/20;Dungeon_Key02/30;Dungeon_Key01/200;Drug_RedApple20/100;Drug_BlueApple20/100;Adventure_Reward_Seed/20;Adventure_Goddess_Statue/20;","numArg1":3}},{"itemId":2500133,"className":"GLOBAL_TWN_Package_2020_12_1","name":"Abracadabra Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Ruby_Charge/10;Moru_Premium/20;Event_Reinforce_100000coupon/50;Legend_Enchant_Jewel_460/3;Premium_awakeningStone_TA/10;Abrasive_430/10;","numArg1":3}},{"itemId":2500134,"className":"GLOBAL_TWN_Package_2020_12_2","name":"Open Sesame Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"SoloRaidCntReset_TP/3;rift_dungeon_multiple/3;uphill_multiple/3;misc_0530/20;Dungeon_Key02/30;Dungeon_Key01/200;Drug_RedApple20/100;Drug_BlueApple20/100;Adventure_Reward_Seed/20;Adventure_Goddess_Statue/20;","numArg1":3}},{"itemId":2500135,"className":"GLOBAL_JPN_GROWTH_PACKAGE_2020_12","name":"December Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_expCard_430Lv/1;Event_JobexpCard_BOX/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Legend_SlotOpen_Card_Team/1;Class_Solution_Select_Box_Event/1;Ability_Point_Stone_10000/10;Event_Drug_Alche_HP15_Premium/250;Event_Drug_Alche_SP15_Premium/250;Drug_RedApple20/30;Drug_BlueApple20/30;Premium_boostToken03/6;Adventure_Reward_Seed/30;Adventure_Goddess_Statue/30;Drug_AddMaxWeight3/2;Event_Coin_Ticket_5000/6;","numArg1":3}},{"itemId":2500136,"className":"GLOBAL_JPN_BATTLE_PACKAGE_A_2020_12","name":"December Package A","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/20;PREMIUM_CHALLENG_PORTAL_TEAM/20;uphill_multiple/5;rift_dungeon_multiple/5;SoloRaidCntReset_Team/10;randombox_AssistorCard/10;","numArg1":3}},{"itemId":2500137,"className":"GLOBAL_JPN_BATTLE_PACKAGE_B_2020_12","name":"December Package B","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Ruby_Charge/20;Moru_Premium/50;Event_Reinforce_100000coupon/25;Premium_awakeningStone/20;Abrasive_430/20;","numArg1":3}},{"itemId":2500138,"className":"GLOBAL_JPN_AIO_PACKAGE_2020_12","name":"December All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_JPN_GROWTH_PACKAGE_2020_12/1;GLOBAL_JPN_BATTLE_PACKAGE_A_2020_12/1;GLOBAL_JPN_BATTLE_PACKAGE_B_2020_12/1;Moru_Diamond_30d_Team_Lv450/3;egg_pet_winter_rabbit/1;CompanionExpcard400/1;","numArg1":3}},{"itemId":2500139,"className":"GLOBAL_BUNNY_HOP_PACKAGE","name":"Bunny Hop","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_expCard_440Lv/1;Event_JobexpCard_BOX/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Legend_SlotOpen_Card_Team/1;Class_Solution_Select_Box_Event/1;Premium_RankReset/1;Premium_boostToken03/5;Ability_Point_Stone_10000/5;Adventure_Reward_Seed/50;Adventure_Goddess_Statue/50;Event_Drug_Alche_HP15_Premium/500;Event_Drug_Alche_SP15_Premium/500;Event_Coin_Ticket_5000/10;"}},{"itemId":2500140,"className":"GLOBAL_RABBIT_HOLE_PACKAGE","name":"Rabbit Hole","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/90;Dungeon_Key01/50;uphill_multiple/3;rift_dungeon_multiple/3","numArg1":3}},{"itemId":2500141,"className":"GLOBAL_CHROME_RABBIT_PACKAGE","name":"Chrome Rabbit","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Ruby_noCharge/20;Moru_Gold_TA_NR/40;Event_Reinforce_100000coupon/100;Extract_kit_Gold/3;Team_Legend_Enchant_Jewel_460/3;","numArg1":3}},{"itemId":2500142,"className":"GLOBAL_RABBIT_FAMILY_PACKAGE","name":"Rabbit Family","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_BUNNY_HOP_PACKAGE/1;GLOBAL_RABBIT_HOLE_PACKAGE/1;GLOBAL_CHROME_RABBIT_PACKAGE/1;Moru_Diamond_30d_Team_Lv450/3;egg_pet_winter_rabbit/1;","numArg1":3}},{"itemId":2500143,"className":"Gacha_HairAcc_ReSale001_M_2_JP","name":"2021 Lucky Pouch Cube (Male)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_001_M_2_JP","numArg1":1}},{"itemId":2500144,"className":"Gacha_HairAcc_ReSale010_M_2_JP","name":"2021 Lucky Pouch Cube (Male) x10 +1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_001_M_2_JP","numArg1":10}},{"itemId":2500145,"className":"Gacha_HairAcc_ReSale001_F_2_JP","name":"2021 Lucky Pouch Cube (Female)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_001_F_2_JP","numArg1":1}},{"itemId":2500146,"className":"Gacha_HairAcc_ReSale010_F_2_JP","name":"2021 Lucky Pouch Cube (Female) x10 +1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"GACHA_HAIRACC_ReSale_001_F_2_JP","numArg1":10}},{"itemId":2500147,"className":"PC_GoldMoru_Box_S_GLOBAL","name":"[PP] Shining Advanced Golden Anvil Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GOLD_MOUR_BOX_TEAM_TRADE_GIVE_ITEM","strArg":"Moru_Gold_TA_NR_Team_Trade","numArg1":30}},{"itemId":2500148,"className":"GLOBAL_JP_2021_NEWYEAR_GROWTH_PACKAGE","name":"New Year Growth Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_expCard_430Lv/1;Event_JobexpCard_BOX/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Legend_SlotOpen_Card_Team/1;Class_Solution_Select_Box_Event/1;Ability_Point_Stone_10000/10;Event_Drug_Alche_HP15_Premium/700;Event_Drug_Alche_SP15_Premium/700;Drug_RedApple20/50;Drug_BlueApple20/50;Premium_boostToken03/5;Adventure_Reward_Seed/20;Adventure_Goddess_Statue/20;randombox_AssistorCard/10;Event_Coin_Ticket_5000/5;","numArg1":3}},{"itemId":2500149,"className":"GLOBAL_JP_2021_NEWYEAR_BATTLE_PACKAGE","name":"New Year Get Ready Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/30;PREMIUM_CHALLENG_PORTAL_TEAM/30;uphill_multiple/5;rift_dungeon_multiple/5;ChallengeExpertModeCountUp_NoTrade/10;EP12_EXPERT_MODE_MULTIPLE_NoTrade/10;","numArg1":3}},{"itemId":2500150,"className":"GLOBAL_JP_2021_NEWYEAR_AIO_PACKAGE","name":"New Year All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_JP_2021_NEWYEAR_GROWTH_PACKAGE/1;GLOBAL_JP_2021_NEWYEAR_BATTLE_PACKAGE/1;Drug_AddMaxWeight3/5;Moru_Diamond_30d_Team_Lv450/5;","numArg1":3}},{"itemId":2500151,"className":"GLOBAL_TWN_PANDA_WEAPON_PACKAGE","name":"Panda Weapon Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_gemExpStone12/3;Premium_awakeningStone_TA/5;premium_Abrasive_400/5;Legend_Enchant_Jewel_460/5;Premium_Sandra_Glass/10;Premium_Extract_kit_Sliver/30;Extract_kit_Gold/20;2020_ARBORDAY_NECK05/1/Transcend/10/Reinforce_2/11;2020_ARBORDAY_BRC05/2/Transcend/10/Reinforce_2/11;Event_Roulette_Baleuna_box_1/2;Event_Roulette_Baleuna_box_2/4;","numArg1":3}},{"itemId":2500152,"className":"GLOBAL_TWN_PANDA_GROWTH_PACKAGE","name":"Panda Growth Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"HiddenAbility_Piece/20;Ability_Point_Stone_10000/2;Drug_AddMaxWeight3/5;Premium_RankReset/1;AbillityArts_Box_Total/1;Drug_RedApple20/200;Drug_BlueApple20/200;Premium_boostToken03/5;Adventure_Reward_Seed/30;Adventure_Goddess_Statue/30;","numArg1":3}},{"itemId":2500153,"className":"GLOBAL_TWN_PANDA_BATTLE_PACKAGE","name":"Panda Battle Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_indunReset/40;ChallengeModeReset_NoTrade/30;ChallengeExpertModeCountUp_NoTrade/20;Dungeon_Key01/100;uphill_multiple/3;rift_dungeon_multiple/3;Event_Coin_Ticket_5000/10;Event_Reinforce_100000coupon/100;","numArg1":3}},{"itemId":2500154,"className":"GLOBAL_TWN_PANDA_AIO_PACKAGE","name":"Panda All-in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_TWN_PANDA_WEAPON_PACKAGE/1;GLOBAL_TWN_PANDA_GROWTH_PACKAGE/1;GLOBAL_TWN_PANDA_BATTLE_PACKAGE/1;egg_pet_twnpanda/1;Legend_SlotOpen_Card_Team/1;Class_Solution_Select_Box_Event/1;Legend_Card_Envelope_JP/1;","numArg1":3}},{"itemId":2500155,"className":"GLOBAL_HOLY_COW_PACKAGE","name":"Holy Cow!","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_expCard_440Lv/1;Event_JobexpCard_BOX/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Legend_SlotOpen_Card_Team/1;Class_Solution_Select_Box_Event/1;Premium_RankReset/3;Ability_Point_Stone_10000/5;Event_Drug_Alche_HP15_Premium/500;Event_Drug_Alche_SP15_Premium/500;Event_Coin_Ticket_5000/10;Event_Roulette_Baleuna_box_1/2;Event_Roulette_Baleuna_box_2/4;Premium_SkillReset_Trade/3;Premium_Abillitypoint_TP/3;Premium_StatReset_Trade/3;egg_pet_thankgiving_sparrow/1;","numArg1":3}},{"itemId":2500156,"className":"GLOBAL_COW_HORN_PACKAGE","name":"Bull by Horns","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_indunReset_TA/10;Premium_dungeoncount_01/20;Premium_boostToken03/3;Adventure_Reward_Seed/50;Adventure_Goddess_Statue/50;event1909_ricecake_king/6;Event_GLOBAL_210126_1/6;Ancient_boostToken/3;","numArg1":3}},{"itemId":2500157,"className":"GLOBAL_COW_BEEF_PACKAGE","name":"Beef Up","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Ruby_noCharge/5;Moru_Gold_TA_NR/10;Event_Reinforce_100000coupon/50;Legend_Enchant_Jewel_460/5;Unique_Enchant_Jewel_440/10;Premium_awakeningStone_TA/10;premium_Abrasive_430/10;","numArg1":3}},{"itemId":2500158,"className":"GLOBAL_JPN_2021_02_LETICIA_BOX","name":"Lv7 Boruta Card Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Summon_Cardbook_Box/9;card_Xpupkit10/47;legend_reinforce_card_lv3/2;card_Xpupkit02_event/16;card_Xpupkit01_100/36;Legendcard_Leticia/5/ItemExp/60;Legendcard_Leticia/4/ItemExp/130;Legendcard_Leticia/2/ItemExp/230;Legend_card_boruta/1;","numArg1":3}},{"itemId":2500160,"className":"GLOBAL_TWN_2102_WEB_GACHA_CUBE","name":"WebGatcha Count Reward Bonus Cube (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"GACHA_HAIRACC_WebGacha_001_TWN","numArg1":1}},{"itemId":2500161,"className":"GLOBAL_JP_2021_02_GROWTH_PACKAGE","name":"2021 February Grow Up Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Seal_2021_NewYear/1;Jumping_expCard_450Lv/1;Event_JobexpCard_BOX/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Legend_SlotOpen_Card_Team/1;Class_Solution_Select_Box_Event/1;Premium_RankReset/1;Premium_boostToken03/5;Premium_moneyBox/10;Ability_Point_Stone_10000/10;Event_170119_2/30;Adventure_Reward_Seed/50;Adventure_Goddess_Statue/50;Drug_RedApple20/50;Drug_BlueApple20/50;Event_Drug_Alche_HP15_Premium/500;Event_Drug_Alche_SP15_Premium/500;","numArg1":3}},{"itemId":2500162,"className":"GLOBAL_JP_2021_02_BATTLE_A_PACKAGE","name":"2021 February Ready for Battle Package A","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Moringponia_Easy/5;Ticket_Glacier_Easy/5;SoloRaidCntReset_Team/3;ChallengeModeReset_NoTrade/25;Dungeon_Key01/30;Dungeon_Key02/15;","numArg1":3}},{"itemId":2500163,"className":"GLOBAL_JP_2021_02_BATTLE_B_PACKAGE","name":"2021 February Ready for Battle Package B","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"randombox_AssistorCard/5;Old_Socket_Gold_Team/3;Moru_Premium/50;Moru_Ruby_Charge/20;Magic_Scroll_Box4/2;HiddenAbility_Piece/100;Event_Reinforce_100000coupon/500;Drug_RedApple20/1000;Drug_BlueApple20/1000;","numArg1":3}},{"itemId":2500164,"className":"GLOBAL_JP_2021_02_AIO_PACKAGE","name":"2021 February All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_JP_2021_02_GROWTH_PACKAGE/1;GLOBAL_JP_2021_02_BATTLE_A_PACKAGE/1;GLOBAL_JP_2021_02_BATTLE_B_PACKAGE/1;Moru_Diamond_30d_Team_Lv450/5;","numArg1":3}},{"itemId":2500165,"className":"GLOBAL_STM_LUNAR_NEW_JUMP","name":"Best Wishes Jumping Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Seal_2021_NewYear/1;Jumping_expCard_450Lv/1;Premium_indunReset/20;Adventure_dungeoncount_01/40;Event_JobexpCard_BOX/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Legend_SlotOpen_Card_Team/1;Class_Solution_Select_Box_Event/1;Premium_RankReset/1;Premium_boostToken03/5;Ability_Point_Stone_10000/10;Adventure_Reward_Seed/25;Adventure_Goddess_Statue/25;Drug_RedApple20/50;Drug_BlueApple20/50;Event_Drug_Alche_HP15_Premium/500;Event_Drug_Alche_SP15_Premium/500;","numArg1":3}},{"itemId":2500166,"className":"GLOBAL_STM_LUNAR_NEW_CHALLENGE","name":"Best Wishes Entry Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/15;ChallengeExpertModeCountUp_NoTrade/10;EP12_EXPERT_MODE_MULTIPLE_NoTrade/10;Premium_indunReset/20;Adventure_dungeoncount_01/40;","numArg1":3}},{"itemId":2500167,"className":"GLOBAL_STM_LUNAR_NEW_Preparation","name":"Best Wishes Standby Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"randombox_AssistorCard/5;Drug_AddMaxWeight3/5;Transcend_Scroll_10_430/1;Old_Socket_Gold_Team/3;Magic_Scroll_Box4/3;Ticket_Moringponia_Easy_7d/15;Ticket_Glacier_Easy_7d/15;Dungeon_Key01/50;Dungeon_Key02/20;Moru_Premium/50;Moru_Ruby_Charge/20;HiddenAbility_Piece/100;Event_Reinforce_100000coupon/500;Drug_RedApple20/1000;Drug_BlueApple20/1000;","numArg1":3}},{"itemId":2500168,"className":"GLOBAL_STM_LUNAR_NEW_ALL_IN_ONE","name":"Best Wishes All-in-One Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_STM_LUNAR_NEW_JUMP/1;GLOBAL_STM_LUNAR_NEW_CHALLENGE/1;GLOBAL_STM_LUNAR_NEW_Preparation/1;Moru_Diamond_30d_Team_Lv450/3;","numArg1":3}},{"itemId":2500169,"className":"GLOBAL_STM_LUNAR_NEW_MAGNIFIER","name":"Best Wishes Magnifier Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_Sandra_Glass/15;Premium_Sandra_Glass_1line/30;Premium_Mystic_Glass/50;Leticia_Newcle/3;Leticia_Siera/3;","numArg1":3}},{"itemId":2500170,"className":"GLOBAL_TWN_LUNAR_NEW_Preparation","name":"Best Wishes Standby Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"randombox_AssistorCard/5;Drug_AddMaxWeight3/5;Transcend_Scroll_10_430/1;Old_Socket_Gold_Team/3;Magic_Scroll_Box4/3;Ticket_Moringponia_Easy/15;Ticket_Glacier_Easy/15;Dungeon_Key01/50;Dungeon_Key02/20;Moru_Premium/50;Moru_Ruby_Charge/20;HiddenAbility_Piece/100;Event_Reinforce_100000coupon/500;Drug_RedApple20/1000;Drug_BlueApple20/1000;","numArg1":3}},{"itemId":2500172,"className":"GLOBAL_STM_SPROUTING_CLOVER","name":"Sprouting Clover Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Seal_2021_NewYear/1;Jumping_expCard_450Lv/1;2021_NewYear_Disnai_Weapon_box/1;2021_NewYear_Disnai_SubWeapon_box/1;2021_NewYear_Disnai_Armor_box/4;vibora_Vision_Select_Box_NoTrade/2;2021_SetOption_Scroll_Weapon_440Lv/2;2021_SetOption_Scroll_Armor_440Lv/4;Event_JobexpCard_BOX/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Legend_SlotOpen_Card_Team/1;Class_Solution_Select_Box_Event/1;Premium_RankReset/1;Premium_boostToken03/5;Premium_moneyBox/10;Ability_Point_Stone_10000/10;Event_170119_2/30;Adventure_Reward_Seed/50;Adventure_Goddess_Statue/50;Drug_RedApple20/50;Drug_BlueApple20/50;Event_Drug_Alche_HP15_Premium/500;Event_Drug_Alche_SP15_Premium/500;","numArg1":3}},{"itemId":2500173,"className":"GLOBAL_STM_CHALLENGING_CLOVER","name":"Challenging Clover Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/30;ChallengeExpertModeCountUp_NoTrade/10;EP12_EXPERT_MODE_MULTIPLE_NoTrade/10;Premium_indunReset/15;Adventure_dungeoncount_01/30;uphill_multiple/3;rift_dungeon_multiple/3;","numArg1":3}},{"itemId":2500174,"className":"GLOBAL_STM_HAPPY_CLOVER","name":"Happy Clover Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"randombox_AssistorCard/5;Transcend_Scroll_10_430/1;Ticket_Glacier_Easy/15;Ticket_Moringponia_Easy/15;Dungeon_Key01/50;Dungeon_Key02/20;Leticia_Siera/3;Leticia_Newcle/10;HiddenAbility_Piece/100;SoloRaidCntReset_TP/3;Magic_Scroll_Box4/3;Drug_RedApple20/1000;Drug_BlueApple20/1000;","numArg1":3}},{"itemId":2500175,"className":"GLOBAL_STM_ALL_IN_ONE_CLOVER","name":"Clover All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_STM_SPROUTING_CLOVER/1;GLOBAL_STM_CHALLENGING_CLOVER/1;GLOBAL_STM_HAPPY_CLOVER/1;Moru_Diamond_30d_Team_Lv450/3;","numArg1":3}},{"itemId":2500176,"className":"GLOBAL_JPN_2103_PACKAGE_GROWTH","name":"2021 March Grow Up Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Jumping_expCard_450Lv/1;2021_NewYear_Disnai_Weapon_box/1;2021_NewYear_Disnai_SubWeapon_box/1;2021_NewYear_Disnai_Armor_box/4;vibora_Vision_Select_Box_NoTrade/2;2021_SetOption_Scroll_Armor_440Lv/4;2021_SetOption_Scroll_Weapon_440Lv/2;Event_JobexpCard_BOX/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Legend_SlotOpen_Card_Team/1;Class_Solution_Select_Box_Event/1;Premium_RankReset/1;Premium_SkillReset/1;Premium_StatReset/1;Premium_Abillitypoint/1;AbillityArts_Box_Total/1;Premium_boostToken03/5;Ability_Point_Stone_10000/30;Adventure_Reward_Seed/30;Adventure_Goddess_Statue/30;Drug_RedApple20/25;Drug_BlueApple20/25;Event_Drug_Alche_HP15_Premium/250;Event_Drug_Alche_SP15_Premium/250;","numArg1":3}},{"itemId":2500177,"className":"GLOBAL_JPN_2103_PACKAGE_BATTLE_A","name":"2021 March Ready for Battle Package A","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeExpertModeCountUp_NoTrade/5;EP12_EXPERT_MODE_MULTIPLE_NoTrade/5;Premium_indunReset/15;ChallengeModeReset_NoTrade/10;Dungeon_Key01/15;Dungeon_Key02/5;","numArg1":3}},{"itemId":2500178,"className":"GLOBAL_JPN_2103_PACKAGE_BATTLE_B","name":"2021 March Ready for Battle Package B","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"randombox_AssistorCard/3;Drug_AddMaxWeight3/1;Moru_Premium/60;Moru_Ruby_Charge/25;Old_Socket_Gold_Team/2;Team_Legend_Enchant_Jewel_460/20;Premium_Sandra_Glass/10;Premium_Sandra_Glass_1line/20;Leticia_Siera/5;Leticia_Newcle/10;Magic_Scroll_Box4/5;","numArg1":3}},{"itemId":2500179,"className":"GLOBAL_JPN_2103_PACKAGE_AIO","name":"2021 March All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_JPN_2103_PACKAGE_GROWTH/1;GLOBAL_JPN_2103_PACKAGE_BATTLE_A/1;GLOBAL_JPN_2103_PACKAGE_BATTLE_B/1;Moru_Diamond_30d_Team_Lv450/3;","numArg1":3}},{"itemId":2500180,"className":"GLOBAL_TWN_CLOVER_PACKAGE_GROWTH","name":"Sprouting Clover Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Seal_2021_NewYear/1;Jumping_expCard_450Lv/1;2021_NewYear_Disnai_Weapon_box/1;2021_NewYear_Disnai_SubWeapon_box/1;2021_NewYear_Disnai_Armor_box/4;vibora_Vision_Select_Box_NoTrade/2;2021_SetOption_Scroll_Weapon_440Lv/2;2021_SetOption_Scroll_Armor_440Lv/4;Event_JobexpCard_BOX/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Legend_SlotOpen_Card_Team/1;Class_Solution_Select_Box_Event/1;Premium_RankReset/1;Premium_boostToken03/5;Premium_moneyBox/10;Ability_Point_Stone_10000/10;Event_170119_2/30;Adventure_Reward_Seed/50;Adventure_Goddess_Statue/50;Drug_RedApple20/50;Drug_BlueApple20/50;Event_Drug_Alche_HP15_Premium/500;Event_Drug_Alche_SP15_Premium/500;","numArg1":3}},{"itemId":2500181,"className":"GLOBAL_TWN_CLOVER_PACKAGE_BATTLE_A","name":"Challenging Clover Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/30;ChallengeExpertModeCountUp_NoTrade/10;EP12_EXPERT_MODE_MULTIPLE_NoTrade/10;Premium_indunReset/15;Adventure_dungeoncount_01/30;uphill_multiple/3;rift_dungeon_multiple/3;","numArg1":3}},{"itemId":2500182,"className":"GLOBAL_TWN_CLOVER_PACKAGE_BATTLE_B","name":"Happy Clover Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"randombox_AssistorCard/5;Transcend_Scroll_10_430/1;Ticket_Glacier_Easy/15;Ticket_Moringponia_Easy/15;Dungeon_Key01/50;Dungeon_Key02/20;Leticia_Siera/3;Leticia_Newcle/10;HiddenAbility_Piece/100;SoloRaidCntReset_TP/3;Magic_Scroll_Box4/3;Drug_RedApple20/1000;Drug_BlueApple20/1000;","numArg1":3}},{"itemId":2500183,"className":"GLOBAL_TWN_CLOVER_PACKAGE_AIO","name":"Clover All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_TWN_CLOVER_PACKAGE_GROWTH/1;GLOBAL_TWN_CLOVER_PACKAGE_BATTLE_A/1;GLOBAL_TWN_CLOVER_PACKAGE_BATTLE_B/1;Moru_Diamond_30d_Team_Lv450/3;","numArg1":3}},{"itemId":2500184,"className":"GLOBAL_JPN_2021_04_LETICIA_BOX","name":"Division Singularity Gigantic Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeExpertModeCountUp/111;EP12_EXPERT_MODE_MULTIPLE/111;","numArg1":3}},{"itemId":2500193,"className":"GLOBAL_JP_ARBORDAY_PACKAGE_1","name":"2021 Green Day Beginner Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Jumping_expCard_450Lv/1;Event_JobexpCard_BOX/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Class_Solution_Select_Box_Event/1;Premium_boostToken03/5;2021_ARBORDAY_NECK05/1/Transcend/10/Reinforce_2/11;2021_ARBORDAY_BRC05/2/Transcend/10/Reinforce_2/11;Drug_AddMaxWeight3/5;randombox_AssistorCard/4;Moru_Premium/5;Moru_Ruby_Charge/10;Event_Reinforce_100000coupon/250;Ability_Point_Stone_10000/5;Premium_indunReset/40;Adventure_Reward_Seed/40;Adventure_Goddess_Statue/40;Drug_RedApple20/50;Drug_BlueApple20/50;Event_Drug_Alche_HP15_Premium/500;Event_Drug_Alche_SP15_Premium/500;","numArg1":3}},{"itemId":2500194,"className":"GLOBAL_JP_ARBORDAY_PACKAGE_2","name":"2021 Green Day Expert Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"2021_ARBORDAY_NECK_Upgrade/1;2021_ARBORDAY_BRC_Upgrade/2;randombox_AssistorCard/10;Moru_Premium/10;Moru_Ruby_Charge/20;Transcend_Scroll_10_450/1;Event_Reinforce_100000coupon/500;","numArg1":3}},{"itemId":2500195,"className":"GLOBAL_JP_ARBORDAY_PACKAGE_3","name":"2021 Green Day Arts Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_HiddenAbility_MasterPiece/10;Arts_Ability_Coupon/10;AbillityArts_Box_Total/1;","numArg1":3}},{"itemId":2500196,"className":"GLOBAL_JP_ARBORDAY_PACKAGE_4","name":"2021 Green Day Get Ready Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_Sandra_Glass/20;Premium_Sandra_Glass_1line/40;Extract_kit_Gold_Team_nonEvent/10;Leticia_Siera/10;Leticia_Newcle/20;","numArg1":3}},{"itemId":2500197,"className":"GLOBAL_JP_ARBORDAY_PACKAGE_5","name":"2021 Green Day Premium Beginner Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_JP_ARBORDAY_PACKAGE_1/1;GLOBAL_JP_ARBORDAY_PACKAGE_3/1;GLOBAL_JP_ARBORDAY_PACKAGE_4/1;Drug_AddMaxWeight3/10;egg_pet_arborday_rabbit/1;","numArg1":3}},{"itemId":2500198,"className":"GLOBAL_JP_ARBORDAY_PACKAGE_6","name":"2021 Green Day Expert Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_JP_ARBORDAY_PACKAGE_2/1;GLOBAL_JP_ARBORDAY_PACKAGE_3/1;GLOBAL_JP_ARBORDAY_PACKAGE_4/1;Drug_AddMaxWeight3/5;egg_pet_arborday_rabbit/1;Moru_Diamond_30d_Team_Lv450/3;","numArg1":3}},{"itemId":2500199,"className":"GLOBAL_STM_ARBORDAY_OAK_PACKAGE","name":"Arbor Day Oak Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"2021_ARBORDAY_NECK05/1/Transcend/10/Reinforce_2/11;2021_ARBORDAY_BRC05/2/Transcend/10/Reinforce_2/11;Seal_2021_NewYear/1;GLOBAL_Blessed_Fruit/10;Premium_Sandra_Glass/10;Premium_Sandra_Glass_1line/20;Premium_SkillReset_Trade/1;Premium_Abillitypoint_TP/1;Premium_StatReset_Trade/1;Jumping_expCard_450Lv/1;Event_JobexpCard_BOX/1;2021_NewYear_Disnai_Weapon_box/1;2021_NewYear_Disnai_SubWeapon_box/1;2021_NewYear_Disnai_Armor_box/4;vibora_Vision_Select_Box_NoTrade/2;2021_SetOption_Scroll_Weapon_440Lv/2;2021_SetOption_Scroll_Armor_440Lv/4;Event_Coin_Ticket_5000/10;Class_Solution_Select_Box_Event/1;Premium_RankReset/1;Premium_boostToken03/5;Premium_moneyBox/10;Ability_Point_Stone_10000/50;Adventure_Reward_Seed/50;Adventure_Goddess_Statue/50;Drug_RedApple20/100;Drug_BlueApple20/100;Event_Drug_Alche_HP15_Premium/300;Event_Drug_Alche_SP15_Premium/300;","numArg1":3}},{"itemId":2500200,"className":"GLOBAL_STM_ARBORDAY_CHESTNUT_PACKAGE","name":"Arbor Day Chestnut Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"2021_ARBORDAY_NECK_Upgrade/1;2021_ARBORDAY_BRC_Upgrade/2;GLOBAL_Blessed_Fruit/20;AbillityArts_Box_Total/1;Moru_Premium/30;Moru_Ruby_Charge/50;Event_Reinforce_100000coupon/500;","numArg1":3}},{"itemId":2500201,"className":"GLOBAL_STM_ARBORDAY_CHERRY_PACKAGE","name":"Arbor Day Cherry Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"randombox_AssistorCard/10;Ancient_boostToken/20;Drug_AddMaxWeight3/10;Event_HiddenAbility_MasterPiece/30;Arts_Ability_Coupon/30;Legend_Enchant_Jewel_460/20;Premium_awakeningStone_TA/30;premium_Abrasive_430/30;","numArg1":3}},{"itemId":2500202,"className":"GLOBAL_STM_ARBORDAY_WOODLAND_PACKAGE","name":"Bunny's Oak Cherry Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_STM_ARBORDAY_OAK_PACKAGE/1;GLOBAL_STM_ARBORDAY_CHERRY_PACKAGE/1;Moru_Diamond_30d_Team_Lv450/3;egg_pet_arborday_rabbit/1;","numArg1":3}},{"itemId":2500203,"className":"GLOBAL_JPN_SATUKI_NEWBIE_PACKAGE","name":"2021 Satsuki Beginner Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Jumping_expCard_450Lv/1;Event_JobexpCard_BOX/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Class_Solution_Select_Box_Event/1;Premium_boostToken03/5;Drug_AddMaxWeight3/5;randombox_AssistorCard/4;ChallengeModeReset_NoTrade/10;Ability_Point_Stone_10000/10;Premium_indunReset/10;Adventure_Reward_Seed/20;Adventure_Goddess_Statue/20;Event_HiddenAbility_MasterPiece/4;AbillityArts_Box_Total/4;Drug_RedApple20/40;Drug_BlueApple20/40;Event_Drug_Alche_HP15_Premium/400;Event_Drug_Alche_SP15_Premium/400;","numArg1":3}},{"itemId":2500204,"className":"GLOBAL_JPN_SATUKI_INCHANT_PACKAGE","name":"2021 Satssuki Ichor Enchant Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Extract_kit_Gold_Team_nonEvent/10;Premium_Sandra_Glass/15;Premium_Sandra_Glass_1line/15;Team_Legend_Enchant_Jewel_460/10;Leticia_Siera/20;Leticia_Newcle/30;","numArg1":3}},{"itemId":2500205,"className":"GLOBAL_JPN_SATUKI_BATTLE_A_PACKAGE","name":"2021 Satsuki Get Ready A Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/20;Dungeon_Key01/40;Ticket_Glacier_Easy/5;Ticket_Moringponia_Easy/5;Drug_Looting_Potion_500/10;randombox_AssistorCard/2;","numArg1":3}},{"itemId":2500206,"className":"GLOBAL_JPN_SATUKI_BATTLE_B_PACKAGE","name":"2021 Satsuki Get Ready B Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeExpertModeCountUp_NoTrade/10;EP12_EXPERT_MODE_MULTIPLE_NoTrade/10;Dungeon_Key02/20;SoloRaidCntReset_Team/10;Drug_Looting_Potion_500/10;Drug_AddMaxWeight3/1;","numArg1":3}},{"itemId":2500207,"className":"GLOBAL_JPN_SATUKI_AIO_PACKAGE","name":"2021 Satsuki All-in-One Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_JPN_SATUKI_NEWBIE_PACKAGE/1;GLOBAL_JPN_SATUKI_INCHANT_PACKAGE/1;GLOBAL_JPN_SATUKI_BATTLE_A_PACKAGE/1;GLOBAL_JPN_SATUKI_BATTLE_B_PACKAGE/1;Drug_AddMaxWeight3/3;egg_pet_thankgiving_sparrow/1;Moru_Diamond_30d_Team_Lv450/5;","numArg1":3}},{"itemId":2500208,"className":"GLOBAL_JPN_PANDA_PACKAGE","name":"2021 Panda Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"egg_pet_twnpanda/1;Effect_Bamboo_twnpanda/1;wing_twnpanda/1;costume_Com_316/1;helmet_twnpanda/1;Hat_628383/1;Hat_628384/1;","numArg1":3}},{"itemId":2500209,"className":"GLOBAL_JPN_2021_06_LETICIA_BOX","name":"Lv3 Leticia Card Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Legendcard_Leticia/5/ItemExp/60;","numArg1":3}},{"itemId":2500210,"className":"TWN_DANO_NEWBIE_A_PACKAGE","name":"Cheerful Gift Box Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Jumping_expCard_450Lv/1;Event_JobexpCard_BOX/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Class_Solution_Select_Box_Event/1;2021_NewYear_Disnai_Weapon_box/1;2021_NewYear_Disnai_SubWeapon_box/1;2021_NewYear_Disnai_Armor_box/4;vibora_Vision_Select_Box_NoTrade/2;2021_SetOption_Scroll_Weapon_440Lv/2;2021_SetOption_Scroll_Armor_440Lv/4;Premium_boostToken03/5;Drug_AddMaxWeight3/5;randombox_AssistorCard/4;Ability_Point_Stone_10000/50;Adventure_Reward_Seed/50;Adventure_Goddess_Statue/50;Drug_RedApple20/100;Drug_BlueApple20/100;Event_Drug_Alche_HP15_Premium/800;Event_Drug_Alche_SP15_Premium/800;","numArg1":3}},{"itemId":2500211,"className":"TWN_DANO_NEWBIE_B_PACKAGE","name":"Joyful Gift Box Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"SelectBox_Glacier_MainWeapon_0505/1;SelectBox_Glacier_SubWeapon_0505/1;Event_Coin_Ticket_5000/10;Event_Roulette_Glacier_box_1/2;Dirbtumas_kit_Sliver/2;Event_Pamoca_Box/3;Ability_Point_Stone_10000/50;","numArg1":3}},{"itemId":2500212,"className":"TWN_DANO_BATTLE_PACKAGE","name":"Delightful Gift Box Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Mythic_Auto_Premium_NoTrade/70;Multiple_Token_MythicAuto_NoTrade/70;ChallengeModeReset_NoTrade/20;ChallengeExpertModeCountUp_NoTrade/20;EP12_EXPERT_MODE_MULTIPLE_NoTrade/20;Dungeon_Key01/300;SoloRaidCntReset_Team/20;","numArg1":3}},{"itemId":2500213,"className":"TWN_DANO_ARTS_PACKAGE","name":"Blissful Gift Box Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_HiddenAbility_MasterPiece/30;AbillityArts_Box_Total/5;Ability_Point_Stone_10000/100;randombox_AssistorCard/10;","numArg1":3}},{"itemId":2500214,"className":"TWN_DANO_AIO_PACKAGE","name":"All-in-One Gift Box Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"TWN_DANO_NEWBIE_A_PACKAGE/1;TWN_DANO_NEWBIE_B_PACKAGE/1;TWN_DANO_BATTLE_PACKAGE/1;TWN_DANO_ARTS_PACKAGE/1;","numArg1":3}},{"itemId":2500215,"className":"TWN_MOONLIT_NEWBIE_PACKAGE","name":"2021 Full Moon Newcomer Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Jumping_expCard_450Lv/1;Event_JobexpCard_BOX/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Class_Solution_Select_Box_Event/1;Premium_boostToken03/5;randombox_AssistorCard/4;Ability_Point_Stone_10000/20;Premium_indunReset/20;Adventure_dungeoncount_01/20;Adventure_Reward_Seed/20;Adventure_Goddess_Statue/20;Event_HiddenAbility_MasterPiece/4;AbillityArts_Box_Total/4;Drug_RedApple20/50;Drug_BlueApple20/50;Event_Drug_Alche_HP15_Premium/400;Event_Drug_Alche_SP15_Premium/400;2021_NewYear_Disnai_Weapon_box/1;2021_NewYear_Disnai_SubWeapon_box/1;2021_NewYear_Disnai_Armor_box/4;vibora_Vision_Select_Box_NoTrade/2;2021_SetOption_Scroll_Armor_440Lv/4;2021_SetOption_Scroll_Weapon_440Lv/2;","numArg1":3}},{"itemId":2500216,"className":"TWN_MOONLIT_ICOR_PACKAGE","name":"2021 Full Moon Ichor Enchant Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Extract_kit_Gold_Team_nonEvent/10;Premium_Sandra_Glass/15;Premium_Sandra_Glass_1line/15;Team_Legend_Enchant_Jewel_460/10;Leticia_Siera/30;Leticia_Newcle/30;","numArg1":3}},{"itemId":2500217,"className":"TWN_MOONLIT_BATTLE_A_PACKAGE","name":"2021 Full Moon Get Ready A Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/20;Dungeon_Key01/50;Ticket_Mythic_Auto_Premium_NoTrade/10;Multiple_Token_MythicAuto_NoTrade/10;Ticket_Glacier_Easy/10;Ticket_Moringponia_Easy/10;Drug_Looting_Potion_500/10;randombox_AssistorCard/3;","numArg1":3}},{"itemId":2500218,"className":"TWN_MOONLIT_BATTLE_B_PACKAGE","name":"2021 Full Moon Get Ready B Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeExpertModeCountUp_NoTrade/10;EP12_EXPERT_MODE_MULTIPLE_NoTrade/10;Dungeon_Key02/20;SoloRaidCntReset_Team/10;Drug_Looting_Potion_500/10;Drug_AddMaxWeight3/5;","numArg1":3}},{"itemId":2500219,"className":"TWN_MOONLIT_AIO_PACKAGE","name":"Full Moon Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"TWN_MOONLIT_NEWBIE_PACKAGE/1;TWN_MOONLIT_ICOR_PACKAGE/1;TWN_MOONLIT_BATTLE_A_PACKAGE/1;TWN_MOONLIT_BATTLE_B_PACKAGE/1;Drug_AddMaxWeight3/5;egg_pet_thankgiving_sparrow/1;","numArg1":3}},{"itemId":2500220,"className":"GLOBAL_JP_HUMITUKI_NEWBIE_PACKAGE","name":"Summer Beach Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Jumping_expCard_450Lv/1;Event_JobexpCard_BOX/1;2021_ARBORDAY_NECK05/1/Transcend/10/Reinforce_2/11;2021_ARBORDAY_BRC05/2/Transcend/10/Reinforce_2/11;Seal_2021_NewYear/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Class_Solution_Select_Box_Event/1;2021_NewYear_Disnai_Weapon_box/1;2021_NewYear_Disnai_SubWeapon_box/1;2021_NewYear_Disnai_Armor_box/4;vibora_Vision_Select_Box_NoTrade/2;2021_SetOption_Scroll_Weapon_440Lv/2;2021_SetOption_Scroll_Armor_440Lv/4;Premium_boostToken03/3;Drug_AddMaxWeight3/3;randombox_AssistorCard/1;Ability_Point_Stone_10000/30;Adventure_Reward_Seed/70;Adventure_Goddess_Statue/70;Drug_RedApple20/50;Drug_BlueApple20/50;Event_Drug_Alche_HP15_Premium/400;Event_Drug_Alche_SP15_Premium/400;","numArg1":3}},{"itemId":2500221,"className":"GLOBAL_JP_HUMITUKI_BATTLE_A_PACKAGE","name":"Summer Watermelon Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Mythic_Auto_Premium_NoTrade/60;Multiple_Token_MythicAuto_NoTrade/60;Dungeon_Key01/200;SoloRaidCntReset_Team/10;","numArg1":3}},{"itemId":2500222,"className":"GLOBAL_JP_HUMITUKI_BATTLE_B_PACKAGE","name":"Summer Popsicle Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/20;ChallengeExpertModeCountUp_NoTrade/30;EP12_EXPERT_MODE_MULTIPLE_NoTrade/30;Premium_indunReset/10;Adventure_dungeoncount_01/10;","numArg1":3}},{"itemId":2500223,"className":"GLOBAL_JP_HUMITUKI_ARTS_PACKAGE","name":"Summer Splash Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_HiddenAbility_MasterPiece/10;AbillityArts_Box_Total/3;Ability_Point_Stone_10000/25;randombox_AssistorCard/4;","numArg1":3}},{"itemId":2500224,"className":"GLOBAL_JP_HUMITUKI_AIO_PACKAGE","name":"Summer All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_JP_HUMITUKI_NEWBIE_PACKAGE/1;GLOBAL_JP_HUMITUKI_BATTLE_A_PACKAGE/1;GLOBAL_JP_HUMITUKI_BATTLE_B_PACKAGE/1;GLOBAL_JP_HUMITUKI_ARTS_PACKAGE/1;","numArg1":3}},{"itemId":2500225,"className":"GLOBAL_202108package_All","name":"Treasure Chest All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"202108package_Growth/1;202108package_ContentsA/1;202108package_ContentsB/1;202108package_BattleA/1;202108package_BattleB/1;vibora_Vision_Select_Box_NoTrade/2;"}},{"itemId":2500226,"className":"GLOBAL_Special_Gift_Box_Leticia_2110","name":"2021 Leticia's Get Ready Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Mythic_Auto_Premium/140;Multiple_Token_MythicAuto/140;Ticket_Giltine_Auto_Premium/70;Leticia_Newcle/500;Leticia_Siera/500;"}},{"itemId":2500228,"className":"GLOBAL_202111package_ContentsA","name":"2021 November Contents Package A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Giltine_Auto_Premium_NoTrade/25;Ticket_Mythic_Auto_Premium_NoTrade/50;Multiple_Token_MythicAuto_NoTrade/50;Event_Reinforce_100000coupon/500;"}},{"itemId":2500229,"className":"GLOBAL_202111package_ContentsB","name":"2021 November Contents Package B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Bernice_Enter/20;ChallengeModeReset_NoTrade/50;ChallengeExpertModeCountUp_NoTrade/25;EP12_EXPERT_MODE_MULTIPLE_NoTrade/25;SoloRaidCntReset_Team/10;"}},{"itemId":2500230,"className":"GLOBAL_202111package_EquipPlus","name":"2021 November Goddess Growth Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Vasilissa_Auto_Enter_NoTrade/15;misc_reinforce_percentUp_460_NoTrade/150;misc_Enchant_460_NoTrade/20;Premium_awakeningStone/50;Abrasive_460_NoTrade/50;GabijaCertificateCoin_10000p/10;"}},{"itemId":2500231,"className":"GLOBAL_202111package_Battle","name":"2021 November Combat Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ability_Point_Stone_10000/50;HiddenAbility_MasterPiece_Fragment/20;randombox_AssistorCard/10;Drug_AddMaxWeight3/10;"}},{"itemId":2500232,"className":"GLOBAL_202111package_ContentsA_Newbie","name":"[New/Return] 2021 November Contents Package A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Giltine_Auto_Premium_NoTrade/25;Ticket_Mythic_Auto_Premium_NoTrade/50;Multiple_Token_MythicAuto_NoTrade/50;Event_Reinforce_100000coupon/500;"}},{"itemId":2500233,"className":"GLOBAL_202111package_ContentsB_Newbie","name":"[New/Return] 2021 November Contents Package B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Bernice_Enter/20;ChallengeModeReset_NoTrade/50;ChallengeExpertModeCountUp_NoTrade/25;EP12_EXPERT_MODE_MULTIPLE_NoTrade/25;SoloRaidCntReset_Team/10;"}},{"itemId":2500234,"className":"GLOBAL_202111package_EquipPlus_Newbie","name":"[New/Return] 2021 November Goddess Growth Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Vasilissa_Auto_Enter_NoTrade/15;misc_reinforce_percentUp_460_NoTrade/150;misc_Enchant_460_NoTrade/20;Premium_awakeningStone/50;Abrasive_460_NoTrade/50;GabijaCertificateCoin_10000p/10;"}},{"itemId":2500235,"className":"GLOBAL_202111package_Battle_Newbie","name":"[New/Return] 2021 November Combat Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ability_Point_Stone_10000/50;HiddenAbility_MasterPiece_Fragment/20;randombox_AssistorCard/10;Drug_AddMaxWeight3/10;"}},{"itemId":2500236,"className":"GLOBAL_202111package_All","name":"2021 November All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_202111package_ContentsA/1;GLOBAL_202111package_ContentsB/1;GLOBAL_202111package_EquipPlus/3;GLOBAL_202111package_Battle/1;vibora_Vision_Select_Box_NoTrade/1;"}},{"itemId":2500237,"className":"GLOBAL_202111package_All_Newbie","name":"[New/Return] 2021 November All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_202111package_ContentsA_Newbie/1;GLOBAL_202111package_ContentsB_Newbie/1;GLOBAL_202111package_EquipPlus_Newbie/3;GLOBAL_202111package_Battle_Newbie/1;vibora_Vision_Select_Box_NoTrade/1;"}},{"itemId":2500249,"className":"GLOBAL_2021_12_REINFORCE_PACKAGE","name":"Jingling Winter Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_460_NoTrade/30;misc_Premium_reinforce_percentUp_460/20;misc_Enchant_460_NoTrade/20;Premium_awakeningStone/20;Abrasive_460_NoTrade/20;Premium_Sandra_Glass_460_NoTrade/20;Premium_Sandra_Glass_1line_460_NoTrade/30;Premium_Enchantchip_NoTrade/10;GabijaCertificateCoin_10000p/10;"}},{"itemId":2500250,"className":"GLOBAL_2021_12_ENTRANCE_PACKAGE","name":"Merry Winter Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_repairPotion/20;Drug_AddMaxWeight3/3;Ticket_Vasilissa_Auto_Enter_NoTrade/10;ChallengeModeReset_NoTrade/20;Ticket_Giltine_Auto_Premium_NoTrade/3;SoloRaidCntReset_Team/5;ChallengeExpertModeCountUp_NoTrade/15;EP12_EXPERT_MODE_MULTIPLE_NoTrade/30;"}},{"itemId":2500251,"className":"GLOBAL_2021_12_AIO_PACKAGE","name":"Winter All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_2021_12_REINFORCE_PACKAGE/2;GLOBAL_2021_12_ENTRANCE_PACKAGE/1;certificate_RidePet_ep13raincoat/1;"}},{"itemId":2500252,"className":"GLOBAL_202112package_ContentsA","name":"Bunny Returns A Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Vasilissa_Auto_Enter_NoTrade/20;Ticket_Giltine_Auto_Premium_NoTrade/25;Ticket_Mythic_Auto_Premium_NoTrade/50;Multiple_Token_MythicAuto_NoTrade/50;Ticket_Mythic_Auto_Hard/25;Event_Reinforce_100000coupon/500;"}},{"itemId":2500253,"className":"GLOBAL_202112package_ContentsB","name":"Bunny Returns B Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/50;ChallengeExpertModeCountUp_NoTrade/25;EP12_EXPERT_MODE_MULTIPLE_NoTrade/50;SoloRaidCntReset_Team/10;Ticket_Bernice_Enter/20;"}},{"itemId":2500254,"className":"GLOBAL_202112package_EquipPlus","name":"Bunny Returns: Enhance Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_460_NoTrade/100;misc_Premium_reinforce_percentUp_460/66;misc_Enchant_460_NoTrade/50;Premium_awakeningStone/50;Abrasive_460_NoTrade/50;GabijaCertificateCoin_10000p/10;"}},{"itemId":2500255,"className":"GLOBAL_202112package_AIO","name":"Bunny Returns All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_202112package_ContentsA/1;GLOBAL_202112package_ContentsB/1;GLOBAL_202112package_EquipPlus/1;certificate_RidePet_ep13raincoat/1;"}},{"itemId":2500257,"className":"box_egg_pet_winter_rabbit","name":"Snow Bunny Egg Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"egg_pet_winter_rabbit/1;"}},{"itemId":2500258,"className":"GLOBAL_202201package_AIO","name":"Bunny Returns All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_202112package_ContentsA/1;GLOBAL_202112package_ContentsB/1;GLOBAL_202112package_EquipPlus/2;box_egg_pet_winter_rabbit/1;"}},{"itemId":2500259,"className":"202202_tiger_a_package","name":"2022 New Year Tiger Package A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Vasilissa_Auto_Enter_NoTrade/10;Ticket_Mythic_Auto_Hard/10;Multiple_Token_MythicHARD_NoTrade/10;Multiple_Token_MythicAuto_NoTrade/40;"}},{"itemId":2500260,"className":"202202_tiger_b_package","name":"2022 New Year Tiger Package B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeExpertModeCountUp_NoTrade/40;EP12_EXPERT_MODE_MULTIPLE_NoTrade/40;misc_pvp_mine2_NotLimit_10000/15;"}},{"itemId":2500261,"className":"202202_tiger_c_package","name":"2022 New Year Tiger Package C","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_Enchant_460_NoTrade/20;Abrasive_460_NoTrade/50;Premium_awakeningStone/50;GabijaCertificateCoin_10000p/15;"}},{"itemId":2500262,"className":"202202_tiger_package_A","name":"2022 New Year Tiger Package All in One","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"202202_tiger_a_package/1;202202_tiger_b_package/1;202202_tiger_c_package/3;202112package_HairCostume/1;certificate_RidePet_Tiger_twn/1;"}},{"itemId":2500263,"className":"JPN_202201package_ContentsA","name":"Mountain King Contents Package A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Vasilissa_Auto_Enter_NoTrade/20;Ticket_Giltine_Auto_Premium_NoTrade/25;Ticket_Mythic_Auto_Premium_NoTrade/40;Multiple_Token_MythicAuto_NoTrade/40;Ticket_Mythic_Auto_Hard/10;Multiple_Token_MythicHARD_NoTrade/10;Event_Reinforce_100000coupon/1000;"}},{"itemId":2500264,"className":"JPN_202201package_ContentsB","name":"Mountain King Contents Package B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/50;ChallengeExpertModeCountUp_NoTrade/25;EP12_EXPERT_MODE_MULTIPLE_NoTrade/25;SoloRaidCntReset_Team/10;misc_pvp_mine2_NotLimit_10000/5;"}},{"itemId":2500265,"className":"JPN_202201package_EquipPlus","name":"Mountain King Enhance Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_460_NoTrade/150;misc_Enchant_460_NoTrade/20;Premium_awakeningStone/50;Abrasive_460_NoTrade/50;GabijaCertificateCoin_10000p/15;"}},{"itemId":2500266,"className":"JPN_202201package_AIO","name":"Mountain King All in One Package (JPN)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"JPN_202201package_ContentsA/1;JPN_202201package_ContentsB/2;JPN_202201package_EquipPlus/2;box_egg_pet_winter_rabbit/1;"}},{"itemId":2500267,"className":"JPN_202202_Leticia_Reinforce","name":"2022 Leticia's Enhancement Box (JPN)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_460/300;misc_pvp_mine2_NotLimit_50000/10;GabijaCertificateCoin_50000p/10;seletbox_tricket_bountyhunt_ep13_hard_Leticia/10;Ticket_Vasilissa_Auto_Enter/30;"}},{"itemId":2500268,"className":"202202_tiger_a_package_JPN","name":"2022 New Year Tiger Package A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Vasilissa_Auto_Enter_NoTrade/15;Multiple_Token_MythicAuto_NoTrade/40;Ticket_Mythic_Auto_Hard/10;Multiple_Token_MythicHARD_NoTrade/10;Event_Reinforce_100000coupon/1000;"}},{"itemId":2500269,"className":"202202_tiger_b_package_JPN","name":"2022 New Year Tiger Package B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeExpertModeCountUp_NoTrade/40;EP12_EXPERT_MODE_MULTIPLE_NoTrade/40;Ticket_Giltine_Auto_Premium_NoTrade/25;misc_pvp_mine2_NotLimit_10000/5;"}},{"itemId":2500270,"className":"202202_tiger_c_package_JPN","name":"2022 New Year Tiger Enhance Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_460_NoTrade/100;misc_Enchant_460_NoTrade/20;Premium_awakeningStone/50;Abrasive_460_NoTrade/50;EP12_enrich_Vibora_misc_NoTrade/5;EP12_enrich_Goddess_misc_NoTrade/3;GabijaCertificateCoin_10000p/15;"}},{"itemId":2500271,"className":"202202_tiger_AIO_package_JPN","name":"2022 New Year Tiger Package All in One","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"202202_tiger_a_package_JPN/1;202202_tiger_b_package_JPN/2;202202_tiger_c_package_JPN/1;certificate_RidePet_Tiger_twn/1;"}},{"itemId":2500272,"className":"202202_AIO_package_GLOBAL","name":"Mountain King All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"JPN_202201package_ContentsA/1;JPN_202201package_ContentsB/2;JPN_202201package_EquipPlus/2;certificate_RidePet_Tiger_twn/1;"}},{"itemId":2500274,"className":"GLOBAL_202203_Leticia_Reinforce","name":"Leticia's Enhance Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_460/300;misc_pvp_mine2_NotLimit_50000/10;GabijaCertificateCoin_50000p/10;seletbox_tricket_bountyhunt_ep13_hard_Leticia/10;ChallengeExpertModeCountUp/30;"}},{"itemId":2500275,"className":"GLOBAL_202203package_ContentsA","name":"Marching March New Contents Package A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Auto_Enter_NoTrade/5;SoloRaidCntReset_Team/10;Ticket_Bernice_Enter/10;Event_Reinforce_100000coupon/500;Recycle_Shop_Medal/100;"}},{"itemId":2500276,"className":"GLOBAL_202203package_ContentsB","name":"Marching March New Contents Package B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_earring_raid_NoTrade/5;ChallengeModeReset_NoTrade/20;ChallengeExpertModeCountUp_NoTrade/50;EP12_EXPERT_MODE_MULTIPLE_NoTrade/50;misc_pvp_mine2_NotLimit_10000/20;Recycle_Shop_Medal/150;"}},{"itemId":2500277,"className":"GLOBAL_202203package_Reinforce","name":"Marching March Enhancement Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_460_NoTrade/100;misc_Enchant_460_NoTrade/20;Premium_awakeningStone/50;Abrasive_460_NoTrade/50;EP12_enrich_Vibora_misc_NoTrade/5;EP12_enrich_Goddess_misc_NoTrade/3;GabijaCertificateCoin_10000p/15;"}},{"itemId":2500278,"className":"GLOBAL_202203package_AIO","name":"Marching March All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_202203package_Reinforce/1;GLOBAL_202203package_ContentsA/1;GLOBAL_202203package_ContentsB/1;Recycle_Shop_Medal/200;"}},{"itemId":2500279,"className":"JPN_202203package_ContentsA","name":"2022 March Version Up Contents Package A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Auto_Enter_NoTrade/10;Multiple_Token_MythicAuto_NoTrade/50;Ticket_Mythic_Auto_Hard/20;Multiple_Token_MythicHARD_NoTrade/20;Relic_Reinforce_100000coupon/1500;"}},{"itemId":2500280,"className":"JPN_202203package_ContentsB","name":"2022 March Version Up Contents Package B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_earring_raid_NoTrade/10;ChallengeExpertModeCountUp_NoTrade/50;EP12_EXPERT_MODE_MULTIPLE_NoTrade/25;Ticket_Giltine_Auto_Premium_NoTrade/50;misc_pvp_mine2_NotLimit_10000/5;"}},{"itemId":2500281,"className":"JPN_202203package_Reinforce","name":"2022 March Version Up Enhance Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_470_NoTrade/100;misc_Premium_reinforce_percentUp_460/66;Ticket_Vasilissa_Auto_Enter_NoTrade/15;misc_Enchant_460_NoTrade/20;Premium_awakeningStone/50;Abrasive_460_NoTrade/50;GabijaCertificateCoin_10000p/15;"}},{"itemId":2500282,"className":"JPN_202203package_AIO","name":"2022 March Version Up All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"JPN_202203package_ContentsA/1;JPN_202203package_ContentsB/2;JPN_202203package_Reinforce/1;Recycle_Shop_Medal/200;"}},{"itemId":2500283,"className":"TWN_202204_Leticia_Reinforce","name":"Leticia's Enhance Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_470/300;misc_pvp_mine2_NotLimit_50000/10;GabijaCertificateCoin_50000p/10;seletbox_tricket_bountyhunt_ep13_hard_Leticia/10;Ticket_Vasilissa_Auto_Enter/30;"}},{"itemId":2500284,"className":"TWN_202204_Contents_Package","name":"Spring Sprout Flower Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Auto_Enter_NoTrade/5;Ticket_Vasilissa_Auto_Enter_NoTrade/30;Multiple_Token_MythicAuto_NoTrade/30;Ticket_Mythic_Auto_Hard/10;Multiple_Token_MythicHARD_NoTrade/10;Ticket_earring_raid_NoTrade/15;ChallengeExpertModeCountUp_NoTrade/30;EP12_EXPERT_MODE_MULTIPLE_NoTrade/15;Recycle_Shop_Medal/200;"}},{"itemId":2500285,"className":"TWN_202204_Reinforce_Package","name":"Spring Sprout Tree Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_470_NoTrade/120;misc_Premium_reinforce_percentUp_460/70;misc_Enchant_460_NoTrade/30;Premium_awakeningStone/75;Abrasive_460_NoTrade/75;Recycle_Shop_Medal/150;"}},{"itemId":2500286,"className":"TWN_202204_AIO_Package","name":"Spring Sprout All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"TWN_202204_Contents_Package/1;TWN_202204_Reinforce_Package/2;Recycle_Shop_Medal/200;ABAND01_126_silver/1;"}},{"itemId":2500287,"className":"GLOBAL_202205package_Contents","name":"Goldfish Entry Voucher Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Auto_Enter_NoTrade/5;Ticket_Giltine_Auto_Premium_NoTrade/25;Ticket_Vasilissa_Auto_Enter_NoTrade/20;SoloRaidCntReset_Team/10;ChallengeExpertModeCountUp_NoTrade/30;Ticket_earring_raid_NoTrade/15;"}},{"itemId":2500288,"className":"GLOBAL_202205package_Reinforce","name":"Goldfish Enhance Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Reinforce_100000coupon/500;misc_reinforce_percentUp_470_NoTrade/100;misc_Premium_reinforce_percentUp_460/66;EP12_enrich_Vibora_misc_NoTrade/5;EP12_enrich_Goddess_misc_NoTrade/3;misc_Enchant_460_NoTrade/50;GabijaCertificateCoin_10000p/15;"}},{"itemId":2500289,"className":"GLOBAL_202205package_AIO","name":"Goldfish Returns Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_202205package_Contents/2;GLOBAL_202205package_Reinforce/1;certificate_RidePet_ep13raincoat_STM/1;GabijaCertificateCoin_10000p/10;"}},{"itemId":2500292,"className":"JPN_202206package_ContentsA","name":"Cup Scouts Entry Voucher Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Party_Enter_NoTrade/15;Ticket_Vasilissa_Party_Enter_NoTrade/15;Ticket_earring_raid_NoTrade/10;Recycle_Shop_Medal/200;"}},{"itemId":2500293,"className":"JPN_202206package_ContentsB","name":"Boy Scouts Add. Reward Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Multiple_Token_MythicAuto_NoTrade/35;Ticket_Mythic_Auto_Hard/20;Multiple_Token_MythicHARD_NoTrade/20;ChallengeExpertModeCountUp_NoTrade/40;EP12_EXPERT_MODE_MULTIPLE_NoTrade/20;Recycle_Shop_Medal/200;"}},{"itemId":2500294,"className":"JPN_202206package_Reinforce","name":"Girl Scouts Enhance Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_470_NoTrade/135;misc_Premium_reinforce_percentUp_460/70;misc_Enchant_460_NoTrade/45;Premium_awakeningStone/80;Abrasive_460_NoTrade/40;Recycle_Shop_Medal/150;"}},{"itemId":2500295,"className":"JPN_202206package_AIO","name":"Scouts All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"JPN_202206package_ContentsA/1;JPN_202206package_ContentsB/1;JPN_202206package_Reinforce/1;Recycle_Shop_Medal/500;"}},{"itemId":2500298,"className":"JPN_202207package_Contents","name":"2022 July Contents Package (JPN)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Party_Enter_NoTrade/20;Ticket_Vasilissa_Party_Enter_NoTrade/20;Ticket_earring_raid_NoTrade/15;Multiple_Token_MythicAuto_NoTrade/20;Ticket_Mythic_Auto_Hard/15;Multiple_Token_MythicHARD_NoTrade/15;ChallengeExpertModeCountUp_NoTrade/30;EP12_EXPERT_MODE_MULTIPLE_NoTrade/15;Recycle_Shop_Medal/150;"}},{"itemId":2500299,"className":"JPN_202207package_Reinforce","name":"2022 July Enhance Package (JPN)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_470_NoTrade/215;misc_Premium_reinforce_percentUp_460/125;Premium_awakeningStone/100;Abrasive_460_NoTrade/60;Recycle_Shop_Medal/100;"}},{"itemId":2500300,"className":"JPN_202207package_AIO","name":"2022 July All in One Package (JPN)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"JPN_202207package_Contents/1;JPN_202207package_Reinforce/1;Recycle_Shop_Medal/400;"}},{"itemId":2500301,"className":"selectbox_costume_jp_kimono_NoTrade","name":"Kimono Costume Selection Box (Untradable)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":2500302,"className":"GLOBAL_202207package_Entrance","name":"Ocean Depths Entry Voucher Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Party_Enter_NoTrade/10;Ticket_Vasilissa_Party_Enter_NoTrade/10;Ticket_earring_raid_NoTrade/10;Ticket_Jellyzele_Auto_Enter_NoTrade/10;"}},{"itemId":2500303,"className":"GLOBAL_202207package_Relic","name":"Ocean Depths Upgrade Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Multiple_Token_MythicAuto_NoTrade/35;Ticket_Mythic_Auto_Hard/20;Multiple_Token_MythicHARD_NoTrade/20;Ticket_Giltine_Auto_Premium_NoTrade/20;ChallengeExpertModeCountUp_NoTrade/40;EP12_EXPERT_MODE_MULTIPLE_NoTrade/20;Event_Reinforce_100000coupon/500;"}},{"itemId":2500304,"className":"GLOBAL_202207package_Reinforce","name":"Ocean Depths Enhance Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_470_NoTrade/175;misc_Premium_reinforce_percentUp_460/70;Event_Reinforce_100000coupon/500;"}},{"itemId":2500305,"className":"GLOBAL_202207package_AIO","name":"Ocean Depths All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_202207package_Entrance/1;GLOBAL_202207package_Relic/1;GLOBAL_202207package_Reinforce/1;Recycle_Shop_Medal/600;"}},{"itemId":2500306,"className":"JPN_202208package_Contents_A","name":"2022 August Contents A Package (Japan)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Jellyzele_Auto_Enter_NoTrade/20;Ticket_RevivalPaulius_Party_Enter_NoTrade/20;Ticket_Vasilissa_Party_Enter_NoTrade/20;Ticket_earring_raid_NoTrade/20;Recycle_Shop_Medal/150;"}},{"itemId":2500307,"className":"JPN_202208package_Contents_B","name":"2022 August Contents B Package (Japan)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Multiple_Token_MythicAuto_NoTrade/50;Ticket_Mythic_Auto_Hard/40;Multiple_Token_MythicHARD_NoTrade/25;Relic_Reinforce_100000coupon/1500;Recycle_Shop_Medal/150;"}},{"itemId":2500308,"className":"JPN_202208package_Reinforce","name":"2022 August Enhancement Package (Japan)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_470_NoTrade/200;misc_Premium_reinforce_percentUp_460/100;misc_Enchant_460_NoTrade/20;Recycle_Shop_Medal/100;"}},{"itemId":2500309,"className":"JPN_202208package_AIO","name":"2022 August All in One Package (JPN)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"JPN_202208package_Contents_A/1;JPN_202208package_Contents_B/1;JPN_202208package_Reinforce/1;Recycle_Shop_Medal/400;"}},{"itemId":2500310,"className":"GLOBAL_202208package_Raid","name":"Oreoreo Enhance Raid Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Party_Enter_NoTrade/15;Multiple_Token_RevivalPaulius_Party_NoTrade/15;Ticket_Vasilissa_Party_Enter_NoTrade/15;"}},{"itemId":2500311,"className":"GLOBAL_202208package_Equip","name":"Oreoreo Equipment Raid Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_earring_raid_NoTrade/15;Ticket_Jellyzele_Auto_Enter_NoTrade/15;Multiple_Token_Jellyzele_Party_NoTrade/15;EP12_EXPERT_MODE_MULTIPLE_NoTrade/20;ChallengeExpertModeCountUp_NoTrade/20;"}},{"itemId":2500312,"className":"GLOBAL_202208package_Relic","name":"Oreoreo Upgrade Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Mythic_Auto_Premium_NoTrade/30;Multiple_Token_MythicAuto_NoTrade/30;Ticket_Mythic_Auto_Hard/20;Multiple_Token_MythicHARD_NoTrade/20;Ticket_Giltine_Auto_Premium_NoTrade/30;Relic_Reinforce_100000coupon/800;"}},{"itemId":2500313,"className":"GLOBAL_202208package_Reinforce","name":"Oreoreo Enhance Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_470_NoTrade/175;misc_Premium_reinforce_percentUp_460/70;Event_Reinforce_100000coupon/500;"}},{"itemId":2500314,"className":"GLOBAL_202208package_AIO","name":"Oreoreo All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_202208package_Raid/1;GLOBAL_202208package_Equip/1;GLOBAL_202208package_Relic/1;GLOBAL_202208package_Reinforce/1;egg_pet_twn6th_TI_NoTrade/1;"}},{"itemId":2500316,"className":"GEM_Scroll_Templar","name":"Skill Gem Scroll: Templar","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Templar"}},{"itemId":2500317,"className":"JPN_RelicPackage_Contents","name":"Res Sacrae Contents Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Mythic_Auto_Hard/50;Multiple_Token_MythicHARD_NoTrade/30;Multiple_Token_MythicAuto_NoTrade/60;Ticket_Giltine_Auto_Premium_NoTrade/30;Relic_Reinforce_100000coupon/2000;Recycle_Shop_Medal/150;"}},{"itemId":2500318,"className":"JPN_RelicPackage_Reinforce","name":"Res Sacrae Enhance Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_470_NoTrade/170;misc_Premium_reinforce_percentUp_460/70;GabijaCertificateCoin_10000p/10;Ticket_Vasilissa_Party_Enter_NoTrade/10;Recycle_Shop_Medal/100;"}},{"itemId":2500319,"className":"JPN_RelicPackage_AIO","name":"Res Sacrae All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"JPN_RelicPackage_Contents/2;JPN_RelicPackage_Reinforce/1;Recycle_Shop_Medal/400;"}},{"itemId":2500320,"className":"GLOBAL_2208package_Entrance","name":"Additional Turbulence Entry Voucher Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Party_Enter_NoTrade/30;Ticket_earring_raid_NoTrade/20;Ticket_Jellyzele_Auto_Enter_NoTrade/20;Ticket_TurbulentCore_Auto_Enter_NoTrade/30;Ticket_Bernice_Enter/30;"}},{"itemId":2500321,"className":"GLOBAL_2208package_Relic","name":"Additional Turbulence Upgrade Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Mythic_Auto_Premium_NoTrade/30;Multiple_Token_MythicAuto_NoTrade/30;Ticket_Mythic_Auto_Hard/20;Multiple_Token_MythicHARD_NoTrade/20;Ticket_Giltine_Auto_Premium_NoTrade/30;Event_Reinforce_100000coupon/800;"}},{"itemId":2500322,"className":"GLOBAL_2208package_Reinforce","name":"Additional Turbulence Enhance Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_480_NoTrade/255;misc_Premium_reinforce_percentUp_460/70;Recycle_Shop_Medal/300;"}},{"itemId":2500323,"className":"GLOBAL_2208package_AIO","name":"Additional Turbulence All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_2208package_Entrance/1;GLOBAL_2208package_Relic/1;GLOBAL_2208package_Reinforce/1;Additional_package/1;"}},{"itemId":2500324,"className":"Additional_package","name":"Full Additional Reward Voucher Set","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Multiple_Token_Jellyzele_Party_NoTrade/5;Multiple_Token_RevivalPaulius_Party_NoTrade/5;Multiple_Token_TurbulentCore_Party_NoTrade/3;EP12_EXPERT_MODE_MULTIPLE_NoTrade/7;"}},{"itemId":2500325,"className":"JPN_2209package_Reinforce","name":"Version Up Enhance Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"VakarineCertificateCoin_50000p/2;Ticket_TurbulentCore_Auto_Enter_NoTrade/30;ChallengeModeReset_NoTrade/40;ChallengeExpertModeCountUp_NoTrade/30;EP12_EXPERT_MODE_MULTIPLE_NoTrade/20;misc_reinforce_percentUp_480_NoTrade/250;misc_Premium_reinforce_percentUp_460/100;Recycle_Shop_Medal/100;"}},{"itemId":2500326,"className":"JPN_2209package_Contents","name":"Version Up Contents Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Auto_Enter_NoTrade/30;Ticket_RevivalPaulius_Party_Enter_NoTrade/20;Ticket_earring_raid_NoTrade/30;Ticket_Jellyzele_Auto_Enter_NoTrade/30;Ticket_Bernice_Enter/30;Recycle_Shop_Medal/100;"}},{"itemId":2500327,"className":"JPN_2209package_AIO","name":"Version Up All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"JPN_2209package_Reinforce/1;JPN_2209package_Contents/1;Multiple_Token_RevivalPaulius_Party_NoTrade/5;Multiple_Token_Jellyzele_Party_NoTrade/5;Multiple_Token_TurbulentCore_Party_NoTrade/5;"}},{"itemId":2500329,"className":"GEM_Scroll_Sapper","name":"Skill Gem Scroll: Sapper","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Sapper"}},{"itemId":2500330,"className":"GLOBAL_2210package_Entrance_A","name":"Bubbly Bubble Entry Package A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Party_Enter_NoTrade/25;Ticket_earring_raid_NoTrade/25;Ticket_Jellyzele_Auto_Enter_NoTrade/25;Ticket_TurbulentCore_Auto_Enter_NoTrade/25;Recycle_Shop_Medal/200;"}},{"itemId":2500331,"className":"GLOBAL_2210package_Entrance_B","name":"Bubbly Bubble Entry Package B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/30;ChallengeExpertModeCountUp_NoTrade/20;EP12_EXPERT_MODE_MULTIPLE_NoTrade/20;SoloRaidCntReset_Team/20;Ticket_Bernice_Enter/30;Recycle_Shop_Medal/200;"}},{"itemId":2500332,"className":"GLOBAL_2210package_Reinforce","name":"Bubbly Bubble Enhance Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_480_NoTrade/255;misc_Premium_reinforce_percentUp_460/70;EP12_enrich_Vibora_misc_NoTrade/5;EP12_enrich_Goddess_misc_NoTrade/3;Recycle_Shop_Medal/200;"}},{"itemId":2500333,"className":"GLOBAL_2210package_AIO","name":"Bubbly Bubble All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_2210package_Entrance_A/1;GLOBAL_2210package_Entrance_B/1;GLOBAL_2210package_Reinforce/1;selectbox_twn6th_bubble_NoTrade/1;Hat_twn6th_bubble_hairband_NoTrade/1;Effect_twn6th_bubble_NoTrade/1;"}},{"itemId":2500334,"className":"JPN_2210package_Entrance_A","name":"22 JPN 10 Entry Package A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/10;ChallengeExpertModeCountUp_NoTrade/10;EP12_EXPERT_MODE_MULTIPLE_NoTrade/5;Ticket_TurbulentCore_Auto_Enter_NoTrade/10;misc_reinforce_percentUp_480_NoTrade/100;misc_Premium_reinforce_percentUp_460/50;Recycle_Shop_Medal/100;"}},{"itemId":2500335,"className":"JPN_2210package_Entrance_B","name":"22 JPN 10 Entry Package B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Party_Enter_NoTrade/10;Ticket_earring_raid_NoTrade/10;Ticket_Jellyzele_Auto_Enter_NoTrade/10;Ticket_TurbulentCore_Auto_Enter_NoTrade/10;misc_reinforce_percentUp_480_NoTrade/200;misc_Premium_reinforce_percentUp_460/100;Recycle_Shop_Medal/200;"}},{"itemId":2500336,"className":"JPN_2210package_Entrance_C","name":"22 JPN 10 Entry Package C","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/20;ChallengeExpertModeCountUp_NoTrade/20;EP12_EXPERT_MODE_MULTIPLE_NoTrade/10;Ticket_RevivalPaulius_Auto_Enter_NoTrade/20;Ticket_RevivalPaulius_Party_Enter_NoTrade/20;Ticket_earring_raid_NoTrade/20;Ticket_Jellyzele_Auto_Enter_NoTrade/20;Ticket_TurbulentCore_Auto_Enter_NoTrade/20;misc_reinforce_percentUp_480_NoTrade/300;misc_Premium_reinforce_percentUp_460/150;Recycle_Shop_Medal/300;"}},{"itemId":2500337,"className":"STM_2211package_Contents","name":"Early Frost Contents Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Mythic_Auto_Hard/50;Multiple_Token_MythicHARD_NoTrade/30;Multiple_Token_MythicAuto_NoTrade/60;Ticket_Giltine_Auto_Premium_NoTrade/30;Relic_Reinforce_100000coupon/2000;Recycle_Shop_Medal/150;"}},{"itemId":2500338,"className":"STM_2211package_Reinforce","name":"Early Frost Enhance Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_480_NoTrade/255;misc_Premium_reinforce_percentUp_460/70;VakarineCertificateCoin_50000p/4;SoloRaidCntReset_Team/30;Ticket_Bernice_Enter/30;Recycle_Shop_Medal/100;"}},{"itemId":2500339,"className":"STM_2211package_AIO","name":" Early Frost All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"STM_2211package_Contents/1;STM_2211package_Reinforce/2;Recycle_Shop_Medal/400;"}},{"itemId":2500340,"className":"JPN_2211package_Entrance_A","name":"22 JPN 11 Entry Package A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Auto_Enter_NoTrade/20;Ticket_RevivalPaulius_Party_Enter_NoTrade/10;Multiple_Token_RevivalPaulius_Party_NoTrade/10;misc_reinforce_percentUp_480_NoTrade/150;misc_Premium_reinforce_percentUp_460/50;"}},{"itemId":2500341,"className":"JPN_2211package_Entrance_B","name":"22 JPN 11 Entry Package B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Jellyzele_Auto_Enter_NoTrade/20;Ticket_Jellyzele_Party_Enter_NoTrade/10;Multiple_Token_Jellyzele_Party_NoTrade/10;Ticket_earring_raid_NoTrade/10;Ticket_TurbulentCore_Auto_Enter_NoTrade/20;Multiple_Token_TurbulentCore_Party_NoTrade/10;misc_reinforce_percentUp_480_NoTrade/200;misc_Premium_reinforce_percentUp_460/100;"}},{"itemId":2500342,"className":"JPN_2211package_Relic","name":"22 JPN 11 Res Sacrae Package A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Mythic_Auto_Hard/45;Multiple_Token_MythicHARD_NoTrade/30;Multiple_Token_MythicAuto_NoTrade/40;Ticket_Giltine_Auto_Premium_NoTrade/30;Relic_Reinforce_100000coupon/1500;"}},{"itemId":2500343,"className":"JPN_2211package_AIO","name":"22 JPN 11 All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"JPN_2211package_Entrance_A/1;JPN_2211package_Entrance_B/1;JPN_2211package_Relic/1;Recycle_Shop_Medal/400;"}},{"itemId":2500344,"className":"GEM_Scroll_Hunter","name":"Skill Gem Scroll: Hunter","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Hunter"}},{"itemId":2500346,"className":"GLOBAL_2212package_Entrance","name":"Arctic Winter Entry Voucher Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Party_Enter_NoTrade/10;Ticket_earring_raid_NoTrade/10;Ticket_Jellyzele_Party_Enter_NoTrade/10;Ticket_TurbulentCore_Party_Enter_NoTrade/15;Ticket_TurbulentCore_Auto_Enter_NoTrade/15;"}},{"itemId":2500347,"className":"GLOBAL_2212package_Reward","name":"Arctic Winter Reward+ Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Multiple_Token_RevivalPaulius_Party_NoTrade/15;EP12_EXPERT_MODE_MULTIPLE_NoTrade/15;Multiple_Token_Jellyzele_Party_NoTrade/10;Multiple_Token_TurbulentCore_Party_NoTrade/20;"}},{"itemId":2500348,"className":"GLOBAL_2212package_Reinforce","name":"Arctic Winter Enhance Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_480_NoTrade/450;misc_Premium_reinforce_percentUp_460/70;Event_Reinforce_100000coupon/800;"}},{"itemId":2500349,"className":"GLOBAL_2212package_AIO","name":"Arctic Winter All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_2212package_Entrance/1;GLOBAL_2212package_Reward/1;GLOBAL_2212package_Reinforce/2;certificate_RidePet_PolarReindeer_1/1;"}},{"itemId":2500350,"className":"TWN_2212package_Entrance_B","name":"22 TWN December EntryB Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Jellyzele_Auto_Enter_NoTrade/20;Ticket_Jellyzele_Party_Enter_NoTrade/10;Multiple_Token_Jellyzele_Party_NoTrade/10;Ticket_earring_raid_NoTrade/10;Ticket_TurbulentCore_Auto_Enter_NoTrade/20;Multiple_Token_TurbulentCore_Party_NoTrade/10;misc_reinforce_percentUp_480_NoTrade/200;misc_Premium_reinforce_percentUp_460/100;"}},{"itemId":2500351,"className":"TWN_2212package_AIO","name":"22 TWN December All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"TWN_2212package_Entrance_B/1;GLOBAL_2212package_Reward/1;GLOBAL_2212package_Reinforce/2;certificate_RidePet_PolarReindeer_1/1;"}},{"itemId":2500352,"className":"JPN_2212package_Entrance_A","name":"22 JPN December EntryA Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_TurbulentCore_Auto_Enter_NoTrade/15;Multiple_Token_TurbulentCore_Auto_NoTrade/10;Ticket_TurbulentCore_Party_Enter_NoTrade/10;Multiple_Token_TurbulentCore_Party_NoTrade/10;misc_reinforce_percentUp_480_NoTrade/150;misc_Premium_reinforce_percentUp_460/50;"}},{"itemId":2500353,"className":"JPN_2212package_Entrance_B","name":"22 JPN December EntryB Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Party_Enter_NoTrade/10;Ticket_Jellyzele_Party_Enter_NoTrade/10;Ticket_earring_raid_NoTrade/20;Ticket_TurbulentCore_Auto_Enter_NoTrade/20;Ticket_Jellyzele_Auto_Enter_NoTrade/20;Ticket_RevivalPaulius_Auto_Enter_NoTrade/20;misc_reinforce_percentUp_480_NoTrade/200;misc_Premium_reinforce_percentUp_460/100;"}},{"itemId":2500354,"className":"JPN_2212package_Reward","name":"22 JPN December Reward+ Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP12_EXPERT_MODE_MULTIPLE_NoTrade/10;Multiple_Token_RevivalPaulius_Party_NoTrade/10;Multiple_Token_Jellyzele_Party_NoTrade/10;Multiple_Token_TurbulentCore_Party_NoTrade/5;Multiple_Token_RevivalPaulius_Auto_NoTrade/10;Multiple_Token_Jellyzele_Auto_NoTrade/10;/Multiple_Token_TurbulentCore_Auto_NoTrade/10;"}},{"itemId":2500355,"className":"JPN_2212package_AIO","name":"22 JPN December All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"JPN_2212package_Entrance_A/1;JPN_2212package_Entrance_B/1;JPN_2212package_Reward/1;certificate_RidePet_PolarReindeer_1/1;"}},{"itemId":2500356,"className":"GLOBAL_2301package_Entrance","name":"Snowy Treasures Entry Voucher Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Party_Enter_NoTrade/10;Ticket_earring_raid_NoTrade/10;Ticket_Jellyzele_Party_Enter_NoTrade/10;Ticket_TurbulentCore_Party_Enter_NoTrade/20;Ticket_TurbulentCore_Auto_Enter_NoTrade/15;"}},{"itemId":2500357,"className":"GLOBAL_2301package_Reward","name":"Snowy Treasures Reward+ Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Multiple_Token_RevivalPaulius_Party_NoTrade/15;EP12_EXPERT_MODE_MULTIPLE_NoTrade/10;Multiple_Token_Jellyzele_Party_NoTrade/10;Multiple_Token_TurbulentCore_Party_NoTrade/20;"}},{"itemId":2500358,"className":"GLOBAL_2301package_Reinforce","name":"Snowy Treasures Enhance Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_480_NoTrade/450;misc_Premium_reinforce_percentUp_460/110;VakarineCertificateCoin_10000p/10;Leticia_Newcle/15;Leticia_Siera/5;"}},{"itemId":2500359,"className":"GLOBAL_2301package_AIO","name":"Snowy Treasures All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_2301package_Entrance/1;GLOBAL_2301package_Reward/1;GLOBAL_2301package_Reinforce/2;randombox_AssistorCard/5;egg_016_skyblue_NoTrade/1;"}},{"itemId":2500360,"className":"JPN_2301package_Entrance","name":"23 JPN January Entry Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Party_Enter_NoTrade/10;Multiple_Token_RevivalPaulius_Party_NoTrade/5;Ticket_earring_raid_NoTrade/10;Multiple_Token_EarringRaid_NoTrade/5;Ticket_Jellyzele_Party_Enter_NoTrade/10;Multiple_Token_Jellyzele_Party_NoTrade/5;Ticket_TurbulentCore_Party_Enter_NoTrade/15;Multiple_Token_TurbulentCore_Party_NoTrade/10;Ticket_TurbulentCore_Auto_Enter_NoTrade/20;Multiple_Token_TurbulentCore_Auto_NoTrade/10;"}},{"itemId":2500361,"className":"JPN_2301package_Reinforce","name":"23 JPN January Enhance Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_480_NoTrade/350;misc_Premium_reinforce_percentUp_460/150;VakarineCertificateCoin_10000p/10;Leticia_Newcle/20;Leticia_Siera/10;"}},{"itemId":2500362,"className":"JPN_2301package_AIO","name":"23 JPN January All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"JPN_2301package_Entrance/1;JPN_2301package_Reinforce/2;randombox_AssistorCard/5;egg_016_skyblue_NoTrade/1;"}},{"itemId":2500363,"className":"GLOBAL_2302package_Entrance_A","name":"Farewell Winter Entry A Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Party_Enter_NoTrade/15;Ticket_earring_raid_NoTrade/15;Ticket_Jellyzele_Party_Enter_NoTrade/10;Ticket_TurbulentCore_Party_Enter_NoTrade/10;Ticket_TurbulentCore_Auto_Enter_NoTrade/20;Recycle_Shop_Medal/200;"}},{"itemId":2500364,"className":"GLOBAL_2302package_Entrance_B","name":"Farewell Winter Entry B Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/50;ChallengeExpertModeCountUp_NoTrade/25;EP12_EXPERT_MODE_MULTIPLE_NoTrade/25;SoloRaidCntReset_Team/10;misc_pvp_mine2_NotLimit_10000/5;Recycle_Shop_Medal/200;"}},{"itemId":2500365,"className":"GLOBAL_2302package_Reinforce","name":"Farewell Winter Enhance Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_480_NoTrade/400;misc_Premium_reinforce_percentUp_460/110;VakarineCertificateCoin_10000p/15;Leticia_Newcle/10;Leticia_Siera/10;"}},{"itemId":2500366,"className":"GLOBAL_2302package_AIO","name":"Farewell Winter All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_2302package_Entrance_A/1;GLOBAL_2302package_Entrance_B/1;GLOBAL_2302package_Reinforce/2;randombox_AssistorCard/5;Recycle_Shop_Medal/600;"}},{"itemId":2500367,"className":"STM_2023package_Entrance_Leticia","name":"2023 Leticia's Entry Voucher Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_TurbulentCore_Party_Enter/15;Ticket_Jellyzele_Party_Enter/30;"}},{"itemId":2500368,"className":"JPN_2302package_Entrance","name":"23 JPN February Entry Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Party_Enter_NoTrade/15;Ticket_earring_raid_NoTrade/15;Ticket_Jellyzele_Party_Enter_NoTrade/10;Ticket_TurbulentCore_Party_Enter_NoTrade/10;Ticket_TurbulentCore_Auto_Enter_NoTrade/15;Recycle_Shop_Medal/150;"}},{"itemId":2500369,"className":"JPN_2302package_Reinforce","name":"23 JPN February Enhance Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_480_NoTrade/300;misc_Premium_reinforce_percentUp_460/150;VakarineCertificateCoin_10000p/15;Leticia_Newcle/15;Leticia_Siera/5;"}},{"itemId":2500370,"className":"JPN_2302package_AIO","name":"23 JPN February All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"JPN_2302package_Entrance/1;JPN_2302package_Reinforce/2;randombox_AssistorCard/5;Recycle_Shop_Medal/400;"}},{"itemId":2500371,"className":"GLOBAL_2302_2_package_Entrance_A","name":"Ocelot Returns Entry A Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Party_Enter_NoTrade/10;Multiple_Token_RevivalPaulius_Party_NoTrade/10;Ticket_TurbulentCore_Party_Enter_NoTrade/15;Multiple_Token_TurbulentCore_Party_NoTrade/15;Ticket_TurbulentCore_Auto_Enter_NoTrade/15;Multiple_Token_TurbulentCore_Auto_NoTrade/15;"}},{"itemId":2500372,"className":"GLOBAL_2302_2_package_Entrance_B","name":"Ocelot Returns Entry B Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/30;ChallengeExpertModeCountUp_NoTrade/30;EP12_EXPERT_MODE_MULTIPLE_NoTrade/30;SoloRaidCntReset_Team/10;misc_pvp_mine2_NotLimit_10000/10;"}},{"itemId":2500373,"className":"GLOBAL_2302_2_package_Reinforce","name":"Ocelot Returns Enhance Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_480_NoTrade/300;misc_Premium_reinforce_percentUp_460/150;VakarineCertificateCoin_10000p/15;Leticia_Newcle/20;Leticia_Siera/10;"}},{"itemId":2500374,"className":"GLOBAL_2302_2_package_AIO","name":"Ocelot Returns All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GLOBAL_2302_2_package_Entrance_A/1;GLOBAL_2302_2_package_Entrance_B/1;GLOBAL_2302_2_package_Reinforce/1;egg_pet_twnocelot/1;"}},{"itemId":6360008,"className":"costume_Com_199_teamtrade","name":"[Event] GM's Astro Ambition Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":6360009,"className":"costume_Com_200_teamtrade","name":"[Event] GM's Astro Ambition Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10000012,"className":"Chat_Balloon_Event_Arbor_Day_30d","name":"[Event] Growing Tree Speech Bubble","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_BALLOON","strArg":"Balloon_0007","numArg1":2592000}},{"itemId":10000016,"className":"Chat_Balloon_Event_Childrens_Day_30d","name":"[Event] Yellow Chick Speech Bubble","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_BALLOON","strArg":"Balloon_0008","numArg1":2592000}},{"itemId":10000026,"className":"balloon_skin_icecream_01_90d","name":"Cherry Ice Cream Speech Bubble(90 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_BALLOON","strArg":"Balloon_0009","numArg1":7776000}},{"itemId":10000027,"className":"balloon_skin_icecream_02_90d","name":"Blueberry Ice Cream Speech Bubble(90 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_BALLOON","strArg":"Balloon_0010","numArg1":7776000}},{"itemId":10000044,"className":"Event_Skill_Ability_Reset_Package_1","name":"[TOSventure] Skill + Attribute Reset Potion Package","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Event_Skill_Ability_Reset_Package_14d"}},{"itemId":10000045,"className":"Event_Skill_Ability_Reset_Package_2","name":"[Stamp Tour] Skill + Attribute Reset Potion Package","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Event_Skill_Ability_Reset_Package_14d"}},{"itemId":10000064,"className":"Event_dungeoncount_1","name":"[FLEX BOX] Instanced Dungeon Multiply Token","type":"Etc","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000065,"className":"Event_dungeoncount_2","name":"[Lucky Ticket] Instanced Dungeon Multiply Token","type":"Etc","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000066,"className":"Event_dungeoncount_3","name":"[Stamp Tour] Instanced Dungeon Multiply Token","type":"Etc","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000077,"className":"Event_indunReset_Team_4","name":"[Goddess' Roulette] Instanced Dungeon Reset Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10000080,"className":"Event_dungeoncount_4","name":"[Goddess' Roulette] Instanced Dungeon Multiply Token","type":"Etc","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000081,"className":"Event_dungeoncount_5","name":"[Your Master] Instanced Dungeon Multiply Token","type":"Etc","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000082,"className":"Event_dungeoncount_6","name":"[Event] Instanced Dungeon Multiply Token","type":"Etc","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10000344,"className":"Event_Saved_Scroll_Neck","name":"Luciferie Necklace Property Restore Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"saved_scroll_neck"}},{"itemId":10000345,"className":"Event_Saved_Scroll_Ring","name":"Luciferie Bracelet Property Restore Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"saved_scroll_ring"}},{"itemId":10000375,"className":"Multiple_Token_MythicHARD_Event","name":"[21Summer] Res Sacrae Raid: Auto/Solo (Hard) Add. Reward Voucher","type":"Etc","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto_Hard","numArg1":2}},{"itemId":10000382,"className":"Ticket_Mythic_Auto_Event","name":"[21Summer] Res Sacrae Raid: Auto/Solo (Normal) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":812}},{"itemId":10000411,"className":"Multiple_Token_MythicHARD_Event2","name":"[Renewed] Res Sacrae Raid: Auto/Solo (Hard) Add. Reward Voucher","type":"Etc","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto_Hard","numArg1":2}},{"itemId":10000412,"className":"Ticket_Mythic_Auto_Event2","name":"[A Whole Renewed World] Res Sacrae Raid: Auto/Solo (Normal) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":812}},{"itemId":10000446,"className":"Multiple_Token_MythicHARD_Event3","name":"[Relic] Res Sacrae Raid: Auto/Solo (Hard) Add. Reward Voucher","type":"Etc","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto_Hard","numArg1":2}},{"itemId":10000447,"className":"Ticket_Mythic_Auto_Event3","name":"[Relic] Res Sacrae Raid: Auto/Solo (Normal) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":812}},{"itemId":10000449,"className":"Multiple_Token_MythicHARD_Event207","name":"[Eve] Res Sacrae Raid: Auto/Solo (Hard) Add. Reward Voucher","type":"Etc","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto_Hard","numArg1":2}},{"itemId":10000450,"className":"Ticket_Mythic_Auto_Event207","name":"[Eve] Res Sacrae Raid: Auto/Solo (Normal) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":812}},{"itemId":10000457,"className":"Multiple_Token_MythicHARD_Event33","name":"[Rabbit] Res Sacrae Raid: Auto/Solo (Hard) Add. Reward Voucher","type":"Etc","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto_Hard","numArg1":2}},{"itemId":10000458,"className":"Ticket_Mythic_Auto_Event33","name":"[Rabbit] Res Sacrae Raid: Auto/Solo (Normal) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":812}},{"itemId":10000467,"className":"Chat_Balloon_Event_Chuseok_30d","name":"[Event] Full Moon Speech Bubble (30 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_BALLOON","strArg":"Balloon_0011","numArg1":2592000}},{"itemId":10000468,"className":"Chat_Balloon_Cat_30d","name":"[Event] Speech Bubble - Kitty (30 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_BALLOON","strArg":"Balloon_0012","numArg1":2592000}},{"itemId":10000469,"className":"Chat_Balloon_Dog_30d","name":"[Event] Speech Bubble - Puppy (30 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_BALLOON","strArg":"Balloon_0013","numArg1":2592000}},{"itemId":10000470,"className":"ChallengeExpertModeCountUp_Ev_1","name":"[Event] Division Singularity One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeExpertModeCountUp"}},{"itemId":10000471,"className":"Ticket_Glacier_Easy_Ev_1","name":"[Event] White Witch's Forest : Legend (Auto Match) One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Glacier_Easy_2d","strArg":"Ticket_Glacier_Easy"}},{"itemId":10000472,"className":"Ticket_Giltine_Auto_Premium_Ev_1","name":"[Event] Demonic Sanctuary (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":814}},{"itemId":10000473,"className":"Ticket_Mythic_Auto_Event34","name":"[Event] Res Sacrae Raid: Auto/Solo (Normal) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":812}},{"itemId":10000474,"className":"Ticket_Mythic_Auto_Hard_Ev_1","name":"[Event] Res Sacrae Raid: Auto/Solo (Hard) One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_MythicDungeon_Auto_Hard_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":817}},{"itemId":10000475,"className":"Multiple_Token_MythicHARD_Event34","name":"[Event] Res Sacrae Raid: Auto/Solo (Hard) Add. Reward Voucher","type":"Etc","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto_Hard","numArg1":2}},{"itemId":10000476,"className":"item_event_invitation_card","name":"Content Invitation (31 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Contents_Invitation"}},{"itemId":10000482,"className":"Multiple_Token_MythicHARD_Event35","name":"[Halloween] Res Sacrae Raid: Auto/Solo (Hard) Add. Reward Voucher","type":"Etc","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto_Hard","numArg1":2}},{"itemId":10000483,"className":"Ticket_Mythic_Auto_Event35","name":"[Halloween] Res Sacrae Raid: Auto/Solo (Normal) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":812}},{"itemId":10000491,"className":"Multiple_Token_MythicAuto_Event_34","name":"[Halloween] Res Sacrae Raid: Auto/Solo (Normal) Multiply Token","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto","numArg1":2}},{"itemId":10000497,"className":"Multiple_Token_MythicHARD_Event37","name":"[Toasty] Res Sacrae Raid: Auto/Solo (Hard) Add. Reward Voucher","type":"Etc","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto_Hard","numArg1":2}},{"itemId":10000498,"className":"Ticket_Mythic_Auto_Event37","name":"[Toasty] Res Sacrae Raid: Auto/Solo (Normal) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":812}},{"itemId":10000507,"className":"Multiple_Token_MythicAuto_Event_37","name":"[Toasty] Res Sacrae Raid: Auto/Solo (Normal) Multiply Token","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto","numArg1":2}},{"itemId":10000512,"className":"Multiple_Token_MythicHARD_Achieve_1","name":"[Event] Res Sacrae Raid: Auto/Solo (Hard) Add. Reward Voucher","type":"Etc","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto_Hard","numArg1":2}},{"itemId":10000513,"className":"Multiple_Token_MythicAuto_Achieve_1","name":"[Event] Res Sacrae Raid: Auto/Solo (Normal) Multiply Token","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto","numArg1":2}},{"itemId":10000519,"className":"Multiple_Token_MythicHARD_Event38","name":"[Stamp] Res Sacrae Raid: Auto/Solo(Hard) Add. Reward Voucher","type":"Etc","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto_Hard","numArg1":2}},{"itemId":10000520,"className":"Multiple_Token_MythicHARD_Event39","name":"[6th] Res Sacrae Raid: Auto/Solo (Hard) Add. Reward Voucher","type":"Etc","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto_Hard","numArg1":2}},{"itemId":10000521,"className":"Ticket_Mythic_Auto_Event39","name":"[6th] Res Sacrae Raid: Auto/Solo (Normal) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":812}},{"itemId":10000522,"className":"Multiple_Token_MythicAuto_Event_39","name":"[6th] Res Sacrae Raid: Auto/Solo (Normal) Multiply Token","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto","numArg1":2}},{"itemId":10000532,"className":"CARE_ADD_EP_ACHIEVE_POINT","name":"[Reward] EP Achievement Clear Scroll (EP.1~EP.13-1)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_TX_ADD_EP_ACHIEVE_POINT_CHECK","strArg":"All13"}},{"itemId":10000533,"className":"CARE_ADD_EP_ACHIEVE_POINT_2","name":"[Reward] Achievement Clear Scroll - EP 1 Special Vocation","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_TX_ADD_EP_ACHIEVE_POINT_CHECK","numArg1":1}},{"itemId":10000534,"className":"CARE_ADD_EP_ACHIEVE_POINT_3","name":"[Reward] Achievement Clear Scroll - EP 1 Long Wait","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_TX_ADD_EP_ACHIEVE_POINT_CHECK","numArg1":2}},{"itemId":10000535,"className":"CARE_ADD_EP_ACHIEVE_POINT_4","name":"[Reward] Achievement Clear Scroll - EP 2 Encounter with Demon Lord","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_TX_ADD_EP_ACHIEVE_POINT_CHECK","numArg1":3}},{"itemId":10000536,"className":"CARE_ADD_EP_ACHIEVE_POINT_5","name":"[Reward] Achievement Clear Scroll - EP 2 Corrupted Earth","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_TX_ADD_EP_ACHIEVE_POINT_CHECK","numArg1":4}},{"itemId":10000537,"className":"CARE_ADD_EP_ACHIEVE_POINT_6","name":"[Reward] Achievement Clear Scroll - EP 3 Goddess Believe in Human","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_TX_ADD_EP_ACHIEVE_POINT_CHECK","numArg1":5}},{"itemId":10000538,"className":"CARE_ADD_EP_ACHIEVE_POINT_7","name":"[Reward] Achievement Clear Scroll - EP 3 Demon of Delmore Castle","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_TX_ADD_EP_ACHIEVE_POINT_CHECK","numArg1":6}},{"itemId":10000539,"className":"CARE_ADD_EP_ACHIEVE_POINT_8","name":"[Reward] Achievement Clear Scroll - EP 4 Tomb of the Great King","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_TX_ADD_EP_ACHIEVE_POINT_CHECK","numArg1":7}},{"itemId":10000540,"className":"CARE_ADD_EP_ACHIEVE_POINT_9","name":"[Reward] Achievement Clear Scroll - EP 4 Goddess Saving Human","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_TX_ADD_EP_ACHIEVE_POINT_CHECK","numArg1":8}},{"itemId":10000541,"className":"CARE_ADD_EP_ACHIEVE_POINT_10","name":"[Reward] Achievement Clear Scroll - EP 5 Flame Guarding Tower","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_TX_ADD_EP_ACHIEVE_POINT_CHECK","numArg1":9}},{"itemId":10000542,"className":"CARE_ADD_EP_ACHIEVE_POINT_11","name":"[Reward] Achievement Clear Scroll - EP 6 Maven Hardship","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_TX_ADD_EP_ACHIEVE_POINT_CHECK","numArg1":10}},{"itemId":10000543,"className":"CARE_ADD_EP_ACHIEVE_POINT_12","name":"[Reward] Achievement Clear Scroll - EP 7 After Goddess’ Will","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_TX_ADD_EP_ACHIEVE_POINT_CHECK","numArg1":11}},{"itemId":10000544,"className":"CARE_ADD_EP_ACHIEVE_POINT_13","name":"[Reward] Achievement Clear Scroll - EP 8 Sacrifice for Mission","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_TX_ADD_EP_ACHIEVE_POINT_CHECK","numArg1":12}},{"itemId":10000545,"className":"CARE_ADD_EP_ACHIEVE_POINT_14","name":"[Reward] Achievement Clear Scroll - EP 9 Plan for Demon God","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_TX_ADD_EP_ACHIEVE_POINT_CHECK","numArg1":13}},{"itemId":10000546,"className":"CARE_ADD_EP_ACHIEVE_POINT_15","name":"[Reward] Achievement Clear Scroll - EP 10 Demon Alliance","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_TX_ADD_EP_ACHIEVE_POINT_CHECK","numArg1":14}},{"itemId":10000547,"className":"CARE_ADD_EP_ACHIEVE_POINT_16","name":"[Reward] Achievement Clear Scroll - Laima's Savior","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_TX_ADD_EP_ACHIEVE_POINT_CHECK","numArg1":15}},{"itemId":10000548,"className":"CARE_ADD_EP_ACHIEVE_POINT_17","name":"[Reward] Achievement Clear Scroll - EP 11 Beyond the Astral Tower","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_TX_ADD_EP_ACHIEVE_POINT_CHECK","numArg1":16}},{"itemId":10000549,"className":"CARE_ADD_EP_ACHIEVE_POINT_18","name":"[Reward] Achievement Clear Scroll - The Sober Judge of Fate","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_TX_ADD_EP_ACHIEVE_POINT_CHECK","numArg1":17}},{"itemId":10000550,"className":"CARE_ADD_EP_ACHIEVE_POINT_19","name":"[Reward] Achievement Clear Scroll - Shadow Trail","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_TX_ADD_EP_ACHIEVE_POINT_CHECK","numArg1":18}},{"itemId":10000551,"className":"CARE_ADD_EP_ACHIEVE_POINT_20","name":"[Reward] Achievement Clear Scroll - EP 12-1 Completion of the Mission","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_TX_ADD_EP_ACHIEVE_POINT_CHECK","numArg1":19}},{"itemId":10000552,"className":"CARE_ADD_EP_ACHIEVE_POINT_21","name":"[Reward] Achievement Clear Scroll - EP 12-2 Fate","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_TX_ADD_EP_ACHIEVE_POINT_CHECK","numArg1":20}},{"itemId":10000553,"className":"CARE_ADD_EP_ACHIEVE_POINT_22","name":"[Reward] Achievement Clear Scroll - EP 13-1 Demon after the Divine Tree","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_TX_ADD_EP_ACHIEVE_POINT_CHECK","numArg1":21}},{"itemId":10000554,"className":"CARE_ADD_EP_ACHIEVE_POINT_23","name":"[Reward] Achievement Clear Scroll - EP 13-2 Prayers Unanswered","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_TX_ADD_EP_ACHIEVE_POINT_CHECK","numArg1":22}},{"itemId":10000557,"className":"Ticket_RevivalPaulius_Party_Enter_Event_39","name":"[6th] Delmore Battlefield: Goddess One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":822}},{"itemId":10000558,"className":"Ticket_RevivalPaulius_Auto_Enter_Event_39","name":"[6th] Delmore Battlefield (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":821}},{"itemId":10000559,"className":"Ticket_earring_raid_Event_39","name":"[6th] Memory of Flame One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Ticket_earring_raid_1d"}},{"itemId":10000561,"className":"Multiple_Token_MythicHARD_Event_40","name":"[Event] Res Sacrae Raid: Auto/Solo (Hard) Add. Reward Voucher","type":"Etc","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto_Hard","numArg1":2}},{"itemId":10000562,"className":"Multiple_Token_MythicHARD_Event41","name":"[Berk's Visit] Res Sacrae Raid: Auto/Solo (Hard) Add. Reward Voucher","type":"Etc","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto_Hard","numArg1":2}},{"itemId":10000563,"className":"Ticket_Mythic_Auto_Event41","name":"[Berk's Visit] Res Sacrae Raid: Auto/Solo (Normal) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":812}},{"itemId":10000564,"className":"Multiple_Token_MythicAuto_Event_41","name":"[Berk's Visit] Res Sacrae Raid: Auto/Solo (Normal) Multiply Token","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto","numArg1":2}},{"itemId":10000574,"className":"Ticket_RevivalPaulius_Party_Enter_Event_41","name":"[Berk's Visit] Delmore Battlefield: Goddess One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":822}},{"itemId":10000575,"className":"Ticket_RevivalPaulius_Auto_Enter_Event_41","name":"[Berk's Visit] Delmore Battlefield (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":821}},{"itemId":10000576,"className":"Ticket_earring_raid_Event_41","name":"[Berk's Visit] Memory of Flame One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Ticket_earring_raid_1d"}},{"itemId":10000610,"className":"Event_Ticket_RevivalPaulius_Auto_Enter_limit","name":"[Rabbit] Delmore Battlefield (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":821}},{"itemId":10000611,"className":"Event_Ticket_Vasilissa_Party_Enter_limit","name":"[Rabbit] Saint's Sacellum (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":819}},{"itemId":10000612,"className":"Event_Ticket_earring_raid_limit","name":"[Rabbit] Memory of Flame One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Ticket_earring_raid_1d"}},{"itemId":10000614,"className":"Chat_Balloon_Event_Chuseok","name":"[Event] Full Moon Speech Bubble","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_BALLOON","strArg":"Balloon_0011"}},{"itemId":10000615,"className":"Ticket_Jellyzele_Auto_Enter_limit","name":"[Rabbit] Sinking Seizure (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":823}},{"itemId":10000616,"className":"Ticket_TurbulentCore_Auto_Enter_limit","name":"[Rabbit] Turbulent Core (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":826}},{"itemId":10002032,"className":"Event_Ticket_RevivalPaulius_Auto_Enter_limit_1","name":"[New Year] Delmore Battlefield (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":821}},{"itemId":10002033,"className":"Event_Ticket_Vasilissa_Party_Enter_limit_1","name":"[New Year] Saint's Sacellum (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":819}},{"itemId":10002034,"className":"Event_EXPERT_MODE_MULTIPLE_limit_1","name":"[New Year] Division Singularity Add. Reward Voucher","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"CHALLENGE_HARDMODE_MULTIPLE","numArg1":2}},{"itemId":10002035,"className":"Event_Ticket_earring_raid_limit_1","name":"[New Year] Memory of Flame One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Ticket_earring_raid_1d"}},{"itemId":10002036,"className":"Ticket_Jellyzele_Auto_Enter_limit_1","name":"[New Year] Sinking Seizure (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":823}},{"itemId":10002037,"className":"Ticket_TurbulentCore_Auto_Enter_limit_1","name":"[New Year] Turbulent Core (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":826}},{"itemId":10003003,"className":"Event_Transcend_Scroll_8_420Lv_2","name":"[Lv. 420] Stage 8 Transcendence Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_420","numArg1":8,"numArg2":100}},{"itemId":10003028,"className":"Event_RankReset_Point_Lv3_90d","name":"[Event] Class Change Voucher Lv. 3 (90 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"EVENT_RankReset_Point_Lv3","numArg1":1000}},{"itemId":10003030,"className":"Event_Skill_Ability_Reset_Package_14d_2","name":"[Event] Skill + Attribute Reset Potion Package (14 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Event_Skill_Ability_Reset_Package_14d"}},{"itemId":10003031,"className":"Selectbox_EventMoonlightWeapon_2","name":"Moonlight Legend Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":100000}},{"itemId":10003038,"className":"Event_Transcend_Scroll_5_430Lv","name":"[Lv. 430] Stage 5 Transcendence Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_430","numArg1":5,"numArg2":100}},{"itemId":10003039,"className":"Event_Transcend_Scroll_8_430Lv","name":"[Lv. 430] Stage 8 Transcendence Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_430","numArg1":8,"numArg2":100}},{"itemId":10003058,"className":"Event_Transcend_Scroll_5_440Lv_Weapon","name":"[Lv. 440] Transcendence Stage 5 Scroll - Weapon","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_440_Weapon","numArg1":5,"numArg2":100}},{"itemId":10003059,"className":"Event_Transcend_Scroll_5_440Lv_Armor","name":"[Lv. 440] Transcendence Stage 5 Scroll - Armor","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_440_Armor","numArg1":5,"numArg2":100}},{"itemId":10003060,"className":"Event_Transcend_Scroll_5_440Lv_Accessory","name":"[Lv. 440] Transcendence Stage 5 Scroll - Accessory","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_440_Accessory","numArg1":5,"numArg2":100}},{"itemId":10003063,"className":"Event_RankReset_Point_Lv4_90d_Team","name":"[Event] Class Change Voucher Lv. 4 (90 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"EVENT_RankReset_Point_Lv4","numArg1":3000}},{"itemId":10003115,"className":"Event_RankReset_Point_Lv3_90d_2","name":"[Event] Class Change Voucher Lv. 3 (90 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"EVENT_RankReset_Point_Lv3","numArg1":1000}},{"itemId":10003122,"className":"Event_Transcend_Scroll_8_440Lv_Weapon","name":"[Lv. 440] Stage 8 Transcendence Scroll - Weapon (30 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_440_Weapon","numArg1":8,"numArg2":100}},{"itemId":10003123,"className":"Event_Transcend_Scroll_8_440Lv_Armor","name":"[Lv. 440] Stage 8 Transcendence Scroll - Armor (30 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_440_Armor","numArg1":8,"numArg2":100}},{"itemId":10003124,"className":"Event_Transcend_Scroll_8_440Lv_Accessory","name":"[Lv. 440] Stage 8 Transcendence Scroll - Accessory (30 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_440_Accessory","numArg1":8,"numArg2":100}},{"itemId":10003169,"className":"Event_Transcend_Scroll_8_440Lv_Weapon_2","name":"[Lv. 440] Stage 8 Transcendence Scroll - Weapon (30 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_440_Weapon","numArg1":8,"numArg2":100}},{"itemId":10003170,"className":"Event_Transcend_Scroll_8_440Lv_Armor_2","name":"[Lv. 440] Stage 8 Transcendence Scroll - Armor (30 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_440_Armor","numArg1":8,"numArg2":100}},{"itemId":10003171,"className":"Event_Transcend_Scroll_8_440Lv_Accessory_2","name":"[Lv. 440] Stage 8 Transcendence Scroll - Accessory (30 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_440_Accessory","numArg1":8,"numArg2":100}},{"itemId":10003286,"className":"Event_Transcend_Scroll_10_440Lv_Weapon_3","name":"[Lv. 440] Transcendence Stage 10 Scroll - Weapon (30 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_440_Weapon","numArg1":10,"numArg2":100}},{"itemId":10003287,"className":"Event_Transcend_Scroll_10_440Lv_Armor_3","name":"[Lv. 440] Transcendence Stage 10 Scroll - Armor (30 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_440_Armor","numArg1":10,"numArg2":100}},{"itemId":10003288,"className":"Event_Transcend_Scroll_10_440Lv_Accessory_3","name":"[Lv. 440] Transcendence Stage 10 Scroll - Accessory (30 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_440_Accessory","numArg1":10,"numArg2":100}},{"itemId":10003289,"className":"Event_Transcend_Old_Scroll_10_440Lv_Wp","name":"[Lv. 440] Shabby Transcendence Stage 10 Scroll - Weapon (30 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_440_Weapon_Old","numArg1":10,"numArg2":100}},{"itemId":10003290,"className":"Event_Transcend_Old_Scroll_10_440Lv_Amr","name":"[Lv. 440] Shabby Transcendence Stage 10 Scroll - Armor (30 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_440_Armor_Old","numArg1":10,"numArg2":100}},{"itemId":10003291,"className":"Event_Transcend_Old_Scroll_10_440Lv_Acc","name":"[Lv. 440] Shabby Transcendence Stage 10 Scroll- Accessory (30 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_440_Accessory_Old","numArg1":10,"numArg2":100}},{"itemId":10003345,"className":"2021_Enchant_Scroll_Main_440Lv","name":"[2021] Main Weapon Vaivora Enchant Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"ENCHANT_SCROLL_VIBORA_MAIN","numArg1":1,"numArg2":100}},{"itemId":10003346,"className":"2021_Enchant_Scroll_Sub_440Lv","name":"[2021] Sub-Weapon Vaivora Enchant Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"ENCHANT_SCROLL_VIBORA_SUB","numArg1":1,"numArg2":100}},{"itemId":10003347,"className":"2021_SetOption_Scroll_Armor_440Lv","name":"[2021] Armor Set Stats Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"SETOPTION_SCROLL_ARMOR","numArg1":1,"numArg2":100}},{"itemId":10003348,"className":"2021_SetOption_Scroll_Weapon_440Lv","name":"[2021] Weapon Set Stats Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"SETOPTION_SCROLL_WEAPON","numArg1":1,"numArg2":100}},{"itemId":10003420,"className":"AbillityArts_Box_Total_Event_2","name":"[Event] Arts Reset Potion Profession Selection Box (30 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003428,"className":"Event_Transcend_Scroll_8_440Lv_Weapon_1","name":"[Lv. 440] Transcendence Stage 8 Scroll - Weapon (90 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_440_Weapon","numArg1":8,"numArg2":100}},{"itemId":10003429,"className":"Event_Transcend_Scroll_8_440Lv_Armor_1","name":"[Lv. 440] Transcendence Stage 8 Scroll - Armor (90 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"transcend_Set_440_Armor","numArg1":8,"numArg2":100}},{"itemId":10004032,"className":"Event_Ticket_RevivalPaulius_Auto_Enter_limit_2","name":"[Arbor Day] Delmore Battlefield (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":821}},{"itemId":10004033,"className":"Event_Ticket_Vasilissa_Party_Enter_limit_2","name":"[Arbor Day] Saint's Sacellum (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":819}},{"itemId":10004034,"className":"Event_EXPERT_MODE_MULTIPLE_limit_2","name":"[Sow] Division Singularity Add. Reward Voucher","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"CHALLENGE_HARDMODE_MULTIPLE","numArg1":2}},{"itemId":10004035,"className":"Event_Ticket_earring_raid_limit_2","name":"[Arbor Day] Memory of Flame One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Ticket_earring_raid_1d"}},{"itemId":10004036,"className":"Ticket_Jellyzele_Auto_Enter_limit_2","name":"[Arbor Day] Sinking Seizure (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":823}},{"itemId":10004037,"className":"Ticket_TurbulentCore_Auto_Enter_limit_2","name":"[Arbor Day] Turbulent Core (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":826}},{"itemId":10010010,"className":"Old_Socket_Gold_Event_1","name":"[TOSventure] Ancient Golden Socket","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"OLD_GOLD_SOCKET","numArg1":3,"numArg2":3}},{"itemId":10010011,"className":"Old_Socket7_Gold_Event_2","name":"[Stamp Tour] Ancient Golden Socket","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"OLD_GOLD_SOCKET","numArg1":3,"numArg2":3}},{"itemId":10010012,"className":"Old_Socket_Gold_Event_3","name":"[Event] Ancient Golden Socket","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"OLD_GOLD_SOCKET","numArg1":460,"numArg2":3}},{"itemId":10010040,"className":"Old_Socket_Gold_Event_4","name":"[Growth Support] Ancient Golden Socket","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"OLD_GOLD_SOCKET","numArg1":3,"numArg2":3}},{"itemId":10021001,"className":"Tuto_indunReset_Team","name":"[Tutorial] Instanced Dungeon Reset Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":10021002,"className":"Tuto_dungeoncount","name":"[Tutorial] Instanced Dungeon Multiply Token","type":"Etc","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"MultipleIndunToken","numArg1":1,"numArg2":3}},{"itemId":10021003,"className":"Tuto_SECOND_CHALLENG","name":"[Tutorial] Challenge Portal Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":10,"sellPrice":10,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EVENT_1712_SECOND_CHALLENG"}},{"itemId":10021004,"className":"Tuto_ChallengeModeReset","name":"[Tutorial] Challenge Mode One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":10021007,"className":"Tuto_SoloRaidCntReset_Team","name":"[Tutorial] Sole Hunt One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_FreeDungeon_Solo_Raid_Cnt","strArg":"SoloRaidCntReset_Team","numArg1":1}},{"itemId":10021008,"className":"Tuto_RankReset_Point_Lv1_90d_Team","name":"[Tutorial] Class Change Voucher Lv. 1 (90 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"EVENT_190110_RankReset_Point_Lv1","numArg1":100}},{"itemId":10021010,"className":"Tuto__RankReset_Point_Lv3_90d","name":"[Tutorial] Class Change Voucher Lv. 3 (90 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"EVENT_RankReset_Point_Lv3","numArg1":1000}},{"itemId":10300002,"className":"EVENT_Arbor_Day_Fundamental_T","name":"Arbor Day Root T-Shirt","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300004,"className":"EVENT_Summer_Watermelon_m","name":"[Event] Watermelon Tank-top (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300005,"className":"EVENT_Summer_Watermelon_f","name":"[Event] Watermelon Dress (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300007,"className":"EVENT_Police_M","name":"Policeman Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300008,"className":"EVENT_Police_F","name":"Policeman Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300009,"className":"EVENT_Police_M_14d","name":"[Event] Policeman Costume (Male) (14 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300010,"className":"EVENT_Police_F_14d","name":"[Event] Policeman Costume (Female) (14 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300011,"className":"EVENT_Hanbok_yellow_m","name":"Full Moon Hanbok Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300012,"className":"EVENT_Hanbok_yellow_f","name":"Full Moon Hanbok Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300013,"className":"EVENT_Hanbok_yellow_m_14d","name":"[Event] Full Moon Hanbok Costume Box (Male)(14 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300014,"className":"EVENT_Hanbok_yellow_f_14d","name":"[Event] Full Moon Hanbok Costume Box (Female)(14 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300015,"className":"EVENT_Yellow_Watermelon_m","name":"[Event] Yellow Watermelon Tank-top (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300016,"className":"EVENT_Yellow_Watermelon_f","name":"[Event] Yellow Watermelon Dress (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300017,"className":"EVENT_Skyblue_kindergartener02_m","name":"[Event] Sky Blue Laima Kindergarten Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300018,"className":"EVENT_Skyblue_kindergartener02_f","name":"[Event] Sky Blue Laima Kindergarten Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300019,"className":"EVENT_Skyblue_kindergartener02_m_7d","name":"[Event] Sky Blue Laima Kindergarten Costume (Male) (7 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300020,"className":"EVENT_Skyblue_kindergartener02_f_7d","name":"[Event] Sky Blue Laima Kindergarten Costume (Female) (7 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300021,"className":"EVENT_Vampire_m_7d","name":"[Event] Vampire Costume (Male) (7 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300022,"className":"EVENT_Vampire_f_7d","name":"[Event] Vampire Costume (Female) (7 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300023,"className":"EVENT_Space_m_7d","name":"[Event] Martian Ambition Costume (Male) (7 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300024,"className":"EVENT_Space_f_7d","name":"[Event] Martian Ambition Costume (Female) (7 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300025,"className":"EVENT_Whitenurse_m_7d","name":"[Event] Pure White Nurse Costume (Male) (7 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300026,"className":"EVENT_Whitenurse_f_7d","name":"[Event] Pure White Nurse Costume (Female) (7 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300027,"className":"EVENT_Schooluniform_m_7d","name":"[Event] Trouble Gang School Uniform (Male) (7 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300028,"className":"EVENT_Schooluniform_f_7d","name":"[Event] Trouble Gang School Uniform (Female) (7 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300029,"className":"EVENT_Guilty_m_7d","name":"[Event] Giltine Follower Robe (Male) (7 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300030,"className":"EVENT_Guilty_f_7d","name":"[Event] Giltine Follower Robe (Female) (7 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300031,"className":"EVENT_Spiderweb_m_7d","name":"[Event] Spider Web Costume (Male) (7 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300032,"className":"EVENT_Spiderweb_f_7d","name":"[Event] Spider Web Costume (Female) (7 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300033,"className":"EVENT_Blackcat_m_7d","name":"[Event] Black Cat Costume (Male) (7 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300034,"className":"EVENT_Blackcat_f_7d","name":"[Event] Black Cat Costume (Female) (7 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300035,"className":"EVENT_Skull_7d","name":"[Event] Luminous Skeleton Costume (7 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300036,"className":"EVENT_Sweat_suit_white","name":"[Event] White Tracksuit","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300037,"className":"EVENT_Sweat_suit_white_7d","name":"[Event] White Tracksuit (7 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300038,"className":"EVENT_halloweenwolf_black_m","name":"[Event] Black Wolf Costume (Male) ","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300039,"className":"EVENT_halloweenwolf_black_f","name":"[Event] Black Wolf Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300040,"className":"EVENT_halloweenwolf_black_m_7d","name":"[Event] Black Wolf Costume (Male) (7 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300041,"className":"EVENT_halloweenwolf_black_f_7d","name":"[Event] Black Wolf Costume (Female) (7 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300042,"className":"EVENT_Skyblue_kindergartener02_m_EDT","name":"[Halloween] Sky Blue Laima Kindergarten Costume (Male)(Temporary)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300043,"className":"EVENT_Skyblue_kindergartener02_f_EDT","name":"[Halloween] Sky Blue Laima Kindergarten Costume (Female)(Temporary)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300044,"className":"EVENT_halloweenwolf_black_m_EDT","name":"[Halloween] Black Wolf Costume (Male)(Temporary)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300045,"className":"EVENT_halloweenwolf_black_f_EDT","name":"[Halloween] Black Wolf Costume (Female)(Temporary)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300046,"className":"EVENT_Sweat_suit_white_EDT","name":"[Halloween] White Tracksuit (Temporary)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300049,"className":"2103_ARBOR_DAY_M","name":"[Event] TOS Sprout Shirt (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300050,"className":"2103_ARBOR_DAY_F","name":"[Event] TOS Sprout Shirt (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300051,"className":"2103_ARBOR_DAY_balloon","name":"[Event] Arbor Day Popolion Balloon","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":10300052,"className":"JP_EVENT_Police_M","name":"Policeman Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300053,"className":"JP_EVENT_Police_F","name":"Policeman Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300054,"className":"JP_EVENT_Police_M_14d","name":"[Event] Policeman Costume (Male) (14 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300055,"className":"JP_EVENT_Police_F_14d","name":"[Event] Policeman Costume (Female) (14 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300056,"className":"Event_chick_balloon","name":"[Event] Chickling Balloon","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":10300057,"className":"Event_costume_fes2021_m","name":"I♥TOS Costume (Male) (Cannot Trade)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300058,"className":"Event_costume_fes2021_f","name":"I♥TOS Costume (Female) (Cannot Trade)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300059,"className":"EVENT_Summer_Watermelon_m_14d","name":"[Event] Watermelon Tank-top (Male) - 14 Days","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300060,"className":"EVENT_Summer_Watermelon_f_14d","name":"[Event] Watermelon Tank-top (Female) - 14 Days","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300061,"className":"EVENT_Skyblue_kindergartener02_m_14d","name":"[Event] Sky Blue Laima Kindergarten Costume (Male) - 14 Days","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300062,"className":"EVENT_Skyblue_kindergartener02_f_14d","name":"[Event] Sky Blue Laima Kindergarten Costume (Female) - 14 Days","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300063,"className":"EVENT_halloweenwolf_black_m_7d2","name":"[Event] Black Wolf Costume (Male) (7 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300064,"className":"EVENT_halloweenwolf_black_f_7d2","name":"[Event] Black Wolf Costume (Female) (7 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300065,"className":"EVENT_Sweat_suit_white_7d2","name":"[Event] White Tracksuit (7 Days)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300066,"className":"EVENT_Arbor_Day_Fundamental_T2","name":"Arbor Day Root T-Shirt","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300067,"className":"Event_costume_2021_X_Mas_m","name":"[Event] Christmas Snow Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300068,"className":"Event_costume_2021_X_Mas_f","name":"[Event] Christmas Snow Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10300070,"className":"EVENT_halloweenwolf_black_m_2","name":"[Event] Black Wolf Costume (Male) ","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":10600001,"className":"Event_GuildQuestEnterCount_1add_BOX","name":"Guild Quest One Entry Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GuildQuestEnterCount_1add/30"}},{"itemId":10600002,"className":"Event_GuildMileage_Paper_200_BOX","name":"Guild Mileage Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"GuildMileage_Paper_200/50"}},{"itemId":10600003,"className":"Event_ENCHANTJEWEL_Box","name":"[Event] Enchant Jewel Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"event_Legend_Enchant_Jewel_430/1;event_Unique_Enchant_Jewel_430/5"}},{"itemId":10600004,"className":"Event_Sandra_Glass_1line_14d","name":"[Event] Sandra's Detailed Magnifier (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600005,"className":"Event_Sandra_Glass_14d","name":"[Event] Sandra's Magnifier (14 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":10600006,"className":"emoticonItem_77_79","name":"Emotion Package : Maru (3 types)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON_PACK","strArg":"malsuns_emotion","numArg1":77,"numArg2":79}},{"itemId":10600007,"className":"Event_Sandra_Glass_1line","name":"[Event] Sandra's Detailed Magnifier","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600008,"className":"Event_Pamoca_Box","name":"[Event] Pamoka Solution Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_PC_PAMOCA_Box","strArg":"Normal","numArg1":3}},{"itemId":10600009,"className":"emoticonItem_103_105","name":"Emote Plus: Glacia Zofija","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON_PACK","strArg":"glacier_emoticon","numArg1":103,"numArg2":105}},{"itemId":10600010,"className":"Event_Sandra_Glass_1","name":"[TOSventure] Sandra's Magnifier","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":10600011,"className":"Event_Sandra_Glass_2","name":"[FLEX BOX] Sandra's Magnifier","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass"}},{"itemId":10600013,"className":"Event_Sandra_Glass_1line_1","name":"[TOSventure] Sandra's Detailed Magnifier","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600014,"className":"Event_Sandra_Glass_1line_2","name":"[FLEX BOX] Sandra's Detailed Magnifier","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600015,"className":"Event_Sandra_Glass_1line_3","name":"[Lucky Ticket] Sandra's Detailed Magnifier","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600028,"className":"Event_Sandra_Glass_1line_4","name":"[Stamp Tour] Sandra's Detailed Magnifier","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600030,"className":"Event_Sandra_Glass_1line_6","name":"[Your Master] Sandra's Detailed Magnifier","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"strArg":"Sandra_Glass_1line"}},{"itemId":10600042,"className":"Event_Enchantchip_5","name":"[Full Moon] Enchant Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10600045,"className":"emoticonItem_109_110","name":"[Event] Giltine Emoticon Package (2 types)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON_PACK","strArg":"giltine_emotion","numArg1":109,"numArg2":110}},{"itemId":10600046,"className":"emoticonItem_111_112","name":"[Event] Laima Emoticon Package (2 types)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON_PACK","strArg":"raima_emotion","numArg1":111,"numArg2":112}},{"itemId":10600049,"className":"Event_Enchantchip_200","name":"[Halloween] Enchant Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10600056,"className":"Event_Enchantchip_6","name":"[Growth Support] Enchant Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10600063,"className":"Event_Enchantchip_7","name":"[Attendance] Enchant Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10600071,"className":"Event_Enchantchip_8","name":"[5th Anniversary] Enchant Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10600076,"className":"Event_Enchantchip_201","name":"[Attendance] Enchant Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10600079,"className":"emoticonItem_115_116","name":"[Event] Mulia Emoticon Package (2 types)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ADD_CHAT_EMOTICON_PACK","strArg":"Mulia_emotion","numArg1":115,"numArg2":116}},{"itemId":10600083,"className":"Event_Enchantchip_202","name":"[1st Anniversary] Enchant Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10600101,"className":"Event_Pamoca_Box_1","name":"[2021] Pamoka Solution Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_PC_PAMOCA_Box","strArg":"Normal","numArg1":3}},{"itemId":10600160,"className":"Event_Enchantchip_205","name":"[Attendance] Enchant Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10600161,"className":"Event_Enchantchip_25","name":"[Renewed] Enchant Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":3,"numArg2":3}},{"itemId":10600166,"className":"Ticket_Vasilissa_Party_Enter_NoTrade_Event25","name":"[Renewed] Saint's Sacellum: Goddess One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":818}},{"itemId":10600181,"className":"Ticket_Vasilissa_Party_Enter_NoTrade_Event33","name":"[Rabbit] Saint's Sacellum (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":819}},{"itemId":10600185,"className":"Ticket_Vasilissa_Party_Enter_NoTrade_Event34","name":"[Event] Saint's Sacellum (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":819}},{"itemId":10600190,"className":"Ticket_Vasilissa_Party_Enter_NoTrade_Event35","name":"[Halloween] Saint's Sacellum (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":819}},{"itemId":10600199,"className":"Ticket_Vasilissa_Party_Enter_NoTrade_Event38","name":"[Stamp] Saint's Sacellum: Goddess One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":818}},{"itemId":10600206,"className":"Ticket_Vasilissa_Party_Enter_NoTrade_Event39","name":"[6th] Saint's Sacellum (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":819}},{"itemId":10600216,"className":"Ticket_Vasilissa_Party_Enter_NoTrade_Event40","name":"[Toasty] Saint's Sacellum (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":819}},{"itemId":10600217,"className":"Ticket_Giltine_Auto_Premium_Ev_2","name":"[Toasty] Demonic Sanctuary (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":814}},{"itemId":10810001,"className":"Episode12_Disnai_Weapon_box_Main","name":"[EP12] 8 ENH 3 TRA Savinose Dysnai Main Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10810002,"className":"Episode12_Disnai_Weapon_box_Sub","name":"[EP12] 8 ENH 3 TRA Savinose Dysnai Sub-Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10810003,"className":"Epo_Disnai_Aromor_box_top","name":"[EP12] 8 ENH 3 TRA Savinose Armor Set Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10810004,"className":"Epo_Disnai_Aromor_box_1","name":"[EP12] 8 ENH 3 TRA Savinose Leather Armor Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT_OPT","strArg":"Episode12_EP12_FIELD_TOP_002/1/Reinforce_2/8/Transcend/3;Episode12_EP12_FIELD_LEG_002/1/Reinforce_2/8/Transcend/3;Episode12_EP12_FIELD_FOOT_002/1/Reinforce_2/8/Transcend/3;Episode12_EP12_FIELD_HAND_002/1/Reinforce_2/8/Transcend/3;","numArg1":1}},{"itemId":10810005,"className":"Epo_Disnai_Aromor_box_2","name":"[EP12] 8 ENH 3 TRA Savinose Plate Armor Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT_OPT","strArg":"Episode12_EP12_FIELD_TOP_003/1/Reinforce_2/8/Transcend/3;Episode12_EP12_FIELD_LEG_003/1/Reinforce_2/8/Transcend/3;Episode12_EP12_FIELD_FOOT_003/1/Reinforce_2/8/Transcend/3;Episode12_EP12_FIELD_HAND_003/1/Reinforce_2/8/Transcend/3;","numArg1":1}},{"itemId":10810006,"className":"Epo_Disnai_Aromor_box_3","name":"[EP12] 8 ENH 3 TRA Savinose Cloth Armor Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT_OPT","strArg":"Episode12_EP12_FIELD_TOP_001/1/Reinforce_2/8/Transcend/3;Episode12_EP12_FIELD_LEG_001/1/Reinforce_2/8/Transcend/3;Episode12_EP12_FIELD_FOOT_001/1/Reinforce_2/8/Transcend/3;Episode12_EP12_FIELD_HAND_001/1/Reinforce_2/8/Transcend/3;","numArg1":1}},{"itemId":10810007,"className":"Episode12_Transcend_Scroll_8_Weapon_440Lv","name":"[EP12] Weapon Stage 8 Transcendence Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EP12_REWARDS_TRANSCEND","numArg1":8,"numArg2":100}},{"itemId":10810008,"className":"Episode12_Transcend_Scroll_8_Armor_440Lv","name":"[EP12] Armor Stage 8 Transcendence Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EP12_REWARDS_TRANSCEND","numArg1":8,"numArg2":100}},{"itemId":10810009,"className":"Episode12_Reinforce_Scroll_11_Weapon_440Lv","name":"[EP12] Weapon 11 ENH Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EP12_REWARDS_REINFORCE","numArg1":11,"numArg2":100}},{"itemId":10810010,"className":"Episode12_Reinforce_Scroll_11_Armor_440Lv","name":"[EP12] Armor 11 ENH Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_EP12_REWARDS_REINFORCE","numArg1":11,"numArg2":100}},{"itemId":10810011,"className":"Episode12_Enchant_Scroll_Main_440Lv","name":"[EP12] Main Weapon Vaivora Enchant Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1,"numArg2":100}},{"itemId":10810012,"className":"Episode12_Enchant_Scroll_Sub_440Lv","name":"[EP12] Sub-Weapon Vaivora Enchant Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1,"numArg2":100}},{"itemId":10810013,"className":"Episode12_SetOption_Scroll_Armor_440Lv","name":"[EP12] Armor Set Stats Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1,"numArg2":100}},{"itemId":10810014,"className":"Episode12_SetOption_Scroll_Weapon_440Lv","name":"[EP12] Weapon Set Stats Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1,"numArg2":100}},{"itemId":10820007,"className":"Ticket_Jellyzele_Auto_Enter_limit_renew","name":"[TOS] Sinking Seizure (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":823}},{"itemId":10820008,"className":"Ticket_TurbulentCore_Auto_Enter_limit_renew","name":"[TOS] Turbulent Core (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":826}},{"itemId":10820010,"className":"Event_Ticket_earring_raid_limit_renew","name":"[TOS] Memory of Flame One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_Ticket_earring_raid_1d"}},{"itemId":10820011,"className":"Event_Ticket_RevivalPaulius_Auto_Enter_limit_renew","name":"[TOS] Delmore Battlefield (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":821}},{"itemId":10820015,"className":"Event_Ticket_Vasilissa_Party_Enter_limit_renew","name":"[TOS] Saint's Sacellum (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":819}},{"itemId":10820026,"className":"Ticket_Rozethemisterable_Auto_Enter_limit_renew","name":"[TOS] Thurible of Salvation (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":828}},{"itemId":11004001,"className":"EP12_costume_Com_001","name":"Starlight Prince Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004002,"className":"EP12_costume_Com_002","name":"Starlight Princess Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004003,"className":"EP12_costume_Com_003","name":"Romantic Pilot Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004004,"className":"EP12_costume_Com_004","name":"Romantic Pilot Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004005,"className":"EP12_costume_Com_005","name":"Red Fox Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004006,"className":"EP12_costume_Com_006","name":"Mayflower Noble Plate Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004007,"className":"EP12_costume_Com_007","name":"Mayflower Noble Plate Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004008,"className":"EP12_costume_Com_008","name":"Mayflower Wedding Tuxedo Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004009,"className":"EP12_costume_Com_009","name":"Mayflower Wedding Dress Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004010,"className":"EP12_costume_Com_010","name":"Mayflower Innocent Armor Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004011,"className":"EP12_costume_Com_011","name":"Mayflower Innocent Armor Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004012,"className":"EP12_costume_Com_012","name":"MusCATeer Baron Tabby Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004013,"className":"EP12_costume_Com_013","name":"MusCATeer Baron Cheese Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004014,"className":"EP12_costume_Com_014","name":"MusCATeer Merchant Black Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004015,"className":"EP12_costume_Com_015","name":"MusCATeer Merchant Ragdoll Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004016,"className":"EP12_costume_Com_016","name":"MusCATeer Soldier Cookie Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004017,"className":"EP12_costume_Com_017","name":"MusCATeer Soldier Shorthair Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004018,"className":"EP12_costume_Com_018","name":"MusCATeer Baron Tabby Transform (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004019,"className":"EP12_costume_Com_019","name":"MusCATeer Baron Cheese Transform (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004020,"className":"EP12_costume_Com_020","name":"MusCATeer Merchant Black Transform (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004021,"className":"EP12_costume_Com_021","name":"MusCATeer Merchant Ragdoll Transform (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004022,"className":"EP12_costume_Com_022","name":"MusCATeer Soldier Cookie Transform (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004023,"className":"EP12_costume_Com_023","name":"MusCATeer Soldier Shorthair Transform (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004024,"className":"EP12_costume_Com_024","name":"TOS Task Force SWAT Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004025,"className":"EP12_costume_Com_025","name":"TOS Task Force SWAT Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004026,"className":"EP12_costume_Com_026","name":"TOS Task Force Fire Fighter Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004027,"className":"EP12_costume_Com_027","name":"TOS Task Force Fire Fighter Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004028,"className":"EP12_costume_Com_028","name":"TOS Task Force Police Costume Selection Box (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004029,"className":"EP12_costume_Com_029","name":"TOS Task Force Police Costume Selection Box (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004030,"className":"EP12_costume_Com_030","name":"Summer Wave Sailor Shirt (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004031,"className":"EP12_costume_Com_031","name":"Summer Wave Sky Blue Off-shoulder Bikini (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004032,"className":"EP12_costume_Com_032","name":"Summer Waver Swim Brief (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004033,"className":"EP12_costume_Com_033","name":"Summer Wave Red Black Bikini (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004034,"className":"EP12_costume_Com_034","name":"Summer Wave Hawaiian Shirt (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004035,"className":"EP12_costume_Com_035","name":"Summer Wave White Frill Bikini (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004036,"className":"EP12_costume_Com_036","name":"Honored Rose Royal Black Suit (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004037,"className":"EP12_costume_Com_037","name":"Honored Rose Crimson Suit (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004038,"className":"EP12_costume_Com_038","name":"Honored Rose Violet Suit (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004039,"className":"EP12_costume_Com_039","name":"Honored Rose Royal Black Dress (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004040,"className":"EP12_costume_Com_040","name":"Honored Rose Crimson Dress (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004041,"className":"EP12_costume_Com_041","name":"Honored Rose Violet Dress (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004042,"className":"EP12_costume_Com_042","name":"Honored Rose Arrogant Red Suit (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004043,"className":"EP12_costume_Com_043","name":"Honored Rose Purple Suit (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004044,"className":"EP12_costume_Com_044","name":"Honored Rose Green Suit (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004045,"className":"EP12_costume_Com_045","name":"Honored Rose Arrogant Red Dress (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004046,"className":"EP12_costume_Com_046","name":"Honored Rose Purple Dress (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004047,"className":"EP12_costume_Com_047","name":"Honored Rose Green Dress (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004048,"className":"EP12_costume_Com_048","name":"Honored Rose Superb Pink Suit (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004049,"className":"EP12_costume_Com_049","name":"Honored Rose Blue Suit (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004050,"className":"EP12_costume_Com_050","name":"Honored Rose Yellow Suit (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004051,"className":"EP12_costume_Com_051","name":"Honored Rose Superb Pink Dress (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004052,"className":"EP12_costume_Com_052","name":"Honored Rose Blue Dress (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004053,"className":"EP12_costume_Com_053","name":"Honored Rose Yellow Dress (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004054,"className":"EP12_costume_Com_054","name":" Masquerade Mysterious Doctor Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004055,"className":"EP12_costume_Com_055","name":" Masquerade Mysterious Witch Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004056,"className":"EP12_costume_Com_056","name":" Masquerade Mysterious Doctor Transformation (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004057,"className":"EP12_costume_Com_057","name":" Masquerade Mysterious Witch Transformation (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004058,"className":"EP12_costume_Com_058","name":"Masquerade Horror Frankenstein Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004059,"className":"EP12_costume_Com_059","name":"Masquerade Horror Ghost Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004060,"className":"EP12_costume_Com_060","name":"Masquerade Strange Doctor Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004061,"className":"EP12_costume_Com_061","name":"Masquerade Strange Witch Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004062,"className":"EP12_costume_Com_062","name":"Masquerade Strange Doctor Transformation (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004063,"className":"EP12_costume_Com_063","name":"Masquerade Strange Witch Transformation (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004064,"className":"EP12_costume_Com_064","name":"Masquerade Secret Doctor Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004065,"className":"EP12_costume_Com_065","name":"Masquerade Secret Witch Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004066,"className":"EP12_costume_Com_066","name":"Masquerade Secret Doctor Transformation (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004067,"className":"EP12_costume_Com_067","name":"Masquerade Secret Witch Transformation (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004068,"className":"EP12_costume_Com_068","name":"Masquerade Spooky Frankenstein Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004069,"className":"EP12_costume_Com_069","name":"Masquerade Spooky Ghost Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004070,"className":"EP12_costume_Com_070","name":"Masquerade Reverse Tenor Tux Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004071,"className":"EP12_costume_Com_071","name":"Masquerade Reverse Black Swan Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004072,"className":"EP12_costume_Com_072","name":"Masquerade Phantom of Music Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004073,"className":"EP12_costume_Com_073","name":"Masquerade White Swan Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004074,"className":"EP12_costume_Com_074","name":"Masquerade Weeping Frankenstein Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004075,"className":"EP12_costume_Com_075","name":"Masquerade Weeping Ghost Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004076,"className":"EP12_costume_Com_076","name":"Masquerade Simple Tux Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004077,"className":"EP12_costume_Com_077","name":"Masquerade Simple Tutu Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004078,"className":"EP12_costume_Com_060_global","name":"Masquerade Strange Doctor Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004079,"className":"EP12_costume_Com_061_global","name":"Masquerade Strange Witch Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004080,"className":"EP12_costume_Com_064_global","name":"Masquerade Secret Doctor Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004081,"className":"EP12_costume_Com_065_global","name":"Masquerade Secret Witch Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004082,"className":"EP12_costume_Com_068_global","name":"Masquerade Spooky Frankenstein Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004083,"className":"EP12_costume_Com_069_global","name":"Masquerade Spooky Ghost Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004084,"className":"EP12_costume_Com_070_global","name":"Masquerade Reverse Tenor Tux Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004085,"className":"EP12_costume_Com_071_global","name":"Masquerade Reverse Black Swan Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004086,"className":"EP12_costume_Com_078","name":"Littleberk Character Pajama Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004087,"className":"EP12_costume_Com_079","name":"Maru Character Pajama Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004088,"className":"EP12_costume_Com_080","name":"Littleberk Custom Battle Uniform (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004089,"className":"EP12_costume_Com_081","name":"Maru Custom Battle Uniform (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004090,"className":"EP12_costume_Com_082","name":"Littleberk Fluffy Pajama Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004091,"className":"EP12_costume_Com_083","name":"Maru Fluffy Pajama Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004092,"className":"EP12_costume_Com_084","name":"Littleberk Sweet Dream Pajama Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004093,"className":"EP12_costume_Com_085","name":"Maru Sweet Dream Pajama Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004094,"className":"EP12_costume_Com_086","name":"Littleberk Classy Battle Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004095,"className":"EP12_costume_Com_087","name":"Maru Classy Battle Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004096,"className":"EP12_costume_Com_088","name":"Littleberk Finest Daily Wear Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004097,"className":"EP12_costume_Com_089","name":"Maru Finest Daily Wear Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004098,"className":"EP12_costume_Com_090","name":"Littleberk Happy Daily Wear Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004099,"className":"EP12_costume_Com_091","name":"Maru Happy Daily Wear Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004100,"className":"EP12_costume_Com_092","name":"Littleberk Simple Battle Uniform (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004101,"className":"EP12_costume_Com_093","name":"Maru Simple Battle Uniform (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004102,"className":"EP12_costume_Com_094","name":"Littleberk Exhausted Daily Wear Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004103,"className":"EP12_costume_Com_095","name":"Maru Exhausted Daily Wear Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004104,"className":"EP12_costume_Com_082_global","name":"Littleberk Fluffy Pajama Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004105,"className":"EP12_costume_Com_083_global","name":"Maru Fluffy Pajama Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004106,"className":"EP12_costume_Com_084_global","name":"Littleberk Sweet Dream Pajama Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004107,"className":"EP12_costume_Com_085_global","name":"Maru Sweet Dream Pajama Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004108,"className":"EP12_costume_Com_086_global","name":"Littleberk Classy Battle Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004109,"className":"EP12_costume_Com_087_global","name":"Maru Classy Battle Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004110,"className":"EP12_costume_Com_088_global","name":"Littleberk Finest Daily Wear Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004111,"className":"EP12_costume_Com_089_global","name":"Maru Finest Daily Wear Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004112,"className":"EP12_costume_Com_096","name":"Evening Star Prestige Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004113,"className":"EP12_costume_Com_097","name":"Evening Star Prestige Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004114,"className":"EP12_costume_Com_098","name":"Evening Star Bright Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004115,"className":"EP12_costume_Com_099","name":"Evening Star Bright Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004116,"className":"EP12_costume_Com_100","name":"Evening Star Twilight Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004117,"className":"EP12_costume_Com_101","name":"Evening Star Twilight Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004118,"className":"EP12_costume_Com_102","name":"Evening Star Aurora Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004119,"className":"EP12_costume_Com_103","name":"Evening Star Aurora Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004120,"className":"EP12_costume_Com_104","name":"Evening Star Nebula Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004121,"className":"EP12_costume_Com_105","name":"Evening Star Nebula Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004122,"className":"EP12_costume_Com_106","name":"Evening Star Venus Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004123,"className":"EP12_costume_Com_107","name":"Evening Star Venus Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004124,"className":"EP12_costume_Com_108","name":"Evening Star Altair Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004125,"className":"EP12_costume_Com_109","name":"Evening Star Vega Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004126,"className":"EP12_costume_Com_110","name":"Evening Star Comet Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004127,"className":"EP12_costume_Com_111","name":"Evening Star Comet Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004128,"className":"EP12_costume_Com_112","name":"Evening Star Deneb Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004129,"className":"EP12_costume_Com_113","name":"Evening Star Deneb Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004130,"className":"EP13_costume_Com_000","name":"Task Unit Alpha Patrol Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004131,"className":"EP13_costume_Com_001","name":"Task Unit Alpha Patrol Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004132,"className":"EP13_costume_Com_002","name":"Task Unit Alpha Troop Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004133,"className":"EP13_costume_Com_003","name":"Task Unit Alpha Troop Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004134,"className":"EP13_costume_Com_004","name":"Task Unit Beta Patrol Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004135,"className":"EP13_costume_Com_005","name":"Task Unit Beta Patrol Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004136,"className":"EP13_costume_Com_006","name":"Task Unit Omega Patrol Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004137,"className":"EP13_costume_Com_007","name":"Task Unit Omega Patrol Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004138,"className":"EP13_costume_Com_008","name":"Task Unit Beta Troop Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004139,"className":"EP13_costume_Com_009","name":"Task Unit Beta Troop Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004140,"className":"EP13_costume_Com_010","name":"Task Unit Beta Operator Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004141,"className":"EP13_costume_Com_011","name":"Task Unit Beta Operator Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004142,"className":"EP13_costume_Com_012","name":"Task Unit Alpha Operator Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004143,"className":"EP13_costume_Com_013","name":"Task Unit Alpha Operator Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004144,"className":"EP13_costume_Com_014","name":"Task Unit Omega Troop Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004145,"className":"EP13_costume_Com_015","name":"Task Unit Omega Troop Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004146,"className":"EP13_costume_Com_016","name":"Task Unit Omega Operator Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004147,"className":"EP13_costume_Com_017","name":"Task Unit Omega Operator Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004148,"className":"EP13_costume_Com_018","name":"Ice Cold Hoodie Bubble Jacket Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004149,"className":"EP13_costume_Com_019","name":"Ice Cold Hoodie Bubble Jacket Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004150,"className":"EP13_costume_Com_020","name":"Ice Cold Everyday Parka Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004151,"className":"EP13_costume_Com_021","name":"Ice Cold Everyday Parka Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004152,"className":"EP13_costume_Com_022","name":"Ice Cold Black Bubble Jacket Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004153,"className":"EP13_costume_Com_023","name":"Ice Cold Black Bubble Jacket Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004154,"className":"EP13_costume_Com_024","name":"Ice Cold White Bubble Jacket Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004155,"className":"EP13_costume_Com_025","name":"Ice Cold White Bubble Jacket Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004156,"className":"EP13_costume_Com_026","name":"Ice Cold Casual Parka Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004157,"className":"EP13_costume_Com_027","name":"Ice Cold Casual Parka Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004158,"className":"EP13_costume_Com_028","name":"Ice Cold Brown Parka Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004159,"className":"EP13_costume_Com_029","name":"Ice Cold Brown Parka Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004160,"className":"EP13_costume_Com_030","name":"Ice Cold Green Jumper Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004161,"className":"EP13_costume_Com_031","name":"Ice Cold Green Jumper Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004162,"className":"EP13_costume_Com_032","name":"Ice Cold Cozy Bubble Jacket Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004163,"className":"EP13_costume_Com_033","name":"Ice Cold Cozy Bubble Jacket Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004164,"className":"EP13_costume_Com_034","name":"Ice Cold Black Jumper Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004165,"className":"EP13_costume_Com_035","name":"Ice Cold Black Jumper Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004166,"className":"EP13_costume_Com_036","name":"Rosy Floret Scarlet Blossom Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004167,"className":"EP13_costume_Com_037","name":"Rosy Floret Scarlet Blossom Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004168,"className":"EP13_costume_Com_038","name":"Rosy Floret Cherry Blossom Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004169,"className":"EP13_costume_Com_039","name":"Rosy Floret Cherry Blossom Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004170,"className":"EP13_costume_Com_040","name":"Rosy Floret Powder Pink Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004171,"className":"EP13_costume_Com_041","name":"Rosy Floret Powder Pink Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004172,"className":"EP13_costume_Com_042","name":"Rosy Floret Clear Turquoise Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004173,"className":"EP13_costume_Com_043","name":"Rosy Floret Clear Turquoise Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004174,"className":"EP13_costume_Com_044","name":"Rosy Floret Pink Lilac Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004175,"className":"EP13_costume_Com_045","name":"Rosy Floret Pink Lilac Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004176,"className":"EP13_costume_Com_046","name":"Rosy Floret Mid-Spring Flower Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004177,"className":"EP13_costume_Com_047","name":"Rosy Floret Mid-Spring Flower Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004178,"className":"EP13_costume_Com_048","name":"Rosy Floret Violet Blossom Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004179,"className":"EP13_costume_Com_049","name":"Rosy Floret Violet Blossom Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004180,"className":"EP13_costume_Com_050","name":"Rosy Floret Punch Blossom Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004181,"className":"EP13_costume_Com_051","name":"Rosy Floret Punch Blossom Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004182,"className":"EP13_costume_Com_052","name":"Rosy Floret Late-Spring Flower Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004183,"className":"EP13_costume_Com_053","name":"Rosy Floret Late-Spring Flower Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004184,"className":"EP13_costume_Com_054","name":"Sweet Mint Chocolate Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004185,"className":"EP13_costume_Com_055","name":"Sweet Mint Chocolate Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004186,"className":"EP13_costume_Com_056","name":"Sweet Cream Cookie Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004187,"className":"EP13_costume_Com_057","name":"Sweet Cream Cookie Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004188,"className":"EP13_costume_Com_058","name":"Sweet Strawberry Panna Cotta Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004189,"className":"EP13_costume_Com_059","name":"Sweet Strawberry Panna Cotta Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004190,"className":"EP13_costume_Com_060","name":"Sweet Butter Pancake Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004191,"className":"EP13_costume_Com_061","name":"Sweet Butter Pancake Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004192,"className":"EP13_costume_Com_062","name":"Sweet Blueberry Yogurt Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004193,"className":"EP13_costume_Com_063","name":"Sweet Blueberry Yogurt Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004194,"className":"EP13_costume_Com_064","name":"Sweet Custard Pudding Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004195,"className":"EP13_costume_Com_065","name":"Sweet Custard Pudding Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004196,"className":"EP13_costume_Com_066","name":"Sweet Chocolate Cream Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004197,"className":"EP13_costume_Com_067","name":"Sweet Chocolate Cream Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004198,"className":"EP13_costume_Com_068","name":"Sweet Kiwi Panna Cotta Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004199,"className":"EP13_costume_Com_069","name":"Sweet Kiwi Panna Cotta Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004200,"className":"EP13_costume_Com_070","name":"Sweet Strawberry Mousse Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004201,"className":"EP13_costume_Com_071","name":"Sweet Strawberry Mousse Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004202,"className":"EP13_costume_Com_036_JP","name":"Rosy Floret Scarlet Blossom Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004203,"className":"EP13_costume_Com_037_JP","name":"Rosy Floret Scarlet Blossom Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004204,"className":"EP13_costume_Com_048_JP","name":"Rosy Floret Violet Blossom Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004205,"className":"EP13_costume_Com_049_JP","name":"Rosy Floret Violet Blossom Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004206,"className":"EP13_costume_Com_038_JP","name":"Rosy Floret Cherry Blossom (2) Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004207,"className":"EP13_costume_Com_039_JP","name":"Rosy Floret Cherry Blossom (2) Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004208,"className":"EP13_costume_Com_050_JP","name":"Rosy Floret Punch Blossom (2) Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004209,"className":"EP13_costume_Com_051_JP","name":"Rosy Floret Punch Blossom (2) Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004210,"className":"EP13_costume_Com_052_JP","name":"Rosy Floret Late-Spring Flower (2) Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004211,"className":"EP13_costume_Com_053_JP","name":"Rosy Floret Late-Spring Flower (2) Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004212,"className":"EP13_costume_Com_072","name":"Criminal Mafia Godfather Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004213,"className":"EP13_costume_Com_073","name":"Crimnial Mafia Godmother Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004214,"className":"EP13_costume_Com_074","name":"Criminal Young Boss Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004215,"className":"EP13_costume_Com_075","name":"Criminal Young Boss Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004216,"className":"EP13_costume_Com_076","name":"Criminal Prisoner Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004217,"className":"EP13_costume_Com_077","name":"Criminal Prisoner Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004218,"className":"EP13_costume_Com_078","name":"Criminal Trusty Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004219,"className":"EP13_costume_Com_079","name":"Criminal Trusty Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004220,"className":"EP13_costume_Com_080","name":"Criminal Best Detective Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004221,"className":"EP13_costume_Com_081","name":"Criminal Best Detective Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004222,"className":"EP13_costume_Com_082","name":"Criminal Novice Detective Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004223,"className":"EP13_costume_Com_083","name":"Criminal Novice Detective Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004224,"className":"EP13_costume_Com_084","name":"Criminal Consigliere Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004225,"className":"EP13_costume_Com_085","name":"Criminal Consigliere Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004226,"className":"EP13_costume_Com_086","name":"Criminal Untrusty Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004227,"className":"EP13_costume_Com_087","name":"Criminal Untrusty Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004228,"className":"EP13_costume_Com_088","name":"Criminal Assistant Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004229,"className":"EP13_costume_Com_089","name":"Criminal Assistant Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004230,"className":"EP13_costume_Com_090","name":"STEM Speciality Scientist Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004231,"className":"EP13_costume_Com_091","name":"STEM Speciality Scientist Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004232,"className":"EP13_costume_Com_092","name":"STEM Laboratory Scientist Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004233,"className":"EP13_costume_Com_093","name":"STEM Laboratory Scientist Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004234,"className":"EP13_costume_Com_094","name":"STEM Intellectual Medic Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004235,"className":"EP13_costume_Com_095","name":"STEM Intellectual Medic Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004236,"className":"EP13_costume_Com_096","name":"STEM Intellectual Graduate Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004237,"className":"EP13_costume_Com_097","name":"STEM Intellectual Graduate Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004238,"className":"EP13_costume_Com_098","name":"STEM Chemistry Major Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004239,"className":"EP13_costume_Com_099","name":"STEM Chemistry Major Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004240,"className":"EP13_costume_Com_100","name":"STEM Geometry Major Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004241,"className":"EP13_costume_Com_101","name":"STEM Geometry Major Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004242,"className":"EP13_costume_Com_102","name":"STEM Assistant Researcher Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004243,"className":"EP13_costume_Com_103","name":"STEM Assistant Researcher Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004244,"className":"EP13_costume_Com_104","name":"STEM Tech Sweater Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004245,"className":"EP13_costume_Com_105","name":"STEM Tech Sweater Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004246,"className":"EP13_costume_Com_106","name":"STEM Checkered Shirt Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004247,"className":"EP13_costume_Com_107","name":"STEM Checkered Shirt Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004248,"className":"costume_boss_coop","name":"Adversary Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004249,"className":"EP13_costume_Com_twnocelot","name":"Ocelot Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004250,"className":"EP13_costume_Com_108","name":"TOSummer Passion Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004251,"className":"EP13_costume_Com_109","name":"TOSummer Passion Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004252,"className":"EP13_costume_Com_110","name":"TOSummer Heat Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004253,"className":"EP13_costume_Com_111","name":"TOSummer Heat Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004254,"className":"EP13_costume_Com_112","name":"TOSummer Peaceful Vacation Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004255,"className":"EP13_costume_Com_113","name":"TOSummer Peaceful Vacation Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004256,"className":"EP13_costume_Com_114","name":"TOSummer Lazy Vacation Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004257,"className":"EP13_costume_Com_115","name":"TOSummer Lazy Vacation Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004258,"className":"EP13_costume_Com_116","name":"TOSummer Sizzling Beach Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004259,"className":"EP13_costume_Com_117","name":"TOSummer Sizzling Beach Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004260,"className":"EP13_costume_Com_118","name":"TOSummer Wavy Beach Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004261,"className":"EP13_costume_Com_119","name":"TOSummer Wavy Beach Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004262,"className":"EP13_costume_Com_108_af","name":"TOSummer Passion Costume (Male) Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004263,"className":"EP13_costume_Com_109_af","name":"TOSummer Passion Costume (Female) Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004264,"className":"EP13_costume_Com_110_af","name":"TOSummer Heat Costume (Male) Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004265,"className":"EP13_costume_Com_111_af","name":"TOSummer Heat Costume (Female) Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004266,"className":"EP13_costume_Com_112_af","name":"TOSummer Peaceful Vacation Costume (Male) Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004267,"className":"EP13_costume_Com_113_af","name":"TOSummer Peaceful Vacation Costume (Female) Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004268,"className":"EP13_costume_Com_114_af","name":"TOSummer Lazy Vacation Costume (Male) Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004269,"className":"EP13_costume_Com_115_af","name":"TOSummer Lazy Vacation Costume (Female) Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004270,"className":"EP13_costume_Com_116_af","name":"TOSummer Sizzling Beach Costume (Male) Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004271,"className":"EP13_costume_Com_117_af","name":"TOSummer Sizzling Beach Costume (Female) Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004272,"className":"EP13_costume_Com_118_af","name":"TOSummer Wavy Beach Costume (Male) Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004273,"className":"EP13_costume_Com_119_af","name":"TOSummer Wavy Beach Costume (Female) Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004274,"className":"EP13_costume_Com_120","name":"TOSummer Chill Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004275,"className":"EP13_costume_Com_121","name":"TOSummer Chill Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004276,"className":"EP13_costume_Com_122","name":"TOSummer Exciting Vacation Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004277,"className":"EP13_costume_Com_123","name":"TOSummer Exciting Vacation Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004278,"className":"EP13_costume_Com_124","name":"TOSummer Holiday Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004279,"className":"EP13_costume_Com_125","name":"TOSummer Holiday Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004280,"className":"EP13_costume_Com_120_af","name":"TOSummer Chill Costume (Male) Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004281,"className":"EP13_costume_Com_121_af","name":"TOSummer Chill Costume (Female) Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004282,"className":"EP13_costume_Com_122_af","name":"TOSummer Exciting Vacation Costume (Male) Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004283,"className":"EP13_costume_Com_123_af","name":"TOSummer Exciting Vacation Costume (Female) Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004284,"className":"EP13_costume_Com_124_af","name":"TOSummer Holiday Costume (Male) Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004285,"className":"EP13_costume_Com_125_af","name":"TOSummer Holiday Costume (Female) Transform","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004286,"className":"EP13_costume_Com_126","name":"Drip Drop Giraffe Raincoat Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004287,"className":"EP13_costume_Com_127","name":"Drip Drop Giraffe Raincoat Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004288,"className":"EP13_costume_Com_128","name":"Drip Drop Duck Raincoat Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004289,"className":"EP13_costume_Com_129","name":"Drip Drop Duck Raincoat Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004290,"className":"EP13_costume_Com_130","name":"Drip Drop Carp Raincoat Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004291,"className":"EP13_costume_Com_131","name":"Drip Drop Carp Raincoat Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004292,"className":"EP13_costume_Com_132","name":"Drip Drop Devil Fish Raincoat Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004293,"className":"EP13_costume_Com_133","name":"Drip Drop Devil Fish Raincoat Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004294,"className":"EP13_costume_Com_134","name":"Drip Drop Military Raincoat Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004295,"className":"EP13_costume_Com_135","name":"Drip Drop Military Raincoat Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004296,"className":"EP13_costume_Com_136","name":"Drip Drop Black Raincoat Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004297,"className":"EP13_costume_Com_137","name":"Drip Drop Black Raincoat Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004298,"className":"EP13_costume_Com_138","name":"Drip Drop Shark Raincoat Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004299,"className":"EP13_costume_Com_139","name":"Drip Drop Shark Raincoat Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004300,"className":"EP13_costume_Com_140","name":"Drip Drop Axolotl Raincoat Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004301,"className":"EP13_costume_Com_141","name":"Drip Drop Axolotl Raincoat Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004302,"className":"EP13_costume_Com_142","name":"Drip Drop Yellow Raincoat Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004303,"className":"EP13_costume_Com_143","name":"Drip Drop Yellow Raincoat Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004304,"className":"EP13_costume_Com_144","name":"Good ol'days Legendary Star Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004305,"className":"EP13_costume_Com_145","name":"Good ol'days Legendary Star Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004306,"className":"EP13_costume_Com_146","name":"Good ol'days Shining Chorus Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004307,"className":"EP13_costume_Com_147","name":"Good ol'days Shining Chorus Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004308,"className":"EP13_costume_Com_148","name":"Good ol'days Rendezvous Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004309,"className":"EP13_costume_Com_149","name":"Good ol'days Rendezvous Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004310,"className":"EP13_costume_Com_150","name":"Good ol'days Cute Couple Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004311,"className":"EP13_costume_Com_151","name":"Good ol'days Cute Couple Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004312,"className":"EP13_costume_Com_152","name":"Good ol'days Sparkling Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004313,"className":"EP13_costume_Com_153","name":"Good ol'days Sparkling Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004314,"className":"EP13_costume_Com_154","name":"Good ol'days Glittering Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004315,"className":"EP13_costume_Com_155","name":"Good ol'days Glittering Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004316,"className":"EP13_costume_Com_156","name":"Good ol'days Retro Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004317,"className":"EP13_costume_Com_157","name":"Good ol'days Retro Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1,"script":{"strArg":"SilverGacha"}},{"itemId":11004318,"className":"EP13_costume_Com_158","name":"Blue Serpent of Otherworld Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004319,"className":"EP13_costume_Com_159","name":"Blue Serpent of Otherworld Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004320,"className":"EP13_costume_Com_160","name":"Le Blanc of Otherworld Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004321,"className":"EP13_costume_Com_161","name":"Le Blanc of Otherworld Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004322,"className":"EP13_costume_Com_162","name":"Magician of Otherworld Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004323,"className":"EP13_costume_Com_163","name":"Magician of Otherworld Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004324,"className":"EP13_costume_Com_164","name":"Gunman of Otherworld Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004325,"className":"EP13_costume_Com_165","name":"Gunman of Otherworld Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004326,"className":"EP13_costume_Com_166","name":"Warrior of Otherworld Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004327,"className":"EP13_costume_Com_167","name":"Warrior of Otherworld Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004328,"className":"EP13_costume_Com_168","name":"Striform of Otherworld Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004329,"className":"EP13_costume_Com_169","name":"Gladiator Armor of Otherworld Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004331,"className":"costume_21halloween_01","name":"[Event] Pink Scientist Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004332,"className":"costume_21halloween_02","name":"[Event] Turquoise Sweats","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004333,"className":"EP13_costume_Com_170","name":"Athleisure Strength Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004334,"className":"EP13_costume_Com_171","name":"Athleisure Strength Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004335,"className":"EP13_costume_Com_172","name":"Athleisure Work Out Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004336,"className":"EP13_costume_Com_173","name":"Athleisure Work Out Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004337,"className":"EP13_costume_Com_174","name":"Athleisure Cardio Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004338,"className":"EP13_costume_Com_175","name":"Athleisure Cardio Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004339,"className":"EP13_costume_Com_176","name":"Athleisure Weight Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004340,"className":"EP13_costume_Com_177","name":"Athleisure Weight Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004341,"className":"EP13_costume_Com_178","name":"Athleisure Bulking Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004342,"className":"EP13_costume_Com_179","name":"Athleisure Bulking Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004343,"className":"EP13_costume_Com_180","name":"Athleisure Muscle Up! Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004344,"className":"EP13_costume_Com_181","name":"Athleisure Muscle Up! Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004345,"className":"EP13_costume_Com_182","name":"Asgard Thunder God Thor Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004346,"className":"EP13_costume_Com_183","name":"Asgard Serpant Jormungand Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004347,"className":"EP13_costume_Com_184","name":"Asgard Thor's Retribution Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004348,"className":"EP13_costume_Com_185","name":"Asgard Jormungand's Rage Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004349,"className":"EP13_costume_Com_186","name":"Asgard Trickster Loki Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004350,"className":"EP13_costume_Com_187","name":"Asgard Wolf Beast Fenrir Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004351,"className":"EP13_costume_Com_188","name":"Asgard Loki's Deception Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004352,"className":"EP13_costume_Com_189","name":"Asgard Fenrir's Revenge Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004353,"className":"EP13_costume_Com_190","name":"Asgard Sea God Njord Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004354,"className":"EP13_costume_Com_191","name":"Asgard Winter Goddess Skathi Costume (Female) ","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004355,"className":"EP13_costume_Com_192","name":"Asgard Njord's Ocean Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004356,"className":"EP13_costume_Com_193","name":"Asgard Skathi's Snow Costume (Female) ","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004358,"className":"EP13_costume_Com_194","name":"Servant Royal Butler Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004359,"className":"EP13_costume_Com_195","name":"Servant Royal Maid Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004360,"className":"EP13_costume_Com_196","name":"Servant Second Butler Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004361,"className":"EP13_costume_Com_197","name":"Servant Second Maid Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004362,"className":"EP13_costume_Com_198","name":"Servant Butler Knight Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004363,"className":"EP13_costume_Com_199","name":"Servant Maid Knight Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004364,"className":"EP13_costume_Com_200","name":"Servant Butler Guard Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004365,"className":"EP13_costume_Com_201","name":"Servant Maid Guard Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004366,"className":"EP13_costume_Com_202","name":"Servant Butler Sergeant Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004367,"className":"EP13_costume_Com_203","name":"Servant Maid Sergeant Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004368,"className":"EP13_costume_Com_204","name":"[Event] Maid? Knight Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004369,"className":"EP13_costume_Com_205","name":"[Event] Butler? Knight Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004370,"className":"EP13_costume_Com_206","name":"Animal Kindergarten Pink Bunny Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004371,"className":"EP13_costume_Com_207","name":"Animal Kindergarten Strawberry Moo Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004372,"className":"EP13_costume_Com_208","name":"Animal Kindergarten White Duck Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004373,"className":"EP13_costume_Com_209","name":"Animal Kindergarten Red Fox Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004374,"className":"EP12_costume_Com_001_Re","name":"[Re] Starlight Prince Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004375,"className":"EP12_costume_Com_002_Re","name":"[Re] Starlight Princess Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004376,"className":"EP12_costume_Com_003_Re","name":"[Re] Romance Pilot Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004377,"className":"EP12_costume_Com_004_Re","name":"[Re] Romance Pilot Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004378,"className":"costume_Com_256_Re","name":"[Re] Candy Killer Rascal Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004379,"className":"costume_Com_257_Re","name":"[Re] Candy Killer Clown Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004380,"className":"costume_Com_258_Re","name":"[Re] Haunted Hospital Nurse Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004381,"className":"costume_Com_259_Re","name":"[Re] Haunted Hospital Nurse Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004382,"className":"costume_Com_238_Re","name":"[Re] Deputy Chef Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004383,"className":"costume_Com_239_Re","name":"[Re] Deputy Chef Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004384,"className":"costume_Com_240_Re","name":"[Re] Restaurant Manager Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004385,"className":"costume_Com_241_Re","name":"[Re] Restaurant Manager Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004386,"className":"EP14_costume_Com_001","name":"Eternal Savior Lumen Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004387,"className":"EP14_costume_Com_002","name":"Eternal Savior Lumen Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004388,"className":"EP14_costume_Com_003","name":"Eternal Savior Nox Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004389,"className":"EP14_costume_Com_004","name":"Eternal Savior Nox Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004390,"className":"EP14_costume_Com_001_af","name":"Eternal Savior Lumen Transform (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004391,"className":"EP14_costume_Com_002_af","name":"Eternal Savior Lumen Transform (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004392,"className":"EP14_costume_Com_003_af","name":"Eternal Savior Nox Transform (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004393,"className":"EP14_costume_Com_004_af","name":"Eternal Savior Nox Transform (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004394,"className":"EP14_costume_Com_005","name":"Tos Hero Bebe, the Penguin Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004395,"className":"EP14_costume_Com_006","name":"Tos Hero Bebe, the Penguin Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004396,"className":"EP14_costume_Com_007","name":"Tos Hero Sprout, the Chick Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004397,"className":"EP14_costume_Com_008","name":"Tos Hero Sprout, the Chick Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004398,"className":"EP14_costume_Com_009","name":"Tos Hero Fairy, the Cardinal Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004399,"className":"EP14_costume_Com_010","name":"Tos Hero Fairy, the Cardinal Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004400,"className":"EP14_costume_Com_011","name":"Tos Hero Cotton, the Crow-tit Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004401,"className":"EP14_costume_Com_012","name":"Tos Hero Cotton, the Crow-tit Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004402,"className":"EP14_costume_Com_013","name":"Tos Hero Furry, the Sparrow Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004403,"className":"EP14_costume_Com_014","name":"Tos Hero Furry, the Sparrow Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004404,"className":"costume_twn6th_TI","name":"Malayan Tapir Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004405,"className":"costume_twn6th_bubble_m","name":"Bubble Tea Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004406,"className":"costume_twn6th_bubble_f","name":"Bubble Tea Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004407,"className":"costume_boss_ignas","name":"Ignas Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004408,"className":"costume_twnocelot_black","name":"Baby Black Leopard Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004409,"className":"costume_twnocelot_white","name":"Baby Snow Leopard Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004410,"className":"EP14_costume_Com_015","name":"Knight of Zemyna Defender Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004411,"className":"EP14_costume_Com_016","name":"Knight of Zemyna Defender Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004412,"className":"EP14_costume_Com_017","name":"Knight of Zemyna Guardian Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004413,"className":"EP14_costume_Com_018","name":"Knight of Zemyna Guardian Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004414,"className":"EP14_costume_Com_019","name":"TOS Metal Leopard Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004415,"className":"EP14_costume_Com_020","name":"TOS Metal Leopard Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004416,"className":"EP14_costume_Com_021","name":"TOS Metal Leather Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004417,"className":"EP14_costume_Com_022","name":"TOS Metal Leather Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004418,"className":"Event_costume_laima_m","name":"Laima Shirt (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004419,"className":"Event_costume_laima_f","name":"Laima Shirt (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004420,"className":"EP14_costume_Com_023","name":"Heliopolis Horus Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004421,"className":"EP14_costume_Com_024","name":"Heliopolis Bastet Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004422,"className":"EP14_costume_Com_025","name":"Heliopolis Anubis Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004423,"className":"EP14_costume_Com_026","name":"Heliopolis Anubis Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004424,"className":"EP13_costume_Com_twnocelot_NoTrade","name":"Ocelot Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004425,"className":"costume_twn6th_bubble_m_NoTrade","name":"Bubble Tea Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004426,"className":"costume_twn6th_bubble_f_NoTrade","name":"Bubble Tea Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004427,"className":"EP14_costume_Com_027","name":"Major Arcana The Sun Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004428,"className":"EP14_costume_Com_028","name":"Major Arcana The Star Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004429,"className":"EP14_costume_Com_029","name":"Major Arcana The Tower Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004430,"className":"EP14_costume_Com_030","name":"Major Arcana The Moon Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004431,"className":"costume_jpn3th_Tanuki","name":"Raccoon Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004432,"className":"EP14_costume_Com_031","name":"Furry Sky Doggy Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004433,"className":"EP14_costume_Com_032","name":"Furry Golden Fox Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004434,"className":"EP14_costume_Com_033","name":"Furry Noble Fox Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11004435,"className":"EP14_costume_Com_034","name":"Furry Noble Fox Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11005001,"className":"EP12_helmet_redfox","name":"Red Fox Helmet Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":11005002,"className":"EP12_helmet_box_littleprince","name":"Sheep Inside the Box Helmet Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":11005003,"className":"EP12_helmet_catagnan01","name":"MusCATeer Baron Tabby Transform Helmet (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":11005004,"className":"EP12_helmet_catagnan02","name":"MusCATeer Baron Cheese Transform Helmet (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":11005005,"className":"EP12_helmet_catagnan03","name":"MusCATeer Merchant Black Transform Helmet (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":11005006,"className":"EP12_helmet_catagnan04","name":"MusCATeer Merchant Ragdoll Costume Helmet (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":11005007,"className":"EP12_helmet_catagnan05","name":"MusCATeer Soldier Cookie Transform Helmet (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":11005008,"className":"EP12_helmet_catagnan06","name":"MusCATeer Soldier Shorthair Transform Helmet (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":11005009,"className":"EP12_helmet_tactical","name":"TOS Task Force SWAT Helmet","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":11005010,"className":"EP12_helmet_m_ep12demonlord","name":"Littleberk Character Pajama Helmet (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_m_ep12demonlord01"}},{"itemId":11005011,"className":"EP12_helmet_f_ep12demonlord","name":"Maru Character Pajama Helmet (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_f_ep12demonlord01"}},{"itemId":11005012,"className":"EP13_helmet_mafia","name":"Criminal Mafia Boss Mask","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":11005013,"className":"EP13_helmet_stem","name":"STEM Laboratory Scientist Helmet","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_ep13stem"}},{"itemId":11005014,"className":"helmet_boss_coop","name":"Adversary Helmet Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":11005015,"className":"EP13_helmet_twnocelot","name":"Ocelot Head Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":11005016,"className":"EP13_helmet_m_raincoat_01","name":"Drip Drop Giraffe Raincoat Helmet (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_m_ep13raincoat01"}},{"itemId":11005017,"className":"EP13_helmet_f_raincoat_01","name":"Drip Drop Giraffe Raincoat Helmet (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_f_ep13raincoat01"}},{"itemId":11005018,"className":"EP13_helmet_m_raincoat_01_1","name":"Drip Drop Duck Raincoat Helmet (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_m_ep13raincoat01_1"}},{"itemId":11005019,"className":"EP13_helmet_f_raincoat_01_1","name":"Drip Drop Duck Raincoat Helmet (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_f_ep13raincoat01_1"}},{"itemId":11005020,"className":"EP13_helmet_m_raincoat_02","name":"Drip Drop Carp Raincoat Helmet (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_m_ep13raincoat02"}},{"itemId":11005021,"className":"EP13_helmet_f_raincoat_02","name":"Drip Drop Carp Raincoat Helmet (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_f_ep13raincoat02"}},{"itemId":11005022,"className":"EP13_helmet_m_raincoat_02_1","name":"Drip Drop Devil Fish Raincoat Helmet (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_m_ep13raincoat02_1"}},{"itemId":11005023,"className":"EP13_helmet_f_raincoat_02_1","name":"Drip Drop Devil Fish Raincoat Helmet (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_f_ep13raincoat02_1"}},{"itemId":11005024,"className":"EP13_helmet_m_raincoat_03","name":"Drip Drop Military Raincoat Helmet (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_m_ep13raincoat03"}},{"itemId":11005025,"className":"EP13_helmet_f_raincoat_03","name":"Drip Drop Military Raincoat Helmet (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_f_ep13raincoat03"}},{"itemId":11005026,"className":"EP13_helmet_m_raincoat_03_1","name":"Drip Drop Black Raincoat Helmet (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_m_ep13raincoat03_1"}},{"itemId":11005027,"className":"EP13_helmet_f_raincoat_03_1","name":"Drip Drop Black Raincoat Helmet (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_f_ep13raincoat03_1"}},{"itemId":11005028,"className":"EP13_helmet_m_raincoat_01_2","name":"Drip Drop Shark Raincoat Helmet (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_m_ep13raincoat01_2"}},{"itemId":11005029,"className":"EP13_helmet_f_raincoat_01_2","name":"Drip Drop Shark Raincoat Helmet (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_f_ep13raincoat01_2"}},{"itemId":11005030,"className":"EP13_helmet_m_raincoat_02_2","name":"Drip Drop Axolotl Raincoat Helmet (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_m_ep13raincoat02_2"}},{"itemId":11005031,"className":"EP13_helmet_f_raincoat_02_2","name":"Drip Drop Axolotl Raincoat Helmet (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_f_ep13raincoat02_2"}},{"itemId":11005032,"className":"EP13_helmet_m_raincoat_03_2","name":"Drip Drop Yellow Raincoat Helmet (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_m_ep13raincoat03_2"}},{"itemId":11005033,"className":"EP13_helmet_f_raincoat_03_2","name":"Drip Drop Yellow Raincoat Helmet (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_f_ep13raincoat03_2"}},{"itemId":11005034,"className":"EP13_helmet_retro01","name":"Good ol'days Thick Afro ","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_ep13retro02"}},{"itemId":11005035,"className":"EP13_helmet_retro02","name":"Good ol'days Combing Afro ","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_ep13retro01"}},{"itemId":11005036,"className":"21halloween_helmet_T","name":"[Event] Scientist","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":11005037,"className":"21halloween_helmet_O","name":"[Event] Scientist","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":11005038,"className":"21halloween_helmet_S","name":"[Event] Scientist","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":11005039,"className":"EP13_helmet_m_ep13animal01","name":"Animal Kindergarten Pink Bunny Hood (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_m_ep13animal01"}},{"itemId":11005040,"className":"EP13_helmet_f_ep13animal02","name":"Animal Kindergarten Strawberry Moo Hood (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_f_ep13animal02"}},{"itemId":11005041,"className":"EP14_helmet_fivebird01","name":"Tos Hero Bebe, the Penguin Helmet","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_ep14fivebird01"}},{"itemId":11005042,"className":"EP14_helmet_fivebird01_1","name":"Tos Hero Sprout, the Chick Helmet","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_ep14fivebird01_1"}},{"itemId":11005043,"className":"EP14_helmet_fivebird02","name":"Tos Hero Fairy, the Cardinal Helmet","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_ep14fivebird02"}},{"itemId":11005044,"className":"EP14_helmet_fivebird02_1","name":"Tos Hero Cotton, the Crow-tit Costume Helmet","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_ep14fivebird02_1"}},{"itemId":11005045,"className":"EP14_helmet_fivebird03","name":"Tos Hero Furry, the Sparrow Costume Helmet","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_ep14fivebird03"}},{"itemId":11005046,"className":"helmet_boss_ignas","name":"Ignas Helmet Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_ignas"}},{"itemId":11005051,"className":"helmet_twn6th_TI","name":"Malayan Tapir Helmet Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":11005052,"className":"helmet_twnocelot_black","name":"Baby Black Leopard Helmet Costume ","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":11005053,"className":"helmet_twnocelot_white","name":"Baby Snow Leopard Helmet Costume ","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":11005054,"className":"EP14_helmet_rider01","name":"TOS Metal Flashy Full Face Helmet","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_ep14rider01"}},{"itemId":11005055,"className":"EP14_helmet_rider02","name":"TOS Metal Purple Kitty Helmet","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium","script":{"strArg":"helmet_ep14rider02"}},{"itemId":11005056,"className":"EP13_helmet_twnocelot_NoTrade","name":"Ocelot Head Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":11005057,"className":"EP14_helmet_ep14tarot01","name":"Major Arcana The Moon Hood (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_ep14tarot01"}},{"itemId":11005058,"className":"helmet_jpn3th_Tanuki","name":"Raccoon Helmet Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":11005059,"className":"helmet_afro_poporion","name":"Afro Popolion Helmet Costume","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":11008001,"className":"wing_littleprince","name":"Bluebird Asteroid Balloon","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008002,"className":"wing_ep12wedding","name":"Mayflower Blessing Silk","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008003,"className":"wing_summer_wave","name":"Sandy Beach Wave Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008004,"className":"wing_ep12honoredrose01","name":"Royal Rose Great Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008005,"className":"wing_ep12honoredrose02","name":"Red Rose on Gold","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008006,"className":"wing_ep12musical","name":"Masquerade Crimson Demon Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008007,"className":"wing_goddessLaima","name":"Laima's Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008008,"className":"wing_ep12musical_global","name":"Masquerade Crimson Demon Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008009,"className":"wing_ep12demonlord","name":"Littleberk/Maru Baby Skiaclipse Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008010,"className":"wing_ep12demonlord_global","name":"Littleberk/Maru Baby Skiaclipse Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008011,"className":"wing_ep13cybersoldier","name":"Task Unit Plazma Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008012,"className":"wing_ep13toswinter","name":"Ice Cold Snow Glacial Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008013,"className":"wing_ep13cherryblossom","name":"Rosy Floret Sky Lantern","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008014,"className":"wing_botruta","name":"Boruta Wings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008015,"className":"wing_ep13dessert","name":"Sweet Ice Cream Neon Sign","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008016,"className":"wing_ep13mafia","name":"Criminal Supreme Hitman Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008017,"className":"wing_ep13stem01","name":"STEM Biohazard Warning ","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008018,"className":"wing_ep13stem02","name":"STEM Periodic Table ","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008019,"className":"wing_twnocelot","name":"Ocelot Ballon","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008020,"className":"wing_ocelotbag","name":"Ocelot Backpack","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008021,"className":"wing_ep13tcance","name":"TOSummer Scorching Sun","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008022,"className":"wing_ep13raincoat01","name":"Drip Drop Rainy Day School Bag","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008023,"className":"wing_ep13raincoat02","name":"Drip Drop Weather Doll Balloon","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008024,"className":"wing_ep13retro","name":"Good ol'days Dazzling Stage Curtain","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008025,"className":"wing_ep13ge","name":"Rose Wing of Otherworld","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008026,"className":"wing_ep13mythology","name":"Asgard Grace of Nornir","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008027,"className":"wing_ep13maid","name":"Servant White Rose Silverware","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008028,"className":"wing_ep13animal","name":"Animal Kindergarten Strawberry Moo Bag","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008029,"className":"wing_ep14magical01","name":"Eternal Savior Lumen Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008030,"className":"wing_ep14magical02","name":"Eternal Savior Nox Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008031,"className":"wing_vakarine","name":"Goddess Vakarine's Twilight Star Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008032,"className":"wing_ocelotbag_black","name":"Baby Black Leopard Bag","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008033,"className":"wing_ocelotbag_white","name":"Baby Snow Leopard Bag","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008034,"className":"wing_twnocelot_black","name":"Baby Black Leopard Balloon","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008035,"className":"wing_twnocelot_white","name":"Baby Snow Leopard Balloon","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008036,"className":"wing_ep14zemina","name":"Knight of Zemyna Flower Garland","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008037,"className":"wing_ep14egypt","name":"Wing of Ra","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008038,"className":"wing_twnocelot_NoTrade","name":"Ocelot Balloon","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008039,"className":"wing_ocelotbag_NoTrade","name":"Ocelot Backpack","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008040,"className":"wing_ep14tarot01","name":"Major Arcana Brilliant Star","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008041,"className":"wing_ep14tarot02","name":"Major Arcana Shining Moon","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008042,"className":"wing_ep14furry01","name":"Furry Friends Fox Tail","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008043,"className":"wing_poporion","name":"Popolion Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11008044,"className":"wing_goddessLaima_papaya","name":"Laima's Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11009001,"className":"Effect_littleprince","name":"Pilot's Dream","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"ITEM_EFFECT_LITTLEPRINCE"}},{"itemId":11009002,"className":"Effect_ep12wedding","name":"Romantic Heart","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"ITEM_EFFECT_EP12WEDDING_PRE"}},{"itemId":11009003,"className":"Effect_catagnan","name":"MusCATeer Tracks","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"CATAGNAN_EFFECT"}},{"itemId":11009004,"className":"Effect_ep12tactical01","name":"Police Line","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"EP12TACTICAL_EFFECT02_PRE"}},{"itemId":11009005,"className":"Effect_ep12tactical02","name":"Emergency Siren","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"EP12TACTICAL_EFFECT01"}},{"itemId":11009006,"className":"Effect_ep12summer01","name":"Lurking Shark","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"ITEM_EP12TWINSHARK_EFFECT_PRE"}},{"itemId":11009007,"className":"Effect_ep12summer02","name":"Honking Seagulls","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"ITEM_EP12FLYINGSEAGULL_EFFECT_PRE"}},{"itemId":11009008,"className":"Effect_ep12musical","name":"Gaze of Masked Demon","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"ITEM_EFFECT_EP12Musical_PRE"}},{"itemId":11009009,"className":"Effect_ep12musical_global","name":"Gaze of Masked Demon","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"ITEM_EFFECT_EP12Musical_PRE"}},{"itemId":11009010,"className":"Effect_ep12demonlord","name":"Twinkling Steps","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"EP12DEMONLORD_EFFECT_PRE"}},{"itemId":11009011,"className":"Effect_ep12demonlord_global","name":"Twinkling Steps","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"EP12DEMONLORD_EFFECT_PRE"}},{"itemId":11009012,"className":"Effect_ep13cybersoldier","name":"Hologram Screen","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"ITEM_EFFECT_EP13cybersoldier"}},{"itemId":11009013,"className":"Effect_ep13toswinter","name":"Dancing Leaves on Breeze","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"ITEM_EFFECT_TOSWINTER_EFFECT"}},{"itemId":11009014,"className":"Effect_ep13cherryblossom","name":"Rosy Floret Butterfly's Dream","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"ITEM_EFFECT_EP13CHERRY_PRE"}},{"itemId":11009015,"className":"Effect_ep13mafia","name":"Wanted Poster","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"ITEM_EFFECT_EP13mafia"}},{"itemId":11009016,"className":"Effect_ep13stem","name":"STEM Planetary Orbits","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"EP13STEM_EFFECT"}},{"itemId":11009017,"className":"Effect_ep13tcance","name":"Beach Fireworks","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"ITEM_EFFECT_EP13TCANCE_PRE"}},{"itemId":11009018,"className":"Effect_ep13raincoat","name":"Toddle Waddle Ducklings","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"EFFECT_EP13RAINCOAT_BUFF"}},{"itemId":11009019,"className":"Effect_Beginner_7d","name":"Growth Support Effect (7 Days)","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"ITEM_EFFECT_Beginner_PRE"}},{"itemId":11009020,"className":"Effect_ep13retro","name":"Dazzling Glitterball","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"ITEM_EFFECT_EP13RETRO_PRE"}},{"itemId":11009021,"className":"Effect_zanas_jpn","name":"Zanas' Trace","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"ITEM_EFFECT_ZANAS_PRE"}},{"itemId":11009022,"className":"Effect_ep13athleisure","name":"Muscle Up!","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"ITEM_EFFECT_ep13athleisure_PRE"}},{"itemId":11009023,"className":"Effect_ep14fivebird","name":"Rise of the Phoenix","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"ITEM_EFFECT_ep14fivebird_PRE"}},{"itemId":11009024,"className":"Effect_twn6th_bubble","name":"Tasty Bubble Tea","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"ITEM_EFFECT_Effect_twn6th_bubble_PRE"}},{"itemId":11009025,"className":"Effect_ep12wedding_violet","name":"Violet Heart","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"ITEM_EFFECT_EP12WEDDING_PRE"}},{"itemId":11009026,"className":"Effect_ep12demonlord_violet","name":"Violet Twinkling Steps","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"EP12DEMONLORD_VIOLET_EFFECT_PRE"}},{"itemId":11009027,"className":"Effect_twn6th_bubble_NoTrade","name":"Yummy Bubble","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"ITEM_EFFECT_Effect_twn6th_bubble_PRE"}},{"itemId":11009028,"className":"Effect_jpn3th_leaf","name":"Raccoon's Leaf","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"LEAF_STAMP_EFFECT"}},{"itemId":11030017,"className":"ChallengeExpertModeCountUp","name":"Division Singularity One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeExpertModeCountUp"}},{"itemId":11030019,"className":"EP12_EXPERT_MODE_MULTIPLE","name":"Division Singularity Add. Reward Voucher","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"CHALLENGE_HARDMODE_MULTIPLE","numArg1":2}},{"itemId":11030021,"className":"ChallengeExpertModeCountUp_NoTrade","name":"Division Singularity One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeExpertModeCountUp"}},{"itemId":11030023,"className":"EP12_EXPERT_MODE_MULTIPLE_NoTrade","name":"Division Singularity Add. Reward Voucher","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"CHALLENGE_HARDMODE_MULTIPLE","numArg1":2}},{"itemId":11030067,"className":"ChallengeExpertModeCountUp_1d","name":"Division Singularity One Entry Voucher (1 Day)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeExpertModeCountUp"}},{"itemId":11030070,"className":"housing_forest_bg_unlock","name":"Deep Woods Housing Background Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GET_PERSONAL_HOUSING_THEMA","numArg1":7013}},{"itemId":11030071,"className":"housing_flowershop_bg_unlock","name":"Flower Shop Housing Background Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GET_PERSONAL_HOUSING_THEMA","numArg1":7014}},{"itemId":11030072,"className":"housing_winebar_bg_unlock","name":"Wine Bar Housing Background Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GET_PERSONAL_HOUSING_THEMA","numArg1":7015}},{"itemId":11030078,"className":"ExchangeWeapon_Book_440","name":"[Lv.440] Weapon Type Change Tome","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"ExchangeWeapon_Book_440"}},{"itemId":11030080,"className":"ChallengeModeReset_3d","name":"Challenge Mode One Entry Voucher (3 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ChallengeModeReset"}},{"itemId":11030082,"className":"Ticket_Moringponia_Easy_7d","name":"Lepidoptera Junction: Legend (Auto Match) One Entry Voucher (7 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Moringponia_Easy_2d","strArg":"Ticket_Moringponia_Easy"}},{"itemId":11030083,"className":"Ticket_Glacier_Easy_7d","name":"White Witch's Forest : Legend (Auto Match) One Entry Voucher (7 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Glacier_Easy_2d","strArg":"Ticket_Glacier_Easy"}},{"itemId":11030084,"className":"Ticket_Mythic_Auto_7d","name":"Res Sacrae Raid: Auto/Solo (Normal) One Entry Voucher (7 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":812}},{"itemId":11030090,"className":"Ticket_Mythic_Auto_Hard_7d","name":"Res Sacrae Raid: Auto/Solo (Hard) One Entry Voucher (7 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_MythicDungeon_Auto_Hard_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":817}},{"itemId":11030091,"className":"Ticket_Moringponia_Hard_7d","name":"Lepidoptera Junction: Legend (Hard) One Entry Voucher (7 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":805}},{"itemId":11030092,"className":"Ticket_Moringponia_Solo_7d","name":"Lepidoptera Junction: Legend (Solo) One Entry Voucher (7 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":808}},{"itemId":11030093,"className":"Ticket_Glacier_Solo_7d","name":"White Witch's Forest : Legend One Entry Voucher (7 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":806}},{"itemId":11030094,"className":"Ticket_Giltine_Auto_7d","name":"Demonic Sanctuary (Auto/Solo) One Entry Voucher (7 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":814}},{"itemId":11030095,"className":"Ticket_Giltine_7d","name":"Demonic Sanctuary: Legend One Entry Voucher (7 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Giltine_Raid_Entrance_Ticket","numArg1":807}},{"itemId":11030114,"className":"Ticket_Mythic_Auto_Hard","name":"Res Sacrae Raid: Auto/Solo (Hard) One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_MythicDungeon_Auto_Hard_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":817}},{"itemId":11030115,"className":"Multiple_Token_MythicAuto","name":"Res Sacrae Raid: Auto/Solo (Normal) Multiply Token","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto","numArg1":2}},{"itemId":11030116,"className":"Relic_exp_token_refine_Box_50","name":"Purified Breath of Power Box","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Relic_exp_token_refine/50;"}},{"itemId":11030117,"className":"Ticket_Mythic_Auto_Premium","name":"Res Sacrae Raid: Auto/Solo (Normal) One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":812}},{"itemId":11030121,"className":"Ticket_Moringponia_Easy","name":"Lepidoptera Junction: Legend (Auto Match) One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Moringponia_Easy_2d","strArg":"Ticket_Moringponia_Easy"}},{"itemId":11030122,"className":"Ticket_Glacier_Easy","name":"White Witch's Forest : Legend (Auto Match) One Entry Voucher (7 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Glacier_Easy_2d","strArg":"Ticket_Glacier_Easy"}},{"itemId":11030123,"className":"Ticket_Glacier_Easy_OnlyMarket","name":"White Witch's Forest : Legend (Auto Match) One Entry Voucher (7 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Glacier_Easy_2d","strArg":"Ticket_Glacier_Easy"}},{"itemId":11030128,"className":"ExchangeACC_Book_450","name":"[Lv.450] Accessory Type Change Tome","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"ExchangeACC_Book_450"}},{"itemId":11030129,"className":"Ticket_Mythic_Auto_Hard_Premium","name":"Res Sacrae Raid: Auto/Solo (Hard) One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_MythicDungeon_Auto_Hard_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":817}},{"itemId":11030134,"className":"Ticket_Giltine_Auto_Premium","name":"Demonic Sanctuary (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":814}},{"itemId":11030143,"className":"Abrasive_460","name":"[Lv.460] Awakening Abrasive","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030144,"className":"Ticket_Mythic_Auto_Premium_NoTrade","name":"Res Sacrae Raid: Auto/Solo (Normal) One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":812}},{"itemId":11030145,"className":"Multiple_Token_MythicAuto_NoTrade","name":"Res Sacrae Raid: Auto/Solo (Normal) Multiply Token","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto","numArg1":2}},{"itemId":11030146,"className":"Ticket_Giltine_Auto_Premium_NoTrade","name":"Demonic Sanctuary (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Weekly_Entrance_Ticket","strArg":"Weekly_Entrance_Ticket","numArg1":814}},{"itemId":11030147,"className":"housing_steampunk_bg_unlock","name":"Steam Punk Housing Background Unlock Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GET_PERSONAL_HOUSING_THEMA","numArg1":7016}},{"itemId":11030149,"className":"misc_ore15_and_misc_0530_bundle","name":"Practonium Magic Stone Bundle","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"misc_ore15/1;misc_0530/1;"}},{"itemId":11030150,"className":"relic_growth_bundle","name":"Res Sacrae Growth Bundle","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Relic_gem_upgrade_token/1;Relic_exp_refine_conversion/1;"}},{"itemId":11030151,"className":"relic_growth_10cnt_box","name":"Goddess' Grace Res Sacrae Growth Box","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Relic_gem_upgrade_token/10;Relic_exp_refine_conversion/10;"}},{"itemId":11030162,"className":"Multiple_Token_MythicHARD","name":"Res Sacrae Raid: Auto/Solo (Hard) Add. Reward Voucher","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto_Hard","numArg1":2}},{"itemId":11030169,"className":"Ticket_Bernice_Enter_1d","name":"Remnants of Bernice One Entry Voucher (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":2}},{"itemId":11030170,"className":"txbox_boss_coop_costume","name":"Adversary Costume Set","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"costume_boss_coop/1;helmet_boss_coop/1;"}},{"itemId":11030174,"className":"Socket_Gold_460","name":"[Lv.460] Golden Socket","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OLD_GOLD_SOCKET","numArg1":460,"numArg2":3}},{"itemId":11030176,"className":"vibora_Vision_Select_Box_NoTrade","name":"Vaivora Vision (Untradable) Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":1}},{"itemId":11030182,"className":"Ticket_Vasilissa_Party_Enter_NoTrade","name":"Saint's Sacellum: Goddess One Entry Voucher (Untradable)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":818}},{"itemId":11030183,"className":"Abrasive_460_NoTrade","name":"[Lv.460] Awakening Abrasive (Untradable)","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbrasiveStone","numArg1":460}},{"itemId":11030186,"className":"vibora_Vision_Select_Box","name":"Vaivora Vision Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11030187,"className":"Exchange_Weapon_Book_460","name":"[Lv.460] Equipment Type Change Tome","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Exchange_Weapon_Book_460","numArg1":460}},{"itemId":11030188,"className":"Exchange_Armor_Book_460","name":"[Lv.460] Armor Type Change Tome","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Exchange_Armor","numArg1":460}},{"itemId":11030197,"className":"Ticket_Vasilissa_Auto_Enter_NoTrade","name":"Saint's Sacellum (Auto/Solo) One Entry Voucher (Untradable)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":819}},{"itemId":11030198,"className":"Ticket_Vasilissa_Auto_Enter_LimitTime","name":"Saint's Sacellum (Auto/Solo) One Entry Voucher (7 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":819}},{"itemId":11030208,"className":"Ticket_Vasilissa_Auto_Enter","name":"Saint's Sacellum (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":819}},{"itemId":11030209,"className":"Ticket_Vasilissa_Party_Enter","name":"Saint's Sacellum: Goddess One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":818}},{"itemId":11030231,"className":"Socket_Gold_460_NoTrade","name":"[Lv.460] Golden Socket (Untradable)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OLD_GOLD_SOCKET","numArg1":460,"numArg2":3}},{"itemId":11030241,"className":"certificate_RidePet_HelioGriffin_1","name":"Mount Voucher - Helio Griffin","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REGEDIT_RIDE_PET","strArg":"RidePet_2"}},{"itemId":11030242,"className":"certificate_RidePet_KogiBird_1","name":"Mount Voucher - Coggybird","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REGEDIT_RIDE_PET","strArg":"RidePet_3"}},{"itemId":11030243,"className":"certificate_RidePet_AshLion_1","name":"Mount Voucher - Ashlion","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REGEDIT_RIDE_PET","strArg":"RidePet_4"}},{"itemId":11030244,"className":"certificate_RidePet_PolarReindeer_1","name":"Mount Voucher - Arctic Reindeer","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REGEDIT_RIDE_PET","strArg":"RidePet_5"}},{"itemId":11030245,"className":"certificate_RidePet_NautilusSnail_1","name":"Mount Voucher - Nautilusnail","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REGEDIT_RIDE_PET","strArg":"RidePet_6"}},{"itemId":11030256,"className":"certificate_RidePet_ep13raincoat","name":"Mount Voucher - Waggy Goldfish","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REGEDIT_RIDE_PET","strArg":"RidePet_7"}},{"itemId":11030257,"className":"Ticket_Bernice_Enter","name":"Remnants of Bernice One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":2}},{"itemId":11030261,"className":"ark_lvup_scroll_lv10","name":"Character Bound Ark Level Up Scroll (Lv.10)","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"ArkLVUPScroll","numArg1":10}},{"itemId":11030262,"className":"open_ticket_cabinet_armor","name":"Storage Goddess'/Demon God's Armor Register Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"open_cabinet_armor"}},{"itemId":11030263,"className":"open_ticket_cabinet_acc","name":"Storage Karaliene Accessory Register Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"open_cabinet_acc"}},{"itemId":11030264,"className":"open_ticket_cabinet_ark","name":"Storage Ark Register Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"open_cabinet_ark"}},{"itemId":11030318,"className":"2021_ARBORDAY_NECK_Upgrade","name":"2020 Botanic Necklace Upgrade Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_UPGRADE_ARBORDAY","strArg":"2021_ARBORDAY_NECK05/11/10/neck","numArg1":1}},{"itemId":11030319,"className":"2021_ARBORDAY_BRC_Upgrade","name":"2020 Botanic Bracelet Upgrade Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_UPGRADE_ARBORDAY","strArg":"2021_ARBORDAY_BRC05/11/10/brc","numArg1":1}},{"itemId":11030371,"className":"EngraveSlotExtension_Ticket_TeamBattleLeague","name":"[TBL] Engraving Slot +1 Expansion Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ENGRAVE_SLOT_EXTENSION_ONE_SLOT","strArg":"TEAMBATTLE"}},{"itemId":11030372,"className":"Care_pvp_mine_shop_weekly_reset","name":"[Reward] Mercenary Badge Shop Count Reset Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"CARE_RESET_PVPMINE_SHOP_WEEKLY_COUNT_FOR_ACCOUNT","numArg1":819}},{"itemId":11030373,"className":"Multiple_Token_MythicHARD_NoTrade","name":"Res Sacrae Raid: Auto/Solo (Hard) Add. Reward Voucher","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"MythicDungeon_Auto_Hard","numArg1":2}},{"itemId":11030377,"className":"select_Growth_Equip","name":"[Growth] Equipment Set Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030378,"className":"select_Growth_Melee_Armor","name":" [Growth] Armor Set Selection Box (Physical)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Melee","numArg1":440}},{"itemId":11030379,"className":"select_Growth_Magic_Armor","name":" [Growth] Armor Set Selection Box (Magic)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Magic","numArg1":440}},{"itemId":11030380,"className":"select_Growth_Melee_Weapon","name":" [Growth] Main Weapon Selection Box (Physical)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Melee","numArg1":440}},{"itemId":11030381,"className":"select_Growth_Melee_SubWeapon","name":" [Growth] Sub Weapon Selection Box (Physical)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Melee","numArg1":440}},{"itemId":11030382,"className":"select_Growth_Magic_Weapon","name":" [Growth] Main Weapon Selection Box (Magic)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Magic","numArg1":440}},{"itemId":11030383,"className":"select_Growth_Magic_SubWeapon","name":" [Growth] Sub Weapon Selection Box (Magic)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Magic","numArg1":440}},{"itemId":11030384,"className":"give_Growth_Acc","name":"[Growth] Accessory Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Event_Growth_Neck/1/Transcend/10/Reinforce_2/16;Event_Growth_Brc/2/Transcend/10/Reinforce_2/16;"}},{"itemId":11030386,"className":"create_ticket_cabinet_acc","name":"Karaliene Accessory Set Create Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"create_cabinet_acc"}},{"itemId":11030387,"className":"create_ticket_cabinet_acc2","name":"Luciferie Accessory Set Create Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"create_cabinet_acc2"}},{"itemId":11030393,"className":"Exchange_Weapon_Book_460_14d","name":"[Lv.460] Weapon Type Change Tome (14 Days)","type":"Etc","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Exchange_only_Weapon_Book_460","numArg1":460}},{"itemId":11030396,"className":"Ticket_Vasilissa_Auto_Enter_BeginnerGuild","name":"[Support Guild] Saint's Sacellum (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":819}},{"itemId":11030397,"className":"selectbox_ep13ge02_1","name":"Designer's Pick of Otherworld Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":440}},{"itemId":11030398,"className":"extract_ticket_cabinet_vibora","name":"[Storage] Vaivora Vision Extract Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"extract_vibora"}},{"itemId":11030399,"className":"open_ticket_cabinet_vibora_lv1","name":"[Lv1] Vaivora Vision Register Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"open_ticket_vibora","numArg1":1}},{"itemId":11030400,"className":"open_ticket_cabinet_vibora_lv2","name":"[Lv2] Vaivora Vision Register Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"open_ticket_vibora","numArg1":2}},{"itemId":11030401,"className":"open_ticket_cabinet_vibora_lv3","name":"[Lv3] Vaivora Vision Register Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"open_ticket_vibora","numArg1":3}},{"itemId":11030402,"className":"open_ticket_cabinet_vibora_lv4","name":"[Lv4] Vaivora Vision Register Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"open_ticket_vibora","numArg1":4}},{"itemId":11030403,"className":"extract_ticket_cabinet_goddess","name":"[Storage] Goddess'/Demon God's Armor Extract Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"extract_goddess"}},{"itemId":11030404,"className":"open_ticket_cabinet_goddess_lv1","name":"[Lv1] Goddess'/Demon God's Armor Register Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"open_ticket_goddess","numArg1":1}},{"itemId":11030405,"className":"open_ticket_cabinet_goddess_lv2","name":"[Lv2] Goddess'/Demon God's Armor Register Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"open_ticket_goddess","numArg1":2}},{"itemId":11030406,"className":"open_ticket_cabinet_goddess_lv3","name":"[Lv3] Goddess'/Demon God's Armor Register Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"open_ticket_goddess","numArg1":3}},{"itemId":11030407,"className":"EngraveSlotExtension_Ticket_AchieveLevel","name":"[Achievement] Engraving Slot +1 Expansion Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ENGRAVE_SLOT_EXTENSION_ONE_SLOT","strArg":"ACHIEVELEVEL"}},{"itemId":11030408,"className":"care_440_tutorial_clear","name":"[Tutorial] Moroth Embassy Certificate","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CARE_440_MOROS_TUTO","strArg":"MOROS_440_TUTO"}},{"itemId":11030409,"className":"extract_all_ticket_cabinet_vibora","name":"[Storage] Vaivora Vision All Extract Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"all_extract_vibora"}},{"itemId":11030410,"className":"extract_all_ticket_cabinet_goddess","name":"[Storage] Goddess'/Demon God's Armor All Extract Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"all_extract_goddess"}},{"itemId":11030411,"className":"extract_ticket_cabinet_vibora_limit","name":"[Storage] Vaivora Vision Extract Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":99,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"extract_vibora"}},{"itemId":11030412,"className":"extract_ticket_cabinet_goddess_limit","name":"[Storage] Goddess'/Demon God's Armor Extract Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":99,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"extract_goddess"}},{"itemId":11030413,"className":"Premium_SkillReset_Job_limit","name":"Selected Class Skill Reset Potion","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_IS_USE_QUEST_CLEAR_SCROLL","strArg":"SkillResetJob"}},{"itemId":11030414,"className":"Premium_Abillitypoint_Job_limit","name":"Selected Class Attribute Reset Potion","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Job"}},{"itemId":11030415,"className":"AbillityArts_Box_1_limit","name":"Arts Reset Potion Profession Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11030416,"className":"Premium_RankReset_limit","name":"Class Change Voucher Lv 4","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_RankReset"}},{"itemId":11030417,"className":"Exchange_Weapon_Book_460_limit","name":"[Lv.460] Equipment Type Change Tome","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Exchange_Weapon_Book_460","numArg1":460}},{"itemId":11030419,"className":"Care_pvp_mine_shop_weekly_reset_3d","name":"[Reward] Merc. Badge Shop Count Reset Voucher (3 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"CARE_RESET_PVPMINE_SHOP_WEEKLY_COUNT_FOR_ACCOUNT","numArg1":819}},{"itemId":11030420,"className":"Care_pvp_mine_shop_weekly_reset_7d","name":"[Reward] Merc. Badge Shop Count Reset Voucher (7 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"CARE_RESET_PVPMINE_SHOP_WEEKLY_COUNT_FOR_ACCOUNT","numArg1":819}},{"itemId":11030421,"className":"Care_weekly_pvp_mine_count_3d","name":"[Reward] Merc. Badge Weekly Acquisition Reset Voucher (3 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"CARE_RESET_PVPMINE_WEEKLY_COUNT_FOR_ACCOUNT","numArg1":819}},{"itemId":11030422,"className":"selectbox_ep13athleisure02_reward","name":"Athleisure Muscle Up! Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":440}},{"itemId":11030424,"className":"unknownsanctuary_relic_growth_bundle","name":"[Unknown Sanctuary] Res Sacrae Bundle","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Relic_gem_upgrade_token/10;Relic_exp_refine_conversion/20;"}},{"itemId":11030425,"className":"select_Growth_StartLine3_Char1_1","name":"[Growth] Moros Equipment Set - Swordsman","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT_GROWTH","strArg":"Melee","numArg1":440}},{"itemId":11030426,"className":"select_Growth_StartLine3_Char2_1","name":"[Growth] Moros Equipment Set - Wizard","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT_GROWTH","strArg":"Magic","numArg1":440}},{"itemId":11030427,"className":"select_Growth_StartLine3_Char3_1","name":"[Growth] Moros Equipment Set - Archer","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT_GROWTH","strArg":"Melee","numArg1":440}},{"itemId":11030428,"className":"select_Growth_StartLine3_Char4_1","name":"[Growth] Moros Equipment Set - Cleric (Physical)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT_GROWTH","strArg":"Melee","numArg1":440}},{"itemId":11030429,"className":"select_Growth_StartLine3_Char4_1_1","name":"[Growth] Moros Equipment Set - Cleric (Magic)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT_GROWTH","strArg":"Magic","numArg1":440}},{"itemId":11030430,"className":"select_Growth_StartLine3_Char5_1","name":"[Growth] Moros Equipment Set - Scout","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT_GROWTH","strArg":"Melee","numArg1":440}},{"itemId":11030433,"className":"relic_growth_20cnt_box","name":"Goddess' Grace Res Sacrae Growth Box II","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Relic_gem_upgrade_token/20;Relic_exp_token_refine/20;"}},{"itemId":11030434,"className":"ark_convert_scroll","name":"Character Bound Ark Change Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"ArkConvertScroll","numArg1":10}},{"itemId":11030435,"className":"ark_convert_scroll_7d","name":"Character Bound Ark Change Scroll (7 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"ArkConvertScroll","numArg1":10}},{"itemId":11030437,"className":"Exchange_Weapon_Book_460_1d","name":"[Lv.460] Equipment Type Change Tome (1 Day)","type":"Etc","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Exchange_Weapon_Book_460","numArg1":460}},{"itemId":11030441,"className":"give_Velcoffer_NoTrade","name":"Velcoffer Costume Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT_NOTRADE","strArg":"costume_Com_93/1;helmet_velcoffer/1;"}},{"itemId":11030442,"className":"give_Baniclips_NoTrade","name":"Varnaclipse Costume Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT_NOTRADE","strArg":"costume_Com_216/1;helmet_baniclips/1;"}},{"itemId":11030447,"className":"selectbox_ep13maid02_tr","name":"[Event] Special Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":440}},{"itemId":11030448,"className":"selectbox_6th_greenschool","name":"[Event] Green School Uniform Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":440}},{"itemId":11030449,"className":"selectbox_6th_cardiganschool","name":"[Event] Cardigan School Uniform Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":440}},{"itemId":11030450,"className":"relicgem_lvup_scroll_lv5","name":"Res Sacrae Gem Enhance Scroll (Lv.5)","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"RelicGemLVUPScroll","numArg1":5}},{"itemId":11030453,"className":"selectbox_Gem_Relic_Cyan","name":"Goddess Cyan Gem Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":440}},{"itemId":11030454,"className":"selectbox_Gem_Relic_Magenta","name":"Goddess Magenta Gem Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":440}},{"itemId":11030455,"className":"selectbox_Gem_Relic_Black","name":"Goddess Black Gem Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":440}},{"itemId":11030456,"className":"givebox_Seal_Boruta_Common","name":"Boruta Seal - Common Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT_NOTRADE","strArg":"Seal_Boruta_Common/1;"}},{"itemId":11030457,"className":"selectbox_NoTrade_Leg_Card","name":"Legend Card Selection Album","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":440}},{"itemId":11030458,"className":"selectbox_Gem_High","name":"[Lv.460] Aether Gem Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":440}},{"itemId":11030460,"className":"certificate_RidePet_ep13raincoat_STM","name":"Mount Voucher - Waggy Goldfish","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REGEDIT_RIDE_PET","strArg":"RidePet_7"}},{"itemId":11030461,"className":"open_ticket_cabinet_luci_acc","name":"Luciferie Accessory Set Register Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"open_cabinet_luci_acc"}},{"itemId":11030469,"className":"SEASONLETICIA_EXPERT_MODE_MULTIPLE","name":"Division Singularity Add. Reward Voucher","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"CHALLENGE_HARDMODE_MULTIPLE","numArg1":2}},{"itemId":11030470,"className":"SEASONLETICIA_Vasilissa_Auto_Enter","name":"Saint's Sacellum (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":819}},{"itemId":11030473,"className":"EngraveSlotExtension_Ticket_Achieve","name":"[Achievement] Engraving Slot +1 Expansion Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ENGRAVE_SLOT_EXTENSION_ONE_SLOT","strArg":"ACHIEVE"}},{"itemId":11030475,"className":"Relic_exp_token_refine_Box_50_NoTrade","name":"Purified Breath of Power Box (Untradable)","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Relic_exp_token_refine/50;"}},{"itemId":11030478,"className":"select_Growth_Sword_Weapon","name":"[Swordsman] M.Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030479,"className":"select_Growth_Sword_SubWeapon","name":"[Swordsman] S.Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030480,"className":"select_Growth_Wizard_Weapon","name":"[Wizard] M.Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030481,"className":"select_Growth_Wizard_SubWeapon","name":"[Wizard] S.Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030482,"className":"select_Growth_Archer_Weapon","name":"[Archer] M.Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030483,"className":"select_Growth_Archer_SubWeapon","name":"[Archer] S.Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030484,"className":"select_Growth_Cleric_Weapon","name":"[Cleric] M.Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030485,"className":"select_Growth_Cleric_SubWeapon","name":"[Cleric] S.Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030486,"className":"select_Growth_Scout_Weapon","name":"[Scout] M.Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030487,"className":"select_Growth_Scout_SubWeapon","name":"[Scout] S.Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030488,"className":"select_Growth_All_Weapon","name":"[Guardian] Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030489,"className":"select_Growth_All_Armor","name":"[Guardian] Armor Set","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035001,"className":"selectbox_ep12tactical01","name":"TOS Task Force SWAT Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035002,"className":"selectbox_ep12tactical02","name":"TOS Task Force Fire Fighter Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035003,"className":"selectbox_ep12tactical03","name":"TOS Task Force Police Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035004,"className":"selectbox_ep12tactical_weapon","name":"TOS Task Force Weapon Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035005,"className":"Allbox_ep12tactical","name":"TOS Task Force Perfect Kit","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"selectbox_ep12tactical01/1;selectbox_ep12tactical02/1;selectbox_ep12tactical03/1;selectbox_ep12tactical_weapon/1;"}},{"itemId":11035006,"className":"selectbox_ep12summer01","name":"Summer Wave Sky Blue Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035007,"className":"selectbox_ep12summer02","name":"Summer Wave Black Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035008,"className":"selectbox_ep12summer03","name":"Summer Wave White Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035009,"className":"selectbox_ep12summer_weapon","name":"Summer Wave Weapon Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035010,"className":"Allbox_ep12summer","name":"Summer Wave ALL Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"selectbox_ep12summer01/1;selectbox_ep12summer02/1;selectbox_ep12summer03/1;selectbox_ep12summer_weapon/1;"}},{"itemId":11035011,"className":"Special_Gift_Box_Leticia_2008","name":"2020 Leticia's Treasure Chest (Season 9)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"egg_pet_cadet_armadillo/1;CompanionExpcard400/3;"}},{"itemId":11035012,"className":"egg_pet_cadet_armadillo","name":"Cadet Armadillo Egg","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_cadet_armadillo","numArg1":38}},{"itemId":11035013,"className":"txbox_misc_ore27_20ea","name":"Skiaclipse Feather Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_ore27/40;"}},{"itemId":11035015,"className":"txbox_WHAT_Package_Grow","name":"WASSUP Growth Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"2020_ARBORDAY_NECK05/1/Transcend/10/Reinforce_2/11;2020_ARBORDAY_BRC05/2/Transcend/10/Reinforce_2/11;Ability_Point_Stone_10000/5;Event_Drug_Alche_HP15_Premium/1000;Event_Drug_Alche_SP15_Premium/1000;Drug_RedApple20/30;Drug_BlueApple20/30;Premium_boostToken02/9;Adventure_Reward_Seed/30;Adventure_Goddess_Statue/30;"}},{"itemId":11035016,"className":"txbox_WHAT_Package_BattleA","name":"WASSUP Get Ready Package A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_indunReset/10;Adventure_dungeoncount_01/20;ChallengeModeReset_NoTrade/30;PREMIUM_CHALLENG_PORTAL_TEAM/30;ChallengeExpertModeCountUp_NoTrade/10;EP12_EXPERT_MODE_MULTIPLE_NoTrade/10;Dungeon_Key01/100;uphill_multiple/3;rift_dungeon_multiple/3;"}},{"itemId":11035017,"className":"txbox_WHAT_Package_BattleB","name":"WASSUP Get Ready Package B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Premium/90;Moru_Ruby_Charge/30;Team_Legend_Enchant_Jewel_460/10;Drug_AddMaxWeight3/10;Premium_RankReset/3;Premium_Reset_Package/3;Premium_StatReset/3;AbillityArts_Box_Total/10;"}},{"itemId":11035018,"className":"txbox_WHAT_Package_All","name":"WASSUP All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"txbox_WHAT_Package_Grow/1;txbox_WHAT_Package_BattleA/1;txbox_WHAT_Package_BattleB/1;Moru_Diamond_14d_Team_Lv430/3;"}},{"itemId":11035019,"className":"selectbox_ep12honoredrose01","name":"Honored Rose Royal Black Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035020,"className":"selectbox_ep12honoredrose02","name":"Honored Rose Arrogant Red Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035021,"className":"selectbox_ep12honoredrose03","name":"Honored Rose Superb Pink Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035022,"className":"selectbox_ep12honoredrose_weapon","name":"Honored Rose Weapon Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035023,"className":"Allbox_ep12honoredrose","name":"Honored Rose ALL Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"selectbox_ep12honoredrose01/1;selectbox_ep12honoredrose02/1;selectbox_ep12honoredrose03/1;selectbox_ep12honoredrose_weapon/1;"}},{"itemId":11035024,"className":"Special_Gift_Box_Leticia_2009","name":"2020 Leticia's Treasure Chest (Season 10)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeExpertModeCountUp/100;EP12_EXPERT_MODE_MULTIPLE/100;"}},{"itemId":11035026,"className":"selectbox_ep12musical01","name":"Masquerade Mysterious Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035027,"className":"selectbox_ep12musical02","name":"Masquerade Horror Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035028,"className":"selectbox_ep12musical01_1","name":"Masquerade Strange Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035029,"className":"selectbox_ep12musical01_2","name":"Masquerade Secret Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035030,"className":"selectbox_ep12musical02_1","name":"Masquerade Spooky Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035031,"className":"selectbox_ep12musical03_1","name":"Masquerade Reverse Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035032,"className":"box_wing_ep12musical","name":"Masquerade Crimson Demon Wing Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"wing_ep12musical/1;"}},{"itemId":11035033,"className":"box_effect_ep12musical","name":"Gaze of Masked Demon Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Effect_ep12musical/1;"}},{"itemId":11035034,"className":"give_ticket_ep12musical03_m","name":"Masquerade Phantom of Music Costume (Male) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_curtain_call_1/1"}},{"itemId":11035035,"className":"give_ticket_ep12musical03_f","name":"Masquerade White Swan Costume (Female) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_curtain_call_2/1"}},{"itemId":11035036,"className":"give_ticket_ep12musical02_2_m","name":"Masquerade Weeping Frankenstein Costume (Male) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_curtain_call_3/1"}},{"itemId":11035037,"className":"give_ticket_ep12musical02_2_f","name":"Masquerade Weeping Ghost Costume (Female) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_curtain_call_4/1"}},{"itemId":11035038,"className":"give_ticket_ep12musical03_2_m","name":"Masquerade Simple Tux Costume (Male) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_curtain_call_5/1"}},{"itemId":11035039,"className":"give_ticket_ep12musical03_2_f","name":"Masquerade Simple Tutu Costume (Female) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_curtain_call_6/1"}},{"itemId":11035040,"className":"give_ticket_ep12honoredrose01_1_m","name":"Honored Rose Crimson Suit Costume (Male) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_honored_rose_1/1"}},{"itemId":11035041,"className":"give_ticket_ep12honoredrose01_1_f","name":"Honored Rose Crimson Dress Costume (Female) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_honored_rose_2/1"}},{"itemId":11035042,"className":"give_ticket_ep12honoredrose02_1_m","name":"Honored Rose Purple Suit Costume (Male) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_honored_rose_3/1"}},{"itemId":11035043,"className":"give_ticket_ep12honoredrose02_1_f","name":"Honored Rose Purple Dress Costume (Female) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_honored_rose_4/1"}},{"itemId":11035044,"className":"give_ticket_ep12honoredrose03_1_m","name":"Honored Rose Blue Suit Costume (Male) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_honored_rose_5/1"}},{"itemId":11035045,"className":"give_ticket_ep12honoredrose03_1_f","name":"Honored Rose Blue Dress Costume (Female) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_honored_rose_6/1"}},{"itemId":11035046,"className":"not_trade_selectbox_ep12musical01_1","name":"Masquerade Strange Costume Box (Cannot be traded)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035047,"className":"not_trade_selectbox_ep12musical01_2","name":"Masquerade Secret Costume Box (Cannot be traded)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035048,"className":"not_trade_selectbox_ep12musical02_1","name":"Masquerade Spooky Monster Costume Box (Cannot be traded)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035049,"className":"not_trade_selectbox_ep12musical03_1","name":"Masquerade Reverse Costume Box (Cannot be traded)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035050,"className":"egg_pet_thankgiving_sparrow","name":"Moonlight Sparrow Egg","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_sparrow_Thanksgiving","numArg1":38}},{"itemId":11035051,"className":"txbox_20chuseok_Package_Grow","name":"Half Moon Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_expCard_430Lv/1;Event_JobexpCard_BOX/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Legend_SlotOpen_Card_Team/1;Class_Solution_Select_Box_Event/1;Event_Roulette_Baleuna_box_1/2;Event_Roulette_Baleuna_box_2/4;Premium_moneyBox/10;Ability_Point_Stone_10000/5;Event_Drug_Alche_HP15_Premium/1000;Event_Drug_Alche_SP15_Premium/1000;Drug_RedApple20/30;Drug_BlueApple20/30;Premium_boostToken02/9;Adventure_Reward_Seed/30;Adventure_Goddess_Statue/30;misc_pvp_mine2/50000;"}},{"itemId":11035052,"className":"txbox_20chuseok_Package_BattleA","name":"Crescent Moon Package A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_indunReset/40;ChallengeModeReset_NoTrade/30;ChallengeExpertModeCountUp_NoTrade/15;SoloRaidCntReset_Team/3;Dungeon_Key01/100;uphill_multiple/3;rift_dungeon_multiple/3;"}},{"itemId":11035053,"className":"txbox_20chuseok_Package_BattleB","name":"Crescent Moon Package B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Moru_Premium/30;Moru_Ruby_Charge/10;Event_Reinforce_100000coupon/1000;GLOBAL_Transcend_Scroll_9_440/1;Ancient_CardBook_ALL/50;Drug_AddMaxWeight3/10;Premium_RankReset/1;Premium_Reset_Package/1;Premium_StatReset/1;AbillityArts_Box_Total/3;"}},{"itemId":11035054,"className":"txbox_20chuseok_Package_All","name":"Full Moon Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"txbox_20chuseok_Package_Grow/1;txbox_20chuseok_Package_BattleA/1;txbox_20chuseok_Package_BattleB/1;Moru_Diamond_14d_Team_Lv430/3;egg_pet_thankgiving_sparrow/1;2020_ARBORDAY_NECK05/1/Transcend/10/Reinforce_2/11;2020_ARBORDAY_BRC05/2/Transcend/10/Reinforce_2/11;"}},{"itemId":11035055,"className":"Special_Gift_Box_Leticia_2010","name":"2020 Leticia's Treasure Chest (Season 11)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"goldmoru_box_S/20;txbox_Ruby_Moru_cnt20/10;Premium_item_transcendence_Stone/100;"}},{"itemId":11035056,"className":"SoloRaidCntReset_TP","name":"Shining Sole Hunt One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FreeDungeon_Solo_Raid_Cnt","strArg":"SoloRaidCntReset_Team","numArg1":1}},{"itemId":11035057,"className":"Premium_RankReset_Lv4_TP","name":"Shining Class Change Voucher Lv.4","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_RankReset"}},{"itemId":11035058,"className":"Premium_RankReset_Lv3_TP","name":"Shining Class Change Voucher Lv.3","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"Premium_RankReset_Point_Lv3","numArg1":1000}},{"itemId":11035059,"className":"Premium_Abillitypoint_TP","name":"Shining Attribute Reset Potion","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset"}},{"itemId":11035060,"className":"selectbox_ep12musical01_1_global","name":"Masquerade Strange Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035061,"className":"selectbox_ep12musical01_2_global","name":"Masquerade Secret Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035062,"className":"selectbox_ep12musical02_1_global","name":"Masquerade Spooky Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035063,"className":"selectbox_ep12musical03_1_global","name":"Masquerade Reverse Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035064,"className":"Allbox_ep12musical_global","name":"Masquerade ALL Package","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"selectbox_ep12musical01/1;selectbox_ep12musical01_1_global/1;selectbox_ep12musical01_2_global/1;selectbox_ep12musical02/1;selectbox_ep12musical02_1_global/1;selectbox_ep12musical03_1_global/1;EP12_Hat_047/1;EP12_Artefact_094/1;EP12_Artefact_095/1;EP12_Artefact_096/1;"}},{"itemId":11035065,"className":"ActOne_ep12musical_global","name":"Masquerade Act One Package","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"selectbox_ep12musical01/1;selectbox_ep12musical01_2_global/1;selectbox_ep12musical02_1_global/1;"}},{"itemId":11035066,"className":"ActTwo_ep12musical_global","name":"Masquerade Act Two Package","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"selectbox_ep12musical01_1_global/1;selectbox_ep12musical02/1;selectbox_ep12musical03_1_global/1;EP12_Hat_047/1;"}},{"itemId":11035067,"className":"selectbox_ep12demonlord01","name":"Littleberk/Maru Character Pajama Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035068,"className":"selectbox_ep12demonlord01_m","name":"Littleberk Character Pajama Costume Box (Male)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP12_helmet_m_ep12demonlord/1;EP12_costume_Com_078/1;"}},{"itemId":11035069,"className":"selectbox_ep12demonlord01_f","name":"Maru Character Pajama Costume Box (Female)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP12_helmet_f_ep12demonlord/1;EP12_costume_Com_079/1;"}},{"itemId":11035070,"className":"selectbox_ep12demonlord02","name":"Littleberk/Maru Custom Battle Uniform Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035071,"className":"selectbox_ep12demonlord01_1","name":"Littleberk/Maru Fluffy Pajama Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035072,"className":"selectbox_ep12demonlord01_2","name":"Littleberk/Maru Sweet Dream Pajama Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035073,"className":"selectbox_ep12demonlord02_1","name":"Littleberk/Maru Classy Battle Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035074,"className":"selectbox_ep12demonlord03_1","name":"Littleberk/Maru Finest Daily Wear Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035075,"className":"box_wing_ep12demonlord","name":"Littleberk/Maru Baby Skiaclipse Wing Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"wing_ep12demonlord/1;"}},{"itemId":11035076,"className":"box_effect_ep12demonlord","name":"Twinkling Steps Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Effect_ep12demonlord/1;"}},{"itemId":11035077,"className":"egg_pet_dalmatian","name":"Dalmatian Egg","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_dalmatian","numArg1":38}},{"itemId":11035078,"className":"not_trade_selectbox_ep12demonlord01_1","name":"Littleberk/Maru Fluffy Pajama Costume Box (Cannot be traded)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035079,"className":"not_trade_selectbox_ep12demonlord01_2","name":"Littleberk/Maru Sweet Dream Pajama Costume Box (Cannot be traded)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035080,"className":"not_trade_selectbox_ep12demonlord02_1","name":"Littleberk/Maru Classy Battle Costume Box (Cannot be traded)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035081,"className":"not_trade_selectbox_ep12demonlord03_1","name":"Littleberk/Maru Finest Daily Wear Costume Box (Cannot be traded)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035082,"className":"give_ticket_ep12demonlord03_m","name":"Littleberk Happy Daily Wear Costume (Male) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_demonlord_1/1"}},{"itemId":11035083,"className":"give_ticket_ep12demonlord03_f","name":"Maru Happy Daily Wear Costume (Female) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_demonlord_2/1"}},{"itemId":11035084,"className":"give_ticket_ep12demonlord02_2_m","name":"Littleberk Simple Battle Uniform (Male) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_demonlord_3/1"}},{"itemId":11035085,"className":"give_ticket_ep12demonlord02_2_f","name":"Maru Simple Battle Uniform (Female) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_demonlord_4/1"}},{"itemId":11035086,"className":"give_ticket_ep12demonlord03_2_m","name":"Littleberk Exhausted Daily Wear Costume (Male) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_demonlord_5/1"}},{"itemId":11035087,"className":"give_ticket_ep12demonlord03_2_f","name":"Maru Exhausted Daily Wear Costume (Female) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_demonlord_6/1"}},{"itemId":11035088,"className":"not_trade_egg_pet_dalmatian","name":"Dalmatian Egg (Cannot be traded)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_dalmatian","numArg1":38}},{"itemId":11035089,"className":"Special_Gift_Box_Leticia_2011","name":"2020 Leticia's Treasure Chest (November)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Summon_Cardbook_Box/9;card_Xpupkit10/47;legend_reinforce_card_lv3/2;card_Xpupkit02_event/16;card_Xpupkit01_100/36;Legendcard_Leticia/5/ItemExp/60;Legendcard_Leticia/4/ItemExp/130;Legendcard_Leticia/3/ItemExp/230;Legendcard_Leticia/3/ItemExp/370;Legendcard_Leticia/4/ItemExp/550;"}},{"itemId":11035090,"className":"Awake_box_S_Lv430","name":"Lv.430 Awakening Box S Rank","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_awakeningStone_TA/30;premium_Abrasive_430/50;"}},{"itemId":11035091,"className":"Awake_box_A_Lv430","name":"Lv.430 Awakening Box A Rank","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_awakeningStone_TA/10;premium_Abrasive_430/20;"}},{"itemId":11035092,"className":"givebox_1903_astronaut","name":"GM's Astro Ambition Package","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"helmet_astronaut/1;1903_astronaut_selelctbox/1;"}},{"itemId":11035093,"className":"selectbox_ep12demonlord01_1_global","name":"Littleberk/Maru Fluffy Pajama Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035094,"className":"selectbox_ep12demonlord01_2_global","name":"Littleberk/Maru Sweet Dream Pajama Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035095,"className":"selectbox_ep12demonlord02_1_global","name":"Littleberk/Maru Classy Battle Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035096,"className":"selectbox_ep12demonlord03_1_global","name":"Littleberk/Maru Finest Daily Wear Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035097,"className":"Allbox_ep12demonlord_global","name":"Littleberk/Maru ALL Package","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"selectbox_ep12demonlord01/1;selectbox_ep12demonlord01_1_global/1;selectbox_ep12demonlord01_2_global/1;selectbox_ep12demonlord02/1;selectbox_ep12demonlord02_1_global/1;selectbox_ep12demonlord03_1_global/1;EP12_Hat_048/1;EP12_Hat_049/1;EP12_Artefact_097/1;EP12_Artefact_098/1;EP12_Artefact_099/1;"}},{"itemId":11035098,"className":"selectbox_ep13vakarine01","name":"Evening Star Prestige Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035099,"className":"selectbox_ep13vakarine02","name":"Evening Star Bright Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035100,"className":"selectbox_ep13vakarine01_1","name":"Evening Star Twilight Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035101,"className":"selectbox_ep13vakarine01_2","name":"Evening Star Aurora Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035102,"className":"selectbox_ep13vakarine02_1","name":"Evening Star Nebula Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035103,"className":"selectbox_ep13vakarine03_1","name":"Evening Star Venus Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035104,"className":"box_wing_goddessLaIma","name":"Laima's Wing Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"wing_goddessLaima/1;"}},{"itemId":11035105,"className":"box_doll_vakarine","name":"Mini Vakarine Doll Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Doll_vakarine/1;"}},{"itemId":11035106,"className":"not_trade_selectbox_ep13vakarine01_1","name":"Evening Star Twilight Costume Selection Box (Cannot be Traded)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035107,"className":"not_trade_selectbox_ep13vakarine01_2","name":"Evening Star Aurora Costume Selection Box (Cannot be Traded)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035108,"className":"not_trade_selectbox_ep13vakarine02_1","name":"Evening Star Nebula Costume Selection Box (Cannot be Traded)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035109,"className":"not_trade_selectbox_ep13vakarine03_1","name":"Evening Star Venus Costume Selection Box (Cannot be Traded)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035110,"className":"give_ticket_ep13vakarine03_m","name":"Evening Star Altair Costume (Male) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_vakarine_1/1"}},{"itemId":11035111,"className":"give_ticket_ep13vakarine03_f","name":"Evening Star Vega Costume (Female) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_vakarine_2/1"}},{"itemId":11035112,"className":"give_ticket_ep13vakarine02_2_m","name":"Evening Star Comet Costume (Male) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_vakarine_3/1"}},{"itemId":11035113,"className":"give_ticket_ep13vakarine02_2_f","name":"Evening Star Comet Costume (Female) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_vakarine_4/1"}},{"itemId":11035114,"className":"give_ticket_ep13vakarine03_2_m","name":"Evening Star Deneb Costume (Male) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_vakarine_5/1"}},{"itemId":11035115,"className":"give_ticket_ep13vakarine03_2_f","name":"Evening Star Deneb Costume (Female) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_vakarine_6/1"}},{"itemId":11035116,"className":"egg_pet_winter_rabbit","name":"Snow Bunny Egg","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_winter_rabbit","numArg1":38}},{"itemId":11035117,"className":"Special_Gift_Box_Leticia_2010_GLOBAL","name":"2020 Leticia's Treasure Chest (Season 11)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"goldmoru_box_S/30;txbox_Ruby_Moru_cnt20/20;Premium_item_transcendence_Stone/100;"}},{"itemId":11035118,"className":"Special_Gift_Box_Leticia_2012","name":"2020 Leticia's Treasure Chest (Season 12)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Piece_LegendMisc/10;HiddenAbility_Piece/10;"}},{"itemId":11035119,"className":"Event_expCard_440Lv","name":"Level Jumping Card (Lv.440)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EXPCARD_JUMPING_SET_LV","numArg1":440}},{"itemId":11035121,"className":"txbox_5th_Anniversary_Package_Growth","name":"Bunny Hop Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_expCard_440Lv/1;Event_JobexpCard_BOX/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Legend_SlotOpen_Card_Team/1;Class_Solution_Select_Box_Event/1;Premium_RankReset/1;Premium_boostToken03/5;Ability_Point_Stone_10000/5;Adventure_Reward_Seed/50;Adventure_Goddess_Statue/50;Event_Drug_Alche_HP15_Premium/500;Event_Drug_Alche_SP15_Premium/500;Event_Coin_Ticket_5000/10;"}},{"itemId":11035122,"className":"txbox_5th_Anniversary_Package_BattleA","name":"Rabbit Hole Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/30;ChallengeExpertModeCountUp_NoTrade/30;Premium_indunReset/25;Premium_dungeoncount_01/50;Dungeon_Key01/50;uphill_multiple/5;rift_dungeon_multiple/5;"}},{"itemId":11035123,"className":"txbox_5th_Anniversary_Package_BattleB","name":"Chrome Rabbit Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"randombox_AssistorCard/3;Extract_kit_Gold_Team_nonEvent/15;Legend_Enchant_Jewel_460/15;Moru_Ruby_Charge/30;Moru_Premium/60;Drug_RedApple20/100;Drug_BlueApple20/100;"}},{"itemId":11035124,"className":"txbox_5th_Anniversary_Package_ALL","name":"Rabbit Family Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"txbox_5th_Anniversary_Package_Growth/1;txbox_5th_Anniversary_Package_BattleA/1;txbox_5th_Anniversary_Package_BattleB/1;Moru_Diamond_30d_Team_Lv450/3;egg_pet_winter_rabbit/1;"}},{"itemId":11035125,"className":"egg_pet_twnpanda","name":"Panda Egg","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_twnpanda","numArg1":38}},{"itemId":11035126,"className":"selectbox_ep13cybersoldier01","name":"Task Unit Alpha Patrol Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035127,"className":"selectbox_ep13cybersoldier02","name":"Task Unit Alpha Troop Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035128,"className":"selectbox_acc_ep13cybersoldier01","name":"Task Unit Visor Goggle Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035129,"className":"selectbox_acc_ep13cybersoldier02","name":"Task Unit Neon Kitty Ear Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035130,"className":"selectbox_ep13cybersoldier01_1","name":"Task Unit Beta Patrol Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035131,"className":"selectbox_ep13cybersoldier01_2","name":"Task Unit Omega Patrol Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035132,"className":"selectbox_ep13cybersoldier02_1","name":"Task Unit Beta Troop Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035133,"className":"selectbox_ep13cybersoldier03_1","name":"Task Unit Beta Operator Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035134,"className":"not_trade_selectbox_ep13cybersoldier01_1","name":"Task Unit Beta Patrol Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035135,"className":"not_trade_selectbox_ep13cybersoldier01_2","name":"Task Unit Omega Patrol Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035136,"className":"not_trade_selectbox_ep13cybersoldier02_1","name":"Task Unit Beta Troop Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035137,"className":"not_trade_selectbox_ep13cybersoldier03_1","name":"Task Unit Beta Operator Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035138,"className":"box_wing_ep13cybersoldier","name":"Task Unit Plazma Wing Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"wing_ep13cybersoldier/1;"}},{"itemId":11035139,"className":"egg_pet_robot_dog","name":"Assistant Robot Puppy Egg","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_robot_dog","numArg1":38}},{"itemId":11035140,"className":"not_trade_egg_pet_robot_dog","name":"Assistant Robot Puppy Egg (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_robot_dog","numArg1":38}},{"itemId":11035141,"className":"box_effect_ep13cybersoldier","name":"Hologram Screen Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Effect_ep13cybersoldier/1;"}},{"itemId":11035142,"className":"give_ticket_ep13cybersoldier03_m","name":"Task Unit Alpha Operator Costume (Male) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_cybersoldier_1/1"}},{"itemId":11035143,"className":"give_ticket_ep13cybersoldier03_f","name":"Task Unit Alpha Operator Costume (Female) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_cybersoldier_2/1"}},{"itemId":11035144,"className":"give_ticket_ep13cybersoldier02_2_m","name":"Task Unit Omega Troop Costume (Male) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_cybersoldier_3/1"}},{"itemId":11035145,"className":"give_ticket_ep13cybersoldier02_2_f","name":"Task Unit Omega Troop Costume (Female) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_cybersoldier_4/1"}},{"itemId":11035146,"className":"give_ticket_ep13cybersoldier03_2_m","name":"Task Unit Omega Operator Costume (Male) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_cybersoldier_5/1"}},{"itemId":11035147,"className":"give_ticket_ep13cybersoldier03_2_f","name":"Task Unit Omega Operator Costume (Female) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_cybersoldier_6/1"}},{"itemId":11035149,"className":"selectbox_ep13toswinter01","name":"Ice Cold Hoodie Bubble Jacket Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035150,"className":"selectbox_ep13toswinter02","name":"Ice Cold Everyday Parka Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035151,"className":"selectbox_ep13toswinter01_1","name":"Ice Cold Black Bubble Jacket Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035152,"className":"selectbox_ep13toswinter01_2","name":"Ice Cold White Bubble Jacket Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035153,"className":"selectbox_ep13toswinter02_1","name":"Ice Cold Casual Parka Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035154,"className":"selectbox_ep13toswinter03_1","name":"Ice Cold Brown Parka Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035155,"className":"not_trade_selectbox_ep13toswinter01_1","name":"Ice Cold Black Bubble Jacket Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035156,"className":"not_trade_selectbox_ep13toswinter01_2","name":"Ice Cold White Bubble Jacket Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035157,"className":"not_trade_selectbox_ep13toswinter02_1","name":"Ice Cold Casual Parka Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035158,"className":"not_trade_selectbox_ep13toswinter03_1","name":"Ice Cold Brown Parka Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035159,"className":"box_wing_ep13toswinter","name":"Ice Cold Snow Glacial Wing Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"wing_ep13toswinter/1;"}},{"itemId":11035160,"className":"box_effect_ep13toswinter","name":"Dancing Leaves on Breeze Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Effect_ep13toswinter/1;"}},{"itemId":11035161,"className":"give_ticket_ep13toswinter03_m","name":"Ice Cold Green Jumper Costume (Male) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_toswinter_1/1"}},{"itemId":11035162,"className":"give_ticket_ep13toswinter03_f","name":"Ice Cold Green Jumper Costume (Female) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_toswinter_2/1"}},{"itemId":11035163,"className":"give_ticket_ep13toswinter02_2_m","name":"Ice Cold Cozy Bubble Jacket Costume (Male) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_toswinter_3/1"}},{"itemId":11035164,"className":"give_ticket_ep13toswinter02_2_f","name":"Ice Cold Cozy Bubble Jacket Costume (Female) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_toswinter_4/1"}},{"itemId":11035165,"className":"give_ticket_ep13toswinter03_2_m","name":"Ice Cold Black Jumper Costume (Male) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_toswinter_5/1"}},{"itemId":11035166,"className":"give_ticket_ep13toswinter03_2_f","name":"Ice Cold Black Jumper Costume (Female) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_toswinter_6/1"}},{"itemId":11035181,"className":"selectbox_ep13cherryblossom01","name":"Rosy Floret Scarlet Blossom Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035182,"className":"selectbox_ep13cherryblossom02","name":"Rosy Floret Cherry Blossom Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035183,"className":"selectbox_ep13cherryblossom01_1","name":"Rosy Floret Powder Pink Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035184,"className":"selectbox_ep13cherryblossom01_2","name":"Rosy Floret Clear Turquoise Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035185,"className":"selectbox_ep13cherryblossom02_1","name":"Rosy Floret Pink Lilac Costume Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035186,"className":"selectbox_ep13cherryblossom03_1","name":"Rosy Floret Mid-Spring Blossom Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035187,"className":"not_trade_selectbox_ep13cherryblossom01_1","name":"Rosy Floret Powder Pink Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035188,"className":"not_trade_selectbox_ep13cherryblossom01_2","name":"Rosy Floret Clear Turquoise Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035189,"className":"not_trade_selectbox_ep13cherryblossom02_1","name":"Rosy Floret Pink Lilac Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035190,"className":"not_trade_selectbox_ep13cherryblossom03_1","name":"Rosy Floret Mid-Spring Flower Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035191,"className":"box_wing_ep13cherryblossom","name":"Rosy Floret Sky Lantern Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"wing_ep13cherryblossom/1;"}},{"itemId":11035192,"className":"box_effect_ep13cherryblossom","name":"Rosy Floret Butterfly's Dream Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Effect_ep13cherryblossom/1;"}},{"itemId":11035193,"className":"box_toy_ep13cherryblossom","name":"Rosy Floret Erhu Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"instrument_string/1;"}},{"itemId":11035194,"className":"give_ticket_ep13cherryblossom03_m","name":"Rosy Floret Violet Blossom Costume (Male) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_cherryblossom_1/1"}},{"itemId":11035195,"className":"give_ticket_ep13cherryblossom03_f","name":"Rosy Floret Violet Blossom Costume (Female) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_cherryblossom_2/1"}},{"itemId":11035196,"className":"give_ticket_ep13cherryblossom02_2_m","name":"Rosy Floret Punch Blossom Costume (Male) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_cherryblossom_3/1"}},{"itemId":11035197,"className":"give_ticket_ep13cherryblossom02_2_f","name":"Rosy Floret Punch Blossom Costume (Female) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_cherryblossom_4/1"}},{"itemId":11035198,"className":"give_ticket_ep13cherryblossom03_2_m","name":"Rosy Floret Late-Spring Flower Costume (Male) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_cherryblossom_5/1"}},{"itemId":11035199,"className":"give_ticket_ep13cherryblossom03_2_f","name":"Rosy Floret Late-Spring Flower Costume (Female) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_cherryblossom_6/1"}},{"itemId":11035200,"className":"Jumping_expCard_450Lv","name":"Level Jumping Card (Lv.450)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EXPCARD_JUMPING_SET_LV","numArg1":450}},{"itemId":11035201,"className":"txbox_2021_NewYear_Package_Growth","name":"New Year of Cow Grow Up Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Seal_2021_NewYear/1;Jumping_expCard_450Lv/1;2021_NewYear_Disnai_Weapon_box/1;2021_NewYear_Disnai_SubWeapon_box/1;2021_NewYear_Disnai_Armor_box/4;vibora_Vision_Select_Box_NoTrade/2;2021_SetOption_Scroll_Armor_440Lv/4;2021_SetOption_Scroll_Weapon_440Lv/2;Event_JobexpCard_BOX/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Legend_SlotOpen_Card_Team/1;Class_Solution_Select_Box_Event/1;Premium_RankReset/1;Premium_boostToken03/5;Premium_moneyBox/10;Ability_Point_Stone_10000/30;Event_170119_2/30;Adventure_Reward_Seed/50;Adventure_Goddess_Statue/50;Drug_RedApple20/50;Drug_BlueApple20/50;Event_Drug_Alche_HP15_Premium/500;Event_Drug_Alche_SP15_Premium/500;"}},{"itemId":11035202,"className":"txbox_2021_NewYear_Package_BattleA","name":"New Year of Cow Standby Package A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/30;ChallengeExpertModeCountUp_NoTrade/10;EP12_EXPERT_MODE_MULTIPLE_NoTrade/10;Premium_indunReset/15;Adventure_dungeoncount_01/30;uphill_multiple/3;rift_dungeon_multiple/3;"}},{"itemId":11035203,"className":"txbox_2021_NewYear_Package_BattleB","name":"New Year of Cow Standby Package B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"randombox_AssistorCard/5;Drug_AddMaxWeight3/5;Transcend_Scroll_10_450/1;Old_Socket_Gold_Team/3;Magic_Scroll_Box4/3;Ticket_Moringponia_Easy/15;Ticket_Glacier_Easy/15;Dungeon_Key01/50;Dungeon_Key02/20;Moru_Premium/50;Moru_Ruby_Charge/20;HiddenAbility_Piece/100;Event_Reinforce_100000coupon/500;Drug_RedApple20/1000;Drug_BlueApple20/1000;"}},{"itemId":11035204,"className":"txbox_2021_NewYear_Package_ALL","name":"New Year of Cow All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"txbox_2021_NewYear_Package_Growth/1;txbox_2021_NewYear_Package_BattleA/1;txbox_2021_NewYear_Package_BattleB/1;Moru_Diamond_30d_Team_Lv450/3;"}},{"itemId":11035205,"className":"egg_pet_ep13dessert","name":"Sweet Pudding Penguin Egg","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_ep13dessert","numArg1":38}},{"itemId":11035206,"className":"not_trade_egg_pet_ep13dessert","name":"Sweet Pudding Penguin Egg (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_ep13dessert","numArg1":38}},{"itemId":11035207,"className":"selectbox_ep13dessert01","name":"Sweet Mint Chocolate Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035208,"className":"selectbox_ep13dessert01_1","name":"Sweet Cream Cookie Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035209,"className":"selectbox_ep13dessert02","name":"Sweet Strawberry Panna Cotta Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035210,"className":"selectbox_ep13dessert02_1","name":"Sweet Butter Pancake Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035211,"className":"selectbox_ep13dessert03","name":"Sweet Blueberry Yogurt Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035212,"className":"selectbox_ep13dessert03_1","name":"Sweet Custard Pudding Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035213,"className":"selectbox_ep13dessert01_2","name":"Sweet Chocolate Cream Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035214,"className":"selectbox_ep13dessert02_2","name":"Sweet Kiwi Panna Cotta Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035215,"className":"selectbox_ep13dessert03_2","name":"Sweet Strawberry Mousse Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035216,"className":"not_trade_selectbox_ep13dessert01_2","name":"Sweet Chocolate Cream Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035217,"className":"not_trade_selectbox_ep13dessert02_2","name":"Sweet Kiwi Panna Cotta Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035218,"className":"not_trade_selectbox_ep13dessert03_2","name":"Sweet Strawberry Mousse Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035219,"className":"box_wing_ep13dessert","name":"Sweet Ice Cream Neon Sign Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"wing_ep13dessert/1;"}},{"itemId":11035220,"className":"all_costume_box_ep13dessert","name":"ALL Sweet Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"selectbox_ep13dessert01/1;selectbox_ep13dessert01_1/1;selectbox_ep13dessert02/1;selectbox_ep13dessert02_1/1;selectbox_ep13dessert03/1;selectbox_ep13dessert03_1/1;"}},{"itemId":11035221,"className":"all_weapon_box_ep13dessert","name":"ALL Sweet Weapon Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_Artefact_012/1;EP13_Artefact_013/1;EP13_Artefact_014/1;"}},{"itemId":11035222,"className":"egg_pet_arborday_rabbit","name":"2021 Botanic Bunny Egg","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_arborday_rabbit","numArg1":38}},{"itemId":11035224,"className":"selectbox_ep13cherryblossom01_JP","name":"Rosy Floret Scarlet Blossom Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035225,"className":"selectbox_ep13cherryblossom03_JP","name":"Rosy Floret Violet Blossom Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035226,"className":"give_ticket_ep13cherryblossom02_m_JP","name":"Rosy Floret Cherry Blossom (2) Costume (Male) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_cherryblossom_jp_1/1"}},{"itemId":11035227,"className":"give_ticket_ep13cherryblossom02_f_JP","name":"Rosy Floret Cherry Blossom (2) Costume (Female) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_cherryblossom_jp_2/1"}},{"itemId":11035228,"className":"give_ticket_ep13cherryblossom02_2_m_JP","name":"Rosy Floret Punch Blossom (2) Costume (Male) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_cherryblossom_jp_3/1"}},{"itemId":11035229,"className":"give_ticket_ep13cherryblossom02_2_f_JP","name":"Rosy Floret Punch Blossom (2) Costume (Female) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_cherryblossom_jp_4/1"}},{"itemId":11035230,"className":"give_ticket_ep13cherryblossom03_2_m_JP","name":"Rosy Floret Late-Spring Flower (2) Costume (Male) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_cherryblossom_jp_5/1"}},{"itemId":11035231,"className":"give_ticket_ep13cherryblossom03_2_f_JP","name":"Rosy Floret Late-Spring Flower (2) Costume (Female) Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ADD_ITEM_TO_DRESS_ROOM","strArg":"dress_cherryblossom_jp_6/1"}},{"itemId":11035232,"className":"Special_Gift_Box_Leticia_2103","name":"2021 Leticia's Treasure Chest (Season 2)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Mythic_Auto_Hard_Premium/50;Legendcard_Leticia/3/ItemExp/550;"}},{"itemId":11035233,"className":"Special_Gift_Box_Leticia_2104","name":"2021 Leticia's Treasure Chest (Season 5)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeExpertModeCountUp/150;EP12_EXPERT_MODE_MULTIPLE/300;"}},{"itemId":11035234,"className":"2021_ARBORDAY_PACKAGE_Growth","name":"2021 Seed Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"2021_ARBORDAY_NECK05/1/Transcend/10/Reinforce_2/11;2021_ARBORDAY_BRC05/2/Transcend/10/Reinforce_2/11;Jumping_expCard_450Lv/1;Event_JobexpCard_BOX/1;2021_NewYear_Disnai_Weapon_box/1;2021_NewYear_Disnai_SubWeapon_box/1;2021_NewYear_Disnai_Armor_box/4;vibora_Vision_Select_Box_NoTrade/2;2021_SetOption_Scroll_Armor_440Lv/4;2021_SetOption_Scroll_Weapon_440Lv/2;Seal_2021_NewYear/1;Event_Coin_Ticket_5000/10;Class_Solution_Select_Box_Event/1;Premium_RankReset/1;Premium_boostToken03/5;Premium_moneyBox/10;Ability_Point_Stone_10000/30;Adventure_Reward_Seed/50;Adventure_Goddess_Statue/50;Drug_RedApple20/50;Drug_BlueApple20/50;Event_Drug_Alche_HP15_Premium/500;Event_Drug_Alche_SP15_Premium/500;"}},{"itemId":11035235,"className":"2021_ARBORDAY_PACKAGE_BattleA","name":"Arbor Day Pine Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/30;ChallengeExpertModeCountUp_NoTrade/20;EP12_EXPERT_MODE_MULTIPLE_NoTrade/20;Premium_indunReset/40;Adventure_dungeoncount_01/40;Dungeon_Key01/500;Premium_repairPotion/500;"}},{"itemId":11035236,"className":"2021_ARBORDAY_PACKAGE_BattleB","name":"2021 Sprout Package B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"randombox_AssistorCard/10;Drug_AddMaxWeight3/10;Moru_Premium/30;Moru_Ruby_Charge/50;Event_HiddenAbility_MasterPiece/30;Arts_Ability_Coupon/30;Event_Reinforce_100000coupon/1000;"}},{"itemId":11035237,"className":"2021_ARBORDAY_PACKAGE_All","name":"2021 All-in-one Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"2021_ARBORDAY_PACKAGE_Growth/1;2021_ARBORDAY_PACKAGE_BattleA/1;2021_ARBORDAY_PACKAGE_BattleB/1;Moru_Diamond_30d_Team_Lv450/3;egg_pet_arborday_rabbit/1;"}},{"itemId":11035238,"className":"2021_ARBORDAY_PACKAGE_ACC_UPGRADE","name":"2020 Botanic Upgrade Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"2021_ARBORDAY_NECK_Upgrade/1;2021_ARBORDAY_BRC_Upgrade/2;"}},{"itemId":11035239,"className":"selectbox_ep13mafia01","name":"Criminal Mafia Boss Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035240,"className":"selectbox_ep13mafia01_1","name":"Criminal Young Boss Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035241,"className":"selectbox_ep13mafia02","name":"Criminal Prisoner Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035242,"className":"selectbox_ep13mafia02_1","name":"Criminal Trusty Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035243,"className":"selectbox_ep13mafia03","name":"Criminal Best Detective Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035244,"className":"selectbox_ep13mafia03_1","name":"Criminal Novice Detective Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035245,"className":"all_costume_box_ep13mafia","name":"Criminal ALL Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"selectbox_ep13mafia01/1;selectbox_ep13mafia01_1/1;selectbox_ep13mafia02/1;selectbox_ep13mafia02_1/1;selectbox_ep13mafia03/1;selectbox_ep13mafia03_1/1;"}},{"itemId":11035246,"className":"all_weapon_box_ep13mafia","name":"Criminal ALL Weapon Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_Artefact_015/1;EP13_Artefact_016/1;EP13_Artefact_017/1;EP13_Artefact_018/1;"}},{"itemId":11035247,"className":"selectbox_ep13mafia01_2","name":"Criminal Consigliere Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035248,"className":"selectbox_ep13mafia02_2","name":"Criminal Untrusty Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035249,"className":"selectbox_ep13mafia03_2","name":"Criminal Assistant Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035250,"className":"not_trade_selectbox_ep13mafia01_2","name":"Criminal Consigliere Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035251,"className":"not_trade_selectbox_ep13mafia02_2","name":"Criminal Untrusty Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035252,"className":"not_trade_selectbox_ep13mafia03_2","name":"Criminal Assistant Costume Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035253,"className":"box_wing_ep13mafia","name":"Criminal Supreme Hitman Wing Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"wing_ep13mafia/1;"}},{"itemId":11035254,"className":"box_effect_ep13mafia","name":"Wanted Poster Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Effect_ep13mafia/1;"}},{"itemId":11035255,"className":"2021_ARBORDAY_PACKAGE_ACC_UPGRADE2","name":"2020 Botanic Upgrade Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"2021_ARBORDAY_NECK_Upgrade/1;2021_ARBORDAY_BRC_Upgrade/2;"}},{"itemId":11035256,"className":"Package_Ticket_Giltine_Auto_Premium","name":"Demonic Sanctuary (Auto/Solo) Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Giltine_Auto_Premium/50;misc_Relic_Gem/5000;"}},{"itemId":11035257,"className":"Ticket_Giltine_Auto_Premium_box_50ea","name":"Demonic Sanctuary (Auto/Solo) One Entry Voucher Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Giltine_Auto_Premium/50;"}},{"itemId":11035258,"className":"2021_0505_PACKAGE_GrowthA","name":"2021 가정의 달 성장 패키지 A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"2021_ARBORDAY_NECK05/1/Transcend/10/Reinforce_2/11;2021_ARBORDAY_BRC05/2/Transcend/10/Reinforce_2/11;2021_NewYear_Disnai_Weapon_box/1;2021_NewYear_Disnai_SubWeapon_box/1;2021_NewYear_Disnai_Armor_box/4;vibora_Vision_Select_Box_NoTrade/2;2021_SetOption_Scroll_Weapon_440Lv/2;2021_SetOption_Scroll_Armor_440Lv/4;Seal_2021_NewYear/1;Event_Coin_Ticket_5000/10;Event_Drug_Alche_HP15_Premium/500;Event_Drug_Alche_SP15_Premium/500;Ability_Point_Stone_10000/50;"}},{"itemId":11035259,"className":"2021_0505_PACKAGE_GrowthB","name":"2021 가정의 달 성장 패키지 B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"SelectBox_Glacier_MainWeapon_0505/1;SelectBox_Glacier_SubWeapon_0505/1;Event_Coin_Ticket_5000/10;Event_Roulette_Glacier_box_1/4;Dirbtumas_kit_Sliver/2;Event_Pamoca_Box/3;Ability_Point_Stone_10000/50;"}},{"itemId":11035260,"className":"2021_0505_PACKAGE_BattleA","name":"2021 가정의 달 준비 패키지 A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/30;ChallengeExpertModeCountUp_NoTrade/5;EP12_EXPERT_MODE_MULTIPLE_NoTrade/20;Premium_indunReset/10;Adventure_dungeoncount_01/15;Dungeon_Key01/500;"}},{"itemId":11035261,"className":"2021_0505_PACKAGE_BattleB","name":"2021 가정의 달 준비 패키지 B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"randombox_AssistorCard/10;Drug_AddMaxWeight3/10;Event_HiddenAbility_MasterPiece/30;Event_Reinforce_100000coupon/500;Ability_Point_Stone_10000/100;"}},{"itemId":11035262,"className":"2021_0505_PACKAGE_BattleC","name":"2021 가정의 달 준비 패키지 C","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Mythic_Auto_Premium_NoTrade/50;Multiple_Token_MythicAuto_NoTrade/50;Ticket_Giltine_Auto_Premium_NoTrade/2;SoloRaidCntReset_Team/20;Dungeon_Key02/50;"}},{"itemId":11035263,"className":"2021_0505_PACKAGE_All","name":"2021 가정의 달 올인원 패키지","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"2021_0505_PACKAGE_GrowthA/1;2021_0505_PACKAGE_GrowthB/1;2021_0505_PACKAGE_BattleA/2;2021_0505_PACKAGE_BattleB/2;2021_0505_PACKAGE_BattleC/2;"}},{"itemId":11035264,"className":"2021_0505_PACKAGE_GrowthA_Newbie","name":"[신규/복귀]2021 가정의 달 성장 패키지 A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"2021_ARBORDAY_NECK05/1/Transcend/10/Reinforce_2/11;2021_ARBORDAY_BRC05/2/Transcend/10/Reinforce_2/11;2021_NewYear_Disnai_Weapon_box/1;2021_NewYear_Disnai_SubWeapon_box/1;2021_NewYear_Disnai_Armor_box/4;vibora_Vision_Select_Box_NoTrade/2;2021_SetOption_Scroll_Weapon_440Lv/2;2021_SetOption_Scroll_Armor_440Lv/4;Seal_2021_NewYear/1;Event_Coin_Ticket_5000/10;Event_Drug_Alche_HP15_Premium/500;Event_Drug_Alche_SP15_Premium/500;Ability_Point_Stone_10000/50;","numArg1":505}},{"itemId":11035265,"className":"2021_0505_PACKAGE_GrowthB_Newbie","name":"[신규/복귀]2021 가정의 달 성장 패키지 B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"SelectBox_Glacier_MainWeapon_0505/1;SelectBox_Glacier_SubWeapon_0505/1;Event_Coin_Ticket_5000/10;Event_Roulette_Glacier_box_1/4;Dirbtumas_kit_Sliver/2;Event_Pamoca_Box/3;Ability_Point_Stone_10000/50;","numArg1":505}},{"itemId":11035266,"className":"2021_0505_PACKAGE_BattleA_Newbie","name":" [New/Return] 2021 Family Get Ready Package A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/30;ChallengeExpertModeCountUp_NoTrade/5;EP12_EXPERT_MODE_MULTIPLE_NoTrade/20;Premium_indunReset/10;Adventure_dungeoncount_01/15;Dungeon_Key01/500;","numArg1":505}},{"itemId":11035267,"className":"2021_0505_PACKAGE_BattleB_Newbie","name":"[New/Return] 2021 Family Get Ready Package B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"randombox_AssistorCard/10;Drug_AddMaxWeight3/10;Event_HiddenAbility_MasterPiece/30;Event_Reinforce_100000coupon/500;Ability_Point_Stone_10000/100;","numArg1":505}},{"itemId":11035268,"className":"2021_0505_PACKAGE_BattleC_Newbie","name":"[New/Return] 2021 Family Get Ready Package C","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Mythic_Auto_Premium_NoTrade/50;Multiple_Token_MythicAuto_NoTrade/50;Ticket_Giltine_Auto_Premium_NoTrade/2;SoloRaidCntReset_Team/20;Dungeon_Key02/50;","numArg1":505}},{"itemId":11035269,"className":"2021_0505_PACKAGE_All_Newbie","name":"[New/Return] 2021 Family All in one Package C","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"2021_0505_PACKAGE_GrowthA_Newbie/1;2021_0505_PACKAGE_GrowthB_Newbie/1;2021_0505_PACKAGE_BattleA_Newbie/2;2021_0505_PACKAGE_BattleB_Newbie/2;2021_0505_PACKAGE_BattleC_Newbie/2;","numArg1":505}},{"itemId":11035270,"className":"selectbox_ep13stem01","name":"STEM Speciality Scientist Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035271,"className":"selectbox_ep13stem01_1","name":"STEM Laboratory Scientist Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035272,"className":"selectbox_ep13stem02","name":"STEM Intellectual Medic Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035273,"className":"selectbox_ep13stem02_1","name":"STEM Intellectual Graduate Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035274,"className":"selectbox_ep13stem03","name":"STEM Chemistry Major Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035275,"className":"selectbox_ep13stem03_1","name":"STEM Geometry Major Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035276,"className":"all_costume_box_ep13stem","name":"STEM ALL Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"selectbox_ep13stem01/1;selectbox_ep13stem01_1/1;selectbox_ep13stem02/1;selectbox_ep13stem02_1/1;selectbox_ep13stem03/1;selectbox_ep13stem03_1/1;"}},{"itemId":11035277,"className":"all_weapon_box_ep13stem","name":"STEM ALL Weapon Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_Artefact_035/1;EP13_Artefact_036/1;EP13_Artefact_037/1;EP13_Artefact_038/1;"}},{"itemId":11035278,"className":"selectbox_ep13stem01_2","name":"STEM Assistant Researcher Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035279,"className":"selectbox_ep13stem02_2","name":"STEM Tech Sweater Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035280,"className":"selectbox_ep13stem03_2","name":"STEM Checkered Shirt Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035281,"className":"not_trade_selectbox_ep13stem01_2","name":"STEM Assistant Researcher Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035282,"className":"not_trade_selectbox_ep13stem02_2","name":"STEM Tech Sweater Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035283,"className":"not_trade_selectbox_ep13stem03_2","name":"STEM Checkered Shirt Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035284,"className":"box_wing_ep13stem01","name":"STEM Biohazard Warning Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"wing_ep13stem01/1;"}},{"itemId":11035285,"className":"box_wing_ep13stem02","name":"STEM Periodic Table Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"wing_ep13stem02/1;"}},{"itemId":11035286,"className":"box_effect_ep13stem","name":"STEM Planetary Orbits Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Effect_ep13stem/1;"}},{"itemId":11035287,"className":"egg_pet_twnocelot","name":"Ocelot Egg","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_twnocelot","numArg1":38}},{"itemId":11035288,"className":"Jumping_expCard_460Lv","name":"Level Jumping Card (Lv.460)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EXPCARD_JUMPING_SET_LV","numArg1":460}},{"itemId":11035289,"className":"AbillityArts_Box_Total_3plus1","name":"Arts Reset Potion Selection Box x3 +1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"AbillityArts_Box_Total/4;"}},{"itemId":11035290,"className":"Premium_reset_package","name":"Premium Reset Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_RankReset/1;Premium_StatReset/1;AbillityArts_Box_Total_3plus1/1;ExchangeWeapon_Book_440/1;"}},{"itemId":11035291,"className":"misc_Premium_reinforce_percentUp_460_10plus1","name":"Premium Enhance Aid x10 +1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_Premium_reinforce_percentUp_460/11;"}},{"itemId":11035292,"className":"misc_Premium_reinforce_percentUp_460_100plus10","name":"Premium Enhance Aid x100 +10","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_Premium_reinforce_percentUp_460/110;"}},{"itemId":11035293,"className":"Premium_Package_expbookx32","name":"[Kupole] EXP Tome","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"R_Premium_boostToken06/1;Premium_boostToken06/5;"}},{"itemId":11035294,"className":"Premium_Mystic_Glass_460_Box","name":"[Lv.460] Mysterious Magnifier x10 +1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_Mystic_Glass_460_NoTrade/11;"}},{"itemId":11035295,"className":"Premium_Master_Glass_460_Box","name":"[Lv.460] Artisan Magnifier x10 +1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_Master_Glass_460_NoTrade/11;"}},{"itemId":11035296,"className":"Premium_Sandra_Glass_460_Box","name":"[Lv.460] Sandra's Magnifier x10 +1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_Sandra_Glass_460_NoTrade/11;"}},{"itemId":11035297,"className":"Premium_Sandra_Glass_1line_460_Box","name":"[Lv.460] Sandra's Detailed Magnifier x10 +1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_Sandra_Glass_1line_460_NoTrade/11;"}},{"itemId":11035298,"className":"selectbox_ep13tcance01","name":"TOSummer Passion Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035299,"className":"selectbox_ep13tcance01_1","name":"TOSummer Heat Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035300,"className":"selectbox_ep13tcance02","name":"TOSummer Peaceful Vacation Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035301,"className":"selectbox_ep13tcance02_1","name":"TOSummer Lazy Vacation Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035302,"className":"selectbox_ep13tcance03","name":"TOSummer Sizzling Beach Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035303,"className":"selectbox_ep13tcance03_1","name":"TOSummer Wavy Beach Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035304,"className":"all_costume_box_ep13tcance","name":"TOSummer ALL Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"selectbox_ep13tcance01/1;selectbox_ep13tcance01_1/1;selectbox_ep13tcance02/1;selectbox_ep13tcance02_1/1;selectbox_ep13tcance03/1;selectbox_ep13tcance03_1/1;"}},{"itemId":11035305,"className":"all_weapon_box_ep13tcance","name":"TOSummer ALL Weapon Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_Artefact_119/1;EP13_Artefact_120/1;EP13_Artefact_121/1;EP13_Artefact_122/1;EP13_Artefact_123/1;EP13_Artefact_124/1;"}},{"itemId":11035306,"className":"202107package_Growth","name":"Renewed Growth Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_boostToken06/5;GabijaCertificateCoin_50000p/1;HiddenAbility_MasterPiece_Fragment/100;Jumping_expCard_450Lv/1;Event_JobexpCard_BOX/1;2021_ARBORDAY_NECK05/1/Transcend/10/Reinforce_2/11;2021_ARBORDAY_BRC05/2/Transcend/10/Reinforce_2/11;Seal_2021_NewYear/1;Event_Coin_Ticket_5000/20;Event_Drug_Alche_HP15_Premium/500;Event_Drug_Alche_SP15_Premium/500;Ability_Point_Stone_10000/50;Premium_moneyBox/10;Class_Solution_Select_Box_Event/1;Premium_RankReset/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;"}},{"itemId":11035307,"className":"202107package_BattleA","name":"Renewed Get Ready Package A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"seletbox_tricket_bountyhunt/10;Ticket_Vasilissa_Auto_Enter_NoTrade/10;ChallengeModeReset_NoTrade/30;ChallengeExpertModeCountUp_NoTrade/20;EP12_EXPERT_MODE_MULTIPLE_NoTrade/40;Premium_indunReset/10;Adventure_dungeoncount_01/20;Ticket_Mythic_Auto_Premium_NoTrade/20;Multiple_Token_MythicAuto_NoTrade/20;Ticket_Giltine_Auto_Premium_NoTrade/2;SoloRaidCntReset_Team/5;"}},{"itemId":11035308,"className":"202107package_BattleB","name":"Renewed Get Ready Package B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_Premium_reinforce_percentUp_460/66;misc_Enchant_460_NoTrade/33;Abrasive_460_NoTrade/55;randombox_AssistorCard/10;Drug_AddMaxWeight3/10;Event_Reinforce_100000coupon/500;"}},{"itemId":11035309,"className":"202107package_Daily","name":"Renewed Attendance Package","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_202107package_Daily"}},{"itemId":11035310,"className":"202107package_All","name":"Renewed All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"202107package_Growth/1;202107package_BattleA/1;202107package_BattleB/1;vibora_Vision_Select_Box_NoTrade/2;"}},{"itemId":11035311,"className":"2021_ARBORDAY_PACKAGE_ACC_UPGRADE3","name":"2020 Botanic Upgrade Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"2021_ARBORDAY_NECK_Upgrade/1;2021_ARBORDAY_BRC_Upgrade/2;"}},{"itemId":11035312,"className":"seletbox_tricket_bountyhunt","name":"Bounty Hunt Written Order Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035313,"className":"202107package_Growth_Newbie","name":"[New/Return] Renewed Growth Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_boostToken06/5;GabijaCertificateCoin_50000p/1;HiddenAbility_MasterPiece_Fragment/100;Jumping_expCard_450Lv/1;Event_JobexpCard_BOX/1;2021_ARBORDAY_NECK05/1/Transcend/10/Reinforce_2/11;2021_ARBORDAY_BRC05/2/Transcend/10/Reinforce_2/11;Seal_2021_NewYear/1;Event_Coin_Ticket_5000/20;Event_Drug_Alche_HP15_Premium/500;Event_Drug_Alche_SP15_Premium/500;Ability_Point_Stone_10000/50;Premium_moneyBox/10;Class_Solution_Select_Box_Event/1;Premium_RankReset/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;"}},{"itemId":11035314,"className":"202107package_BattleA_Newbie","name":"[New/Return] Renewed Get Ready Package A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"seletbox_tricket_bountyhunt/10;Ticket_Vasilissa_Auto_Enter_NoTrade/10;ChallengeModeReset_NoTrade/30;ChallengeExpertModeCountUp_NoTrade/20;EP12_EXPERT_MODE_MULTIPLE_NoTrade/40;Premium_indunReset/10;Adventure_dungeoncount_01/20;Ticket_Mythic_Auto_Premium_NoTrade/20;Multiple_Token_MythicAuto_NoTrade/20;Ticket_Giltine_Auto_Premium_NoTrade/2;SoloRaidCntReset_Team/5;"}},{"itemId":11035315,"className":"202107package_BattleB_Newbie","name":"[New/Return] Renewed Get Ready Package B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_Premium_reinforce_percentUp_460/66;misc_Enchant_460_NoTrade/33;Abrasive_460_NoTrade/55;randombox_AssistorCard/10;Drug_AddMaxWeight3/10;Event_Reinforce_100000coupon/500;"}},{"itemId":11035316,"className":"202107package_All_Newbie","name":"[New/Return] Renewed All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"202107package_Growth/1;202107package_BattleA/1;202107package_BattleB/1;vibora_Vision_Select_Box_NoTrade/2;"}},{"itemId":11035317,"className":"selectbox_ep13tcance01_2","name":"TOSummer Chill Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035318,"className":"selectbox_ep13tcance02_2","name":"TOSummer Exciting Vacation Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035319,"className":"selectbox_ep13tcance03_2","name":"TOSummer Holiday Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035320,"className":"not_trade_selectbox_ep13tcance01_2","name":"TOSummer Chill Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035321,"className":"not_trade_selectbox_ep13tcance02_2","name":"TOSummer Exciting Vacation Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035322,"className":"not_trade_selectbox_ep13tcance03_2","name":"TOSummer Holiday Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035323,"className":"box_wing_ep13tcance","name":"TOSummer Scorching Sun Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"wing_ep13tcance/1;"}},{"itemId":11035324,"className":"box_effect_ep13tcance","name":"Beach Fireworks Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Effect_ep13tcance/1;"}},{"itemId":11035325,"className":"selectbox_ep13raincoat01","name":"Drip Drop Giraffe Raincoat Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035326,"className":"selectbox_ep13raincoat01_1","name":"Drip Drop Duck Raincoat Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035327,"className":"selectbox_ep13raincoat02","name":"Drip Drop Carp Raincoat Costume Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035328,"className":"selectbox_ep13raincoat02_1","name":"Drip Drop Devil Fish Raincoat Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035329,"className":"selectbox_ep13raincoat03","name":"Drip Drop Military Raincoat Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035330,"className":"selectbox_ep13raincoat03_1","name":"Drip Drop Black Raincoat Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035331,"className":"all_costume_box_ep13raincoat","name":"Drip Drop ALL Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"selectbox_ep13raincoat01/1;selectbox_ep13raincoat01_1/1;selectbox_ep13raincoat02/1;selectbox_ep13raincoat02_1/1;selectbox_ep13raincoat03/1;selectbox_ep13raincoat03_1/1;"}},{"itemId":11035332,"className":"all_weapon_box_ep13raincoat","name":"Drip Drop ALL Weapon Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_Artefact_125/1;EP13_Artefact_126/1;EP13_Artefact_127/1;EP13_Artefact_128/1;EP13_Artefact_129/1;"}},{"itemId":11035333,"className":"selectbox_ep13raincoat01_2","name":"Drip Drop Shark Raincoat Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035334,"className":"selectbox_ep13raincoat02_2","name":"Drip Drop Axolotl Raincoat Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035335,"className":"selectbox_ep13raincoat03_2","name":"Drip Drop Yellow Raincoat Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035336,"className":"not_trade_selectbox_ep13raincoat01_2","name":"Drip Drop Shark Raincoat Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035337,"className":"not_trade_selectbox_ep13raincoat02_2","name":"Drip Drop Axolotl Raincoat Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035338,"className":"not_trade_selectbox_ep13raincoat03_2","name":"Drip Drop Yellow Raincoat Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035339,"className":"box_wing_ep13raincoat01","name":"Drip Drop Rainy Day School Bag Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"wing_ep13raincoat01/1;"}},{"itemId":11035340,"className":"box_wing_ep13raincoat02","name":"Drip Drop Weather Doll Balloon Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"wing_ep13raincoat02/1;"}},{"itemId":11035341,"className":"box_effect_ep13raincoat","name":"Toddle Waddle Ducklings Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Effect_ep13raincoat/1;"}},{"itemId":11035342,"className":"EP_Clear_Box_11","name":"Episode Jumping Package (Episode 11)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_QuestClearScroll_EP_1/1;Premium_QuestClearScroll_EP_2/1;Premium_QuestClearScroll_EP_3/1;Premium_QuestClearScroll_EP_4/1;Premium_QuestClearScroll_EP_5/1;Premium_QuestClearScroll_EP_6/1;Premium_QuestClearScroll_EP_7/1;Premium_QuestClearScroll_EP_8/1;Premium_QuestClearScroll_EP_9/1;Premium_QuestClearScroll_EP_10/1;Premium_QuestClearScroll_EP_11/1;"}},{"itemId":11035343,"className":"202108package_Growth","name":"Treasure Chest Pearl Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP_Clear_Box_11/1;Jumping_expCard_450Lv/1;Event_JobexpCard_BOX/1;Premium_boostToken06/3;GabijaCertificateCoin_50000p/3;Event_Coin_Ticket_5000/40;Premium_indunReset/30;Adventure_dungeoncount_01/60;Event_Drug_Alche_HP15_Premium/500;Event_Drug_Alche_SP15_Premium/500;Ability_Point_Stone_10000/100;Premium_moneyBox/10;Class_Solution_Select_Box_Event/1;Premium_RankReset/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;"}},{"itemId":11035344,"className":"2021_ARBORDAY_ACC_PACKAGE","name":"2021 Botanic Accessory/Seal Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"2021_ARBORDAY_NECK05/1/Transcend/10/Reinforce_2/11;2021_ARBORDAY_BRC05/2/Transcend/10/Reinforce_2/11;Seal_2021_NewYear/1;"}},{"itemId":11035345,"className":"2021_ARBORDAY_PACKAGE_ACC_UPGRADE4","name":"2020 Botanic Upgrade Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"2021_ARBORDAY_NECK_Upgrade/1;2021_ARBORDAY_BRC_Upgrade/2;"}},{"itemId":11035346,"className":"202108package_ContentsA","name":"Treasure Chest Sapphire Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Bernice_Enter/50;ChallengeModeReset_NoTrade/50;Ticket_Mythic_Auto_Premium_NoTrade/20;Multiple_Token_MythicAuto_NoTrade/20;Ticket_Giltine_Auto_Premium_NoTrade/2;SoloRaidCntReset_Team/5;"}},{"itemId":11035347,"className":"202108package_ContentsB","name":"Treasure Chest Emerald Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Vasilissa_Auto_Enter_NoTrade/5;Ticket_Mythic_Auto_Hard/5;ChallengeExpertModeCountUp_NoTrade/25;EP12_EXPERT_MODE_MULTIPLE_NoTrade/50;"}},{"itemId":11035348,"className":"202108package_BattleA","name":"Treasure Chest Ruby Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_460_NoTrade/50;misc_Enchant_460_NoTrade/50;Premium_awakeningStone/30;Abrasive_460_NoTrade/30;Event_Reinforce_100000coupon/500;GabijaCertificateCoin_10000p/10;"}},{"itemId":11035349,"className":"202108package_BattleB","name":"Treasure Chest Amethyst Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ability_Point_Stone_10000/50;HiddenAbility_MasterPiece_Fragment/20;randombox_AssistorCard/10;Drug_AddMaxWeight3/10;"}},{"itemId":11035350,"className":"202108package_All","name":"Treasure Chest All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"202108package_Growth/1;202108package_ContentsA/1;202108package_ContentsB/1;202108package_BattleA/1;202108package_BattleB/1;certificate_RidePet_ep13raincoat/1;"}},{"itemId":11035351,"className":"202108package_Growth_Newbie","name":"[New/Return] Treasure Chest Pearl Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP_Clear_Box_11/1;Jumping_expCard_450Lv/1;Event_JobexpCard_BOX/1;Premium_boostToken06/3;GabijaCertificateCoin_50000p/3;Event_Coin_Ticket_5000/40;Premium_indunReset/30;Adventure_dungeoncount_01/60;Event_Drug_Alche_HP15_Premium/500;Event_Drug_Alche_SP15_Premium/500;Ability_Point_Stone_10000/100;Premium_moneyBox/10;Class_Solution_Select_Box_Event/1;Premium_RankReset/1;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;"}},{"itemId":11035352,"className":"202108package_ContentsA_Newbie","name":"[New/Return] Treasure Chest Sapphire Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Bernice_Enter/50;ChallengeModeReset_NoTrade/50;Ticket_Mythic_Auto_Premium_NoTrade/20;Multiple_Token_MythicAuto_NoTrade/20;Ticket_Giltine_Auto_Premium_NoTrade/2;SoloRaidCntReset_Team/5;"}},{"itemId":11035353,"className":"202108package_ContentsB_Newbie","name":"[New/Return] Treasure Chest Emerald Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Vasilissa_Auto_Enter_NoTrade/5;Ticket_Mythic_Auto_Hard/5;ChallengeExpertModeCountUp_NoTrade/25;EP12_EXPERT_MODE_MULTIPLE_NoTrade/50;"}},{"itemId":11035354,"className":"202108package_BattleA_Newbie","name":"[New/Return] Treasure Chest Ruby Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_460_NoTrade/50;misc_Enchant_460_NoTrade/50;Premium_awakeningStone/30;Abrasive_460_NoTrade/30;Event_Reinforce_100000coupon/500;GabijaCertificateCoin_10000p/10;"}},{"itemId":11035355,"className":"202108package_BattleB_Newbie","name":"[New/Return] Treasure Chest Amethyst Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ability_Point_Stone_10000/50;HiddenAbility_MasterPiece_Fragment/20;randombox_AssistorCard/10;Drug_AddMaxWeight3/10;"}},{"itemId":11035356,"className":"202108package_All_Newbie","name":"[New/Return] Treasure Chest All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"202108package_Growth_Newbie/1;202108package_ContentsA_Newbie/1;202108package_ContentsB_Newbie/1;202108package_BattleA_Newbie/1;202108package_BattleB_Newbie/1;vibora_Vision_Select_Box_NoTrade/2;"}},{"itemId":11035360,"className":"Leticia_Card_Lv7_7ea_Box","name":"7 Star Leticia Card Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Legendcard_Leticia/7/ItemExp/550;"}},{"itemId":11035361,"className":"Leticia_Card_Lv4_7ea_Box","name":"4 Star Leticia Card Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Legendcard_Leticia/7/ItemExp/130;"}},{"itemId":11035362,"className":"Jumping_460_package","name":"[Exchange] Level Jumping Package (Lv.460)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Jumping_expCard_460Lv/1;Event_JobexpCard_BOX/1;"}},{"itemId":11035363,"className":"Class_Solution_Select_Box_Recycle","name":"[Exchange] Unlock Voucher Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":100000}},{"itemId":11035364,"className":"HiddenJobUnlock_Char1_20_Recycle","name":"[Exchange] Swordsman - Nak Muay Unlock Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char1_20","numArg1":7}},{"itemId":11035365,"className":"HiddenJobUnlock_Char2_17_Recycle","name":"[Exchange] Wizard - Rune Caster Unlock Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char2_17","numArg1":6}},{"itemId":11035366,"className":"HiddenJobUnlock_Char3_13_Recycle","name":"[Exchange] Archer - Appraiser Unlock Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char3_13","numArg1":5}},{"itemId":11035367,"className":"HiddenJobUnlock_Char4_18_Recycle","name":"[Exchange] Cleric - Miko(Kannushi) Class Unlock Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char4_18","numArg1":6}},{"itemId":11035368,"className":"HiddenJobUnlock_Char1_13_Recycle","name":"[Exchange] Scout - Shinobi Unlock Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HiddenJobUnlock","strArg":"Char5_6","numArg1":7}},{"itemId":11035369,"className":"Event_Drug_Alche_HP15_1000ea_Recycle","name":"[Exchange] Lv15 Basic Condensed HP Potion x1000","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Drug_Alche_HP15_Premium/1000;"}},{"itemId":11035370,"className":"Event_Drug_Alche_SP15_1000ea_Recycle","name":"[Exchange] Lv15 Basic Condensed SP Potion x1000","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_Drug_Alche_SP15_Premium/1000;"}},{"itemId":11035371,"className":"Drug_RedApple20_1000ea_Recycle","name":"[Exchange] Small Elixir of HP Recovery x1000","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Drug_RedApple20_ReCycle/1000;"}},{"itemId":11035372,"className":"Drug_BlueApple20_1000ea_Recycle","name":"[Exchange] Small Elixir of SP Recovery x1000","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Drug_BlueApple20_ReCycle/1000;"}},{"itemId":11035373,"className":"HiddenAbility_MasterPiece_Fragment_11ea_Recycle","name":"[Exchange] Mystic Tome x10+1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"HiddenAbility_MasterPiece_Fragment/11;"}},{"itemId":11035374,"className":"misc_reinforce_percentUp_460_NoTrade_11ea_Recycle","name":"[Exchange] [Lv.460] Enhance Aid (Untradable) x10+1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_460_NoTrade/11;"}},{"itemId":11035375,"className":"QuestReward_repairPotion_460_100ea_Recycle","name":"[Exchange] [Lv.460] Urgent Repair Kit x100","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"QuestReward_repairPotion_460/100;"}},{"itemId":11035376,"className":"Drug_AddMaxWeight3_10ea_Recycle","name":"[Exchange] Weight Increase +1000 Potion x10","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Drug_AddMaxWeight3/10;"}},{"itemId":11035377,"className":"vibora_Vision_Select_Box_NoTrade_14d_Recycle","name":"[Exchange] Vaivora Vision (Untradable) Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":1}},{"itemId":11035378,"className":"NEWCHARACTER_BARRACK_SLOT_Recycle","name":"[Exchange] Character Slot Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_RECYCLE_NEWCHARACTER_BARRACK_SLOT"}},{"itemId":11035379,"className":"Leticia_Card_Lv4_Recycle","name":"[Exchange] LV4 Leticia Card x1","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT_NOTRADE","strArg":"Legendcard_Leticia/1/ItemExp/130;"}},{"itemId":11035380,"className":"Leticia_Card_Lv7_Recycle","name":"[Exchange] LV7 Leticia Card x1","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT_NOTRADE","strArg":"Legendcard_Leticia/1/ItemExp/550;"}},{"itemId":11035381,"className":"Seal_Material_Boruta_Recycle","name":"[Exchange] Boruta Seal - Enhancement","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT_NOTRADE","strArg":"Seal_Material_Boruta/1;"}},{"itemId":11035382,"className":"Gacha_SKLGEM_ReCycle","name":"[Exchange] Skill Gem Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_SKILL_GEM_CUBE","strArg":"NOTRADE","numArg1":10}},{"itemId":11035383,"className":"selectbox_ep13retro01","name":"Good ol'days Legendary Star Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035384,"className":"selectbox_ep13retro01_1","name":"Good ol'days Shining Chorus Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035385,"className":"selectbox_ep13retro02","name":"Good ol'days Rendezvous Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035386,"className":"selectbox_ep13retro02_1","name":"Good ol'days Cute Couple Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035387,"className":"selectbox_ep13retro03","name":"Good ol'days Sparkling Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035388,"className":"selectbox_ep13retro03_1","name":"Good ol'days Glittering Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035389,"className":"all_costume_box_ep13retro","name":"Good ol'days ALL Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"selectbox_ep13retro01/1;selectbox_ep13retro01_1/1;selectbox_ep13retro02/1;selectbox_ep13retro02_1/1;selectbox_ep13retro03/1;selectbox_ep13retro03_1/1;"}},{"itemId":11035390,"className":"all_weapon_box_ep13retro","name":"Good ol'days ALL Weapon Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_Artefact_130/1;EP13_Artefact_131/1;EP13_Artefact_132/1;EP13_Artefact_133/1;EP13_Artefact_134/1;"}},{"itemId":11035391,"className":"selectbox_ep13retro01_2","name":"Good ol'days Retro Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035392,"className":"not_trade_selectbox_ep13retro01_2","name":"Good ol'days Retro Costume Selection Box (Cannot Trade)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035393,"className":"box_wing_ep13retro","name":"Good ol'days Dazzling Stage Curtain Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"wing_ep13retro/1;"}},{"itemId":11035394,"className":"box_effect_ep13retro","name":"Dazzling Glitterball Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Effect_ep13retro/1;"}},{"itemId":11035396,"className":"202109package_ContentsA","name":"2021 Harvest Challenger Package A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Giltine_Auto_Premium_NoTrade/25;Ticket_Mythic_Auto_Premium_NoTrade/50;Multiple_Token_MythicAuto_NoTrade/50;Event_Reinforce_100000coupon/500;"}},{"itemId":11035397,"className":"202109package_ContentsB","name":"2021 Harvest Challenger Package B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Bernice_Enter/20;ChallengeModeReset_NoTrade/50;ChallengeExpertModeCountUp_NoTrade/25;EP12_EXPERT_MODE_MULTIPLE_NoTrade/25;SoloRaidCntReset_Team/10;"}},{"itemId":11035398,"className":"202109package_EquipPlus","name":"2021 Harvest Goddess Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Vasilissa_Auto_Enter_NoTrade/15;misc_reinforce_percentUp_460_NoTrade/150;misc_Enchant_460_NoTrade/20;Premium_awakeningStone/50;Abrasive_460_NoTrade/50;GabijaCertificateCoin_10000p/10;"}},{"itemId":11035399,"className":"202109package_Battle","name":"Harvest Get Ready Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ability_Point_Stone_10000/50;HiddenAbility_MasterPiece_Fragment/20;randombox_AssistorCard/10;Drug_AddMaxWeight3/10;"}},{"itemId":11035400,"className":"2021_ARBORDAY_ACC_PACKAGE1","name":"2021 Botanic Accessory/Seal Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"2021_ARBORDAY_NECK05/1/Transcend/10/Reinforce_2/11;2021_ARBORDAY_BRC05/2/Transcend/10/Reinforce_2/11;Seal_2021_NewYear/1;"}},{"itemId":11035401,"className":"2021_ARBORDAY_PACKAGE_ACC_UPGRADE5","name":"2020 Botanic Upgrade Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"2021_ARBORDAY_NECK_Upgrade/1;2021_ARBORDAY_BRC_Upgrade/2;"}},{"itemId":11035402,"className":"202109package_ContentsA_Newbie","name":"[New/Return] 2021 Harvest Challenger Package A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Giltine_Auto_Premium_NoTrade/25;Ticket_Mythic_Auto_Premium_NoTrade/50;Multiple_Token_MythicAuto_NoTrade/50;Event_Reinforce_100000coupon/500;"}},{"itemId":11035403,"className":"202109package_ContentsB_Newbie","name":"[New/Return] 2021 Harvest Challenger Package B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Bernice_Enter/20;ChallengeModeReset_NoTrade/50;ChallengeExpertModeCountUp_NoTrade/25;EP12_EXPERT_MODE_MULTIPLE_NoTrade/25;SoloRaidCntReset_Team/10;"}},{"itemId":11035404,"className":"202109package_EquipPlus_Newbie","name":"[New/Return] 2021 Harvest Goddess Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Vasilissa_Auto_Enter_NoTrade/15;misc_reinforce_percentUp_460_NoTrade/150;misc_Enchant_460_NoTrade/20;Premium_awakeningStone/50;Abrasive_460_NoTrade/50;GabijaCertificateCoin_10000p/10;"}},{"itemId":11035405,"className":"202109package_Battle_Newbie","name":"[New/Return] 2021 Harvest Get Ready Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ability_Point_Stone_10000/50;HiddenAbility_MasterPiece_Fragment/20;randombox_AssistorCard/10;Drug_AddMaxWeight3/10;"}},{"itemId":11035406,"className":"Dungeon_Key02_NoTrade_50ea_package","name":"Legend Raid Portal Stone Sack","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Dungeon_Key02_NoTrade/50;"}},{"itemId":11035407,"className":"GoddessCard_Reinforce_package","name":"Goddess Card Enhance Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"reputation_Coin/25000;Goddess_card_Reinforce_2/50;reputation_relief_ep13_All_500/1;"}},{"itemId":11035408,"className":"coin_package","name":"Token Sack","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_pvp_mine2_NotLimit_10000/10;GabijaCertificateCoin_10000p/10;"}},{"itemId":11035410,"className":"ExpPotion_box_36ea","name":"[Lv.460] Pamoka Solution Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Legend_ExpPotion_2_460_complete/36/ItemExpString/1250000000;"}},{"itemId":11035411,"className":"Vasilissa_Armor_Select_Category","name":"7 EHN 10 TRA Vasilisa Armor Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11035412,"className":"Vasilissa_Armor_TxBox_Plate","name":"7 EHN 10 TRA Vasilisa Armor Set Box - Plate","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_RAID_PLATE_TOP/1/Transcend/10/Reinforce_2/7;EP13_RAID_PLATE_LEG/1/Transcend/10/Reinforce_2/7;EP13_RAID_PLATE_FOOT/1/Transcend/10/Reinforce_2/7;EP13_RAID_PLATE_HAND/1/Transcend/10/Reinforce_2/7;"}},{"itemId":11035413,"className":"Vasilissa_Armor_TxBox_Leather","name":"7 EHN 10 TRA Vasilisa Armor Set Box - Leather","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_RAID_LEATHER_TOP/1/Transcend/10/Reinforce_2/7;EP13_RAID_LEATHER_LEG/1/Transcend/10/Reinforce_2/7;EP13_RAID_LEATHER_FOOT/1/Transcend/10/Reinforce_2/7;EP13_RAID_LEATHER_HAND/1/Transcend/10/Reinforce_2/7;"}},{"itemId":11035414,"className":"Vasilissa_Armor_TxBox_Cloth","name":"7 EHN 10 TRA Vasilisa Armor Set Box - Cloth","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_RAID_CLOTH_TOP/1/Transcend/10/Reinforce_2/7;EP13_RAID_CLOTH_LEG/1/Transcend/10/Reinforce_2/7;EP13_RAID_CLOTH_FOOT/1/Transcend/10/Reinforce_2/7;EP13_RAID_CLOTH_HAND/1/Transcend/10/Reinforce_2/7;"}},{"itemId":11035415,"className":"Vasilissa_Select_MainWeapon","name":"7 EHN 10 TRA Vasilisa M.Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11035416,"className":"Vasilissa_Select_SubWeapon","name":"7 EHN 10 TRA Vasilisa S.Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11035417,"className":"give_Luchador_Vibora_NoTrade","name":"Vaivora Vision - Doble Attaque Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT_NOTRADE","strArg":"SWD04_126_6/1;"}},{"itemId":11035418,"className":"Vasilissa_Armor_Select_Category_Episode","name":"[Episode] 7 EHN 10 TRA Vasilisa Armor Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11035419,"className":"Vasilissa_Armor_TxBox_Plate_Episode","name":"[Episode] 7 EHN 10 TRA Vasilisa Armor Set Box - Plate","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_RAID_PLATE_TOP/1/Transcend/10/Reinforce_2/7;EP13_RAID_PLATE_LEG/1/Transcend/10/Reinforce_2/7;EP13_RAID_PLATE_FOOT/1/Transcend/10/Reinforce_2/7;EP13_RAID_PLATE_HAND/1/Transcend/10/Reinforce_2/7;"}},{"itemId":11035420,"className":"Vasilissa_Armor_TxBox_Leather_Episode","name":"[Episode] 7 EHN 10 TRA Vasilisa Armor Set Box - Leather","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_RAID_LEATHER_TOP/1/Transcend/10/Reinforce_2/7;EP13_RAID_LEATHER_LEG/1/Transcend/10/Reinforce_2/7;EP13_RAID_LEATHER_FOOT/1/Transcend/10/Reinforce_2/7;EP13_RAID_LEATHER_HAND/1/Transcend/10/Reinforce_2/7;"}},{"itemId":11035421,"className":"Vasilissa_Armor_TxBox_Cloth_Episode","name":"[Episode] 7 EHN 10 TRA Vasilisa Armor Set Box - Cloth","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_RAID_CLOTH_TOP/1/Transcend/10/Reinforce_2/7;EP13_RAID_CLOTH_LEG/1/Transcend/10/Reinforce_2/7;EP13_RAID_CLOTH_FOOT/1/Transcend/10/Reinforce_2/7;EP13_RAID_CLOTH_HAND/1/Transcend/10/Reinforce_2/7;"}},{"itemId":11035422,"className":"Vasilissa_Select_MainWeapon_Episode","name":"[Episode] 7 EHN 10 TRA Vasilisa M.Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11035423,"className":"Vasilissa_Select_SubWeapon_Episode","name":"[Episode] 7 EHN 10 TRA Vasilisa S.Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11035424,"className":"Special_Gift_Box_Leticia_2110","name":"2021 Leticia's Get Ready Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Dungeon_Key01/1200;Ticket_Mythic_Auto_Premium/140;Multiple_Token_MythicAuto/140;Ticket_Giltine_Auto_Premium/70;Leticia_Newcle/500;Leticia_Siera/500;"}},{"itemId":11035425,"className":"box_awakening_460","name":"[Lv.460] Equipment Awakening Enhance Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_awakeningStone_TA/10;misc_reinforce_percentUp_460/10;"}},{"itemId":11035427,"className":"luchador_standard_pack","name":"Luchador Standard Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"UnlockQuest_OverAchieveClear_Char1_23_Job/1;give_Luchador_Vibora_NoTrade/1;UnlockQuest_OverAchieveClear_Char1_23_Costume/1;Premium_RankReset/1;"}},{"itemId":11035428,"className":"luchador_complete_pack","name":"Luchador Complete Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"UnlockQuest_OverAchieveClear_Char1_23_Job/1;give_Luchador_Vibora_NoTrade/1;UnlockQuest_OverAchieveClear_Char1_23_Costume/1;Vasilissa_Armor_Select_Category/1;Vasilissa_Select_MainWeapon/2;Vasilissa_Select_SubWeapon/2;ExpPotion_box_36ea/1;Premium_Mystic_Glass_460_NoTrade/30;Premium_Sandra_Glass_460_NoTrade/60;Premium_Sandra_Glass_1line_460_NoTrade/100;Premium_awakeningStone/20;Abrasive_460_NoTrade/20;misc_Enchant_460_NoTrade/10;Event_JobexpCard_BOX/1;Jumping_expCard_460Lv/1;HiddenAbility_MasterPiece_Fragment/200;Ability_Point_Stone_10000/200;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Coupon_ItemRandomReset_gift/400;GabijaCertificateCoin_10000p/10;misc_pvp_mine2_NotLimit_10000/10;ark_lvup_scroll_lv10/1;"}},{"itemId":11035429,"className":"newbie_and_returner_complete_pack","name":"[New/Return] Growth Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"vibora_Vision_Select_Box_NoTrade/1;Vasilissa_Armor_Select_Category/1;Vasilissa_Select_MainWeapon/2;Vasilissa_Select_SubWeapon/2;ExpPotion_box_36ea/1;Premium_Mystic_Glass_460_NoTrade/30;Premium_Sandra_Glass_460_NoTrade/60;Premium_Sandra_Glass_1line_460_NoTrade/100;Premium_awakeningStone/20;Abrasive_460_NoTrade/20;misc_Enchant_460_NoTrade/10;Event_JobexpCard_BOX/1;Jumping_expCard_460Lv/1;HiddenAbility_MasterPiece_Fragment/200;Ability_Point_Stone_10000/200;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Coupon_ItemRandomReset_gift/400;GabijaCertificateCoin_10000p/10;misc_pvp_mine2_NotLimit_10000/10;ark_lvup_scroll_lv10/1;"}},{"itemId":11035432,"className":"Dungeon_Key01_NoTrade_500ea","name":"Raid Portal Stone Sack","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Dungeon_Key01_NoTrade/500;"}},{"itemId":11035433,"className":"box_Dungeon_Key01_3000ea","name":"Raid Portal Stone Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Dungeon_Key01/3000;"}},{"itemId":11035435,"className":"selectbox_ep13ge01_2","name":"Blue Serpent of Otherworld Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035436,"className":"selectbox_ep13ge02","name":"Le Blanc of Otherworld Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035437,"className":"selectbox_ep13ge01","name":"Magician of Otherworld Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035438,"className":"selectbox_ep13ge01_1","name":"Gunman of Otherworld Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035439,"className":"selectbox_ep13ge02_2","name":"Warrior of Otherworld Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035440,"className":"all_costume_box_ep13ge","name":"ALL Costume Box of Otherworld","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"selectbox_ep13ge01_2/1;selectbox_ep13ge02/1;selectbox_ep13ge01/1;selectbox_ep13ge01_1/1;selectbox_ep13ge02_2/1;"}},{"itemId":11035441,"className":"all_weapon_box_ep13ge","name":"ALL Weapon Box of Otherworld","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_Artefact_135/1;EP13_Artefact_136/1;EP13_Artefact_137/1;EP13_Artefact_138/1;"}},{"itemId":11035442,"className":"selectbox_pet_ep13ge","name":"Noble Popo Selection Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035443,"className":"certificate_RidePet_ep13ge","name":"Mount Voucher - Noble Popo","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REGEDIT_RIDE_PET","strArg":"RidePet_8"}},{"itemId":11035444,"className":"egg_pet_ep13ge","name":"Noble Popo Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_ep13ge","numArg1":38}},{"itemId":11035445,"className":"Premium_HairAcc_Core","name":"Transfer Hair Costume Stat","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"HairAcc_Core","numArg1":1}},{"itemId":11035446,"className":"randombox_AssistorCard_leticia","name":"Legend/Unique Assister Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT","strArg":"Ancient_Card_ChiefGuard/1;Ancient_Card_mirtis/1;Ancient_Card_helgasercle/1;Ancient_Card_Marnoks/1;Ancient_Card_Lecifer/1;Ancient_Card_ignas/1;Ancient_Card_Zawra/1;Ancient_Card_Blud/1;Ancient_Card_Nuaelle/1;Ancient_Card_succubus/1;Ancient_Card_Moringponia/1;Ancient_Card_Skiaclipse/1;Ancient_Card_Velcoffer/1;Ancient_Card_Boruta/1;Ancient_Card_Baby_Skiaclipse/1;Ancient_Card_Baby_Marnoks/1;Ancient_Card_Baby_Hauberk/1;Ancient_Card_Misrus/1;"}},{"itemId":11035447,"className":"Special_Gift_Box_Leticia_2111","name":"2021 Leticia's Winter Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeExpertModeCountUp/150;EP12_EXPERT_MODE_MULTIPLE/150;Ticket_Mythic_Auto_Hard_Premium/100;Multiple_Token_MythicHARD/100;"}},{"itemId":11035448,"className":"sadhu_standard_pack","name":"Sadhu Standard Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"give_Sadhu_Vibora_NoTrade/1;UnlockQuest_OverAchieveClear_Char4_6_Costume/1;Premium_RankReset/1;"}},{"itemId":11035449,"className":"sadhu_complete_pack","name":"Sadhu Complete Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"give_Sadhu_Vibora_NoTrade/1;UnlockQuest_OverAchieveClear_Char4_6_Costume/1;Vasilissa_Armor_Select_Category/1;Vasilissa_Select_MainWeapon/2;Vasilissa_Select_SubWeapon/2;ExpPotion_box_36ea/1;Premium_Mystic_Glass_460_NoTrade/30;Premium_Sandra_Glass_460_NoTrade/60;Premium_Sandra_Glass_1line_460_NoTrade/100;Premium_awakeningStone/20;Abrasive_460_NoTrade/20;misc_Enchant_460_NoTrade/10;Event_JobexpCard_BOX/1;Jumping_expCard_460Lv/1;HiddenAbility_MasterPiece_Fragment/200;Ability_Point_Stone_10000/200;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Coupon_ItemRandomReset_gift/400;GabijaCertificateCoin_10000p/10;misc_pvp_mine2_NotLimit_10000/10;ark_lvup_scroll_lv10/1;"}},{"itemId":11035450,"className":"give_Sadhu_Vibora_NoTrade","name":"Vaivora Vision - Agni Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT_NOTRADE","strArg":"TMAC04_118_4/1;"}},{"itemId":11035452,"className":"egg_pet_skunk","name":"Skunk Egg","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_skunk","numArg1":38}},{"itemId":11035453,"className":"give_Hwarang_Vibora_NoTrade","name":"Vaivora Vision - Jusalnegi Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT_NOTRADE","strArg":"TBW04_126_4/1;"}},{"itemId":11035454,"className":"hwarang_standard_pack","name":"Hwarang Standard Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"UnlockQuest_OverAchieveClear_Char3_22_Job/1;give_Hwarang_Vibora_NoTrade/1;UnlockQuest_OverAchieveClear_Char3_22_Costume/1;Premium_RankReset/1;"}},{"itemId":11035455,"className":"hwarang_complete_pack","name":"Hwarang Complete Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"UnlockQuest_OverAchieveClear_Char3_22_Job/1;give_Hwarang_Vibora_NoTrade/1;UnlockQuest_OverAchieveClear_Char3_22_Costume/1;Vasilissa_Armor_Select_Category/1;Vasilissa_Select_MainWeapon/2;Vasilissa_Select_SubWeapon/2;ExpPotion_box_36ea/1;Premium_Mystic_Glass_460_NoTrade/30;Premium_Sandra_Glass_460_NoTrade/60;Premium_Sandra_Glass_1line_460_NoTrade/100;Premium_awakeningStone/20;Abrasive_460_NoTrade/20;misc_Enchant_460_NoTrade/10;Event_JobexpCard_BOX/1;Jumping_expCard_460Lv/1;HiddenAbility_MasterPiece_Fragment/200;Ability_Point_Stone_10000/200;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Coupon_ItemRandomReset_gift/400;GabijaCertificateCoin_10000p/10;misc_pvp_mine2_NotLimit_10000/10;ark_lvup_scroll_lv10/1;"}},{"itemId":11035456,"className":"box_twndeer","name":"Flower Deer Costume Set Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"helmet_twndeer_kor/1;costume_Com_313_kor/1;"}},{"itemId":11035459,"className":"newcle_siera_big_set","name":" Nucle/Sierra Powder Large Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_ore22/5000;misc_ore23/2500;"}},{"itemId":11035460,"className":"selectbox_ep13athleisure01","name":"Athleisure Strength Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035461,"className":"selectbox_ep13athleisure01_1","name":"Athleisure Work Out Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035462,"className":"selectbox_ep13athleisure02","name":"Athleisure Cardio Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035463,"className":"selectbox_ep13athleisure02_1","name":"Athleisure Weight Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035464,"className":"selectbox_ep13athleisure02_2","name":"Athleisure Bulking Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035465,"className":"all_costume_box_ep13athleisure","name":"Athleisure ALL Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"selectbox_ep13athleisure01/1;selectbox_ep13athleisure01_1/1;selectbox_ep13athleisure02/1;selectbox_ep13athleisure02_1/1;selectbox_ep13athleisure02_2/1;"}},{"itemId":11035466,"className":"all_weapon_box_ep13athleisure","name":"Athleisure ALL Weapon Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_Artefact_139/1;EP13_Artefact_140/1;EP13_Artefact_141/1;EP13_Artefact_142/1;"}},{"itemId":11035469,"className":"misc_reinforce_percentUp_470_NoTrade_11ea_Recycle","name":"[Exchange] [Lv.470] Enhance Aid (Untradable) x10+1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_470_NoTrade/11;"}},{"itemId":11035470,"className":"seletbox_tricket_bountyhunt_ep13_hard","name":"Bounty Hunt Superior Written Order Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035471,"className":"box_mythic_Auto_Hard_20ea","name":"Res Sacrae Raid: Auto/Solo (Hard) Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Mythic_Auto_Hard/10;Multiple_Token_MythicHARD_NoTrade/10;"}},{"itemId":11035472,"className":"Premium_HairAcc_Core_NoTrade","name":"Hair Costume Stat Relocator (Untradable)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"HairAcc_Core","numArg1":1}},{"itemId":11035473,"className":"202112package_A","name":"Treestmas Package A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Auto_Enter_NoTrade/5;Ticket_Vasilissa_Auto_Enter_NoTrade/10;Ticket_Mythic_Auto_Hard/10;Multiple_Token_MythicHARD_NoTrade/10;Multiple_Token_MythicAuto_NoTrade/50;"}},{"itemId":11035474,"className":"202112package_B","name":"Treestmas Package B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_earring_raid_NoTrade/10;ChallengeExpertModeCountUp_NoTrade/40;EP12_EXPERT_MODE_MULTIPLE_NoTrade/40;misc_pvp_mine2_NotLimit_10000/15;"}},{"itemId":11035475,"className":"202112package_C","name":"Treestmas Package C","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_470_NoTrade/50;misc_Enchant_460_NoTrade/20;Abrasive_460_NoTrade/50;Premium_awakeningStone/50;GabijaCertificateCoin_10000p/15;"}},{"itemId":11035476,"className":"202112package_All","name":"Treestmas Package All in One Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"202112package_A/1;202112package_B/1;202112package_C/3;helmet_panda_kor/1;costume_Com_316_kor/1;"}},{"itemId":11035477,"className":"202112package_HairCostume","name":"Hair Costume Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_Enchantchip_NoTrade/100;Premium_HairAcc_Core_NoTrade/1;"}},{"itemId":11035478,"className":"not_trade_selectbox_costume_1709_NewField","name":"The Invited One Costume Selection Box (Untradable)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035479,"className":"not_trade_selectbox_costume_simple_festival","name":"TOS Celebration Costume Selection Box (Untradable)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035480,"className":"not_trade_selectbox_costume_fes2019","name":"I♥TOS Costume Selection Box (Untradable)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035481,"className":"not_trade_selectbox_costume_schaffenstar","name":"Astral Tower Hero Costume Selection Box (Untradable)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035482,"className":"box_SampleGabijaEarring","name":"[Entry] Fire Flame Earring Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_GIVE_SAMPLE_EARRING"}},{"itemId":11035483,"className":"202112package_Newbie_A","name":"[New/Return] Treestmas Package A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Auto_Enter_NoTrade/5;Ticket_Vasilissa_Auto_Enter_NoTrade/10;Ticket_Mythic_Auto_Hard/10;Multiple_Token_MythicHARD_NoTrade/10;Multiple_Token_MythicAuto_NoTrade/50;"}},{"itemId":11035484,"className":"202112package_Newbie_B","name":"[New/Return] Treestmas Package B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_earring_raid_NoTrade/10;ChallengeExpertModeCountUp_NoTrade/40;EP12_EXPERT_MODE_MULTIPLE_NoTrade/40;misc_pvp_mine2_NotLimit_10000/15;"}},{"itemId":11035485,"className":"202112package_Newbie_C","name":"[New/Return] Treestmas Package C","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_470_NoTrade/50;misc_Enchant_460_NoTrade/20;Abrasive_460_NoTrade/50;Premium_awakeningStone/50;GabijaCertificateCoin_10000p/15;"}},{"itemId":11035486,"className":"Jumping_expCard_470Lv","name":"Level Jumping Card (Lv.470)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EXPCARD_JUMPING_SET_LV","numArg1":470}},{"itemId":11035487,"className":"Vasilissa_Armor_Select_Category_TEST","name":"[Kupole] 21 EHN 10 TRA Vasilisa Armor Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11035488,"className":"Vasilissa_Armor_TxBox_Plate_TEST","name":"[Kupole] 21 EHN 10 TRA Vasilisa Armor Set Box - Plate","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_RAID_PLATE_TOP/1/Transcend/10/Reinforce_2/21;EP13_RAID_PLATE_LEG/1/Transcend/10/Reinforce_2/21;EP13_RAID_PLATE_FOOT/1/Transcend/10/Reinforce_2/21;EP13_RAID_PLATE_HAND/1/Transcend/10/Reinforce_2/21;"}},{"itemId":11035489,"className":"Vasilissa_Armor_TxBox_Leather_TEST","name":"[Kupole] 21 EHN 10 TRA Vasilisa Armor Set Box - Leather","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_RAID_LEATHER_TOP/1/Transcend/10/Reinforce_2/21;EP13_RAID_LEATHER_LEG/1/Transcend/10/Reinforce_2/21;EP13_RAID_LEATHER_FOOT/1/Transcend/10/Reinforce_2/21;EP13_RAID_LEATHER_HAND/1/Transcend/10/Reinforce_2/21;"}},{"itemId":11035490,"className":"Vasilissa_Armor_TxBox_Cloth_TEST","name":"[Kupole] 21 EHN 10 TRA Vasilisa Armor Set Box - Cloth","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_RAID_CLOTH_TOP/1/Transcend/10/Reinforce_2/21;EP13_RAID_CLOTH_LEG/1/Transcend/10/Reinforce_2/21;EP13_RAID_CLOTH_FOOT/1/Transcend/10/Reinforce_2/21;EP13_RAID_CLOTH_HAND/1/Transcend/10/Reinforce_2/21;"}},{"itemId":11035491,"className":"Vasilissa_Select_MainWeapon_TEST","name":"[Kupole] 21 EHN 10 TRA Vasilisa M.Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11035492,"className":"Vasilissa_Select_SubWeapon_TEST","name":"[Kupole] 21 EHN 10 TRA Vasilisa S.Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11035493,"className":"Special_Gift_Box_Leticia_2201","name":"2022 Leticia's Treasure Chest (Season 1)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_470/150;misc_pvp_mine2_NotLimit_50000/4;GabijaCertificateCoin_50000p/4;seletbox_tricket_bountyhunt_ep13_hard_Leticia/5;Ticket_Vasilissa_Auto_Enter/25;Dungeon_Key01/1500;"}},{"itemId":11035494,"className":"seletbox_tricket_bountyhunt_ep13_hard_Leticia","name":"Bounty Hunt Superior Written Order Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035495,"className":"selectbox_ep13mythology01","name":"Asgard Thunder/Serpent Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035496,"className":"selectbox_ep13mythology01_1","name":"Asgard Retribution/Rage Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035497,"className":"selectbox_ep13mythology02","name":"Asgard Trickery/Beast Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035498,"className":"selectbox_ep13mythology02_1","name":"Asgard Deception/Revenge Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035499,"className":"selectbox_ep13mythology03","name":"Asgard Sea/Winter Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035500,"className":"selectbox_ep13mythology03_1","name":"Asgard Ocean/Snow Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035501,"className":"all_costume_box_ep13mythology","name":"Asgard ALL Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"selectbox_ep13mythology01/1;selectbox_ep13mythology01_1/1;selectbox_ep13mythology02/1;selectbox_ep13mythology02_1/1;selectbox_ep13mythology03/1;selectbox_ep13mythology03_1/1;"}},{"itemId":11035502,"className":"all_weapon_box_ep13mythology","name":"Asgard ALL Weapon Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_Artefact_143/1;EP13_Artefact_144/1;EP13_Artefact_145/1;EP13_Artefact_146/1;EP13_Artefact_147/1;EP13_Artefact_148/1;EP13_Artefact_149/1;"}},{"itemId":11035503,"className":"box_wing_ep13mythology","name":"Asgard Grace of Nornir Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"wing_ep13mythology/1;"}},{"itemId":11035504,"className":"box_effect_ep13mythology","name":"Asgard Hlidskjalf Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"artifact_ep13mythology/1;"}},{"itemId":11035505,"className":"certificate_RidePet_Tiger_twn","name":"Mount Voucher - King of the Mountain","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REGEDIT_RIDE_PET","strArg":"RidePet_9"}},{"itemId":11035506,"className":"certificate_RidePet_Tiger_kor","name":"Mount Voucher - Black Fog Tiger","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REGEDIT_RIDE_PET","strArg":"RidePet_10"}},{"itemId":11035507,"className":"unlock_vasilisa_belonging_scroll_Recycle","name":"[Exchange] Vasilisa Equipment Bound Removal Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"unlock_vasilisa_belonging","numArg1":470}},{"itemId":11035508,"className":"unlock_vasilisa_belonging_scroll_Recycle_8ea","name":"[Exchange] Vasilisa Equipment Bound Removal Scroll x8","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"unlock_vasilisa_belonging_scroll_Recycle/8;"}},{"itemId":11035509,"className":"202201package_A","name":"Res Sacrae Gift Set","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Giltine_Auto_Premium_NoTrade/20;Ticket_Mythic_Auto_Hard/20;Multiple_Token_MythicHARD_NoTrade/20;Multiple_Token_MythicAuto_NoTrade/50;Relic_Reinforce_100000coupon/1500;Recycle_Shop_Medal/82;"}},{"itemId":11035510,"className":"202201package_B","name":"Challenge Gift Set","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeExpertModeCountUp_NoTrade/30;EP12_EXPERT_MODE_MULTIPLE_NoTrade/30;ChallengeModeReset_NoTrade/50;Recycle_Shop_Medal/107;"}},{"itemId":11035511,"className":"202201package_C","name":"Grow Up Gift Set","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_470_NoTrade/75;Dungeon_Key01_NoTrade/1500;EP12_enrich_Vibora_misc_NoTrade/5;EP12_enrich_Goddess_misc_NoTrade/3;Ability_Point_Stone_10000/70;misc_pvp_mine2_NotLimit_10000/20;GabijaCertificateCoin_10000p/20;Recycle_Shop_Medal/313;"}},{"itemId":11035512,"className":"extract_ticket_cabinet_vibora_Recycle","name":"[Exchange] Vaivora Vision Extract Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"extract_vibora"}},{"itemId":11035513,"className":"extract_ticket_cabinet_goddess_Recycle","name":"[Exchange] Goddess'/Demon God's Armor Extract Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"extract_goddess"}},{"itemId":11035514,"className":"Leticia_Card_Lv7_4ea_Box","name":"7 Star Leticia Card Bundle","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Legendcard_Leticia/4/ItemExp/550;"}},{"itemId":11035515,"className":"Leticia_Dungeon_Key01_3000ea_Box","name":"Raid Portal Stone x3000 Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Dungeon_Key01/3000;"}},{"itemId":11035516,"className":"selectbox_ep13maid01","name":"Servant Royal Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035517,"className":"selectbox_ep13maid01_1","name":"Servant Second Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035518,"className":"selectbox_ep13maid02","name":"Servant Knight Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035519,"className":"selectbox_ep13maid02_1","name":"Servant Guard Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035520,"className":"all_costume_box_ep13maid","name":"Servant ALL Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"selectbox_ep13maid01/1;selectbox_ep13maid01_1/1;selectbox_ep13maid02/1;selectbox_ep13maid02_1/1;"}},{"itemId":11035521,"className":"all_weapon_box_ep13maid","name":"Servant ALL Weapon Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_Artefact_150/1;EP13_Artefact_151/1;EP13_Artefact_152/1;EP13_Artefact_153/1;"}},{"itemId":11035522,"className":"box_archeology_compass_10ea","name":"Relic Compass x10","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"archeology_compass/10;"}},{"itemId":11035523,"className":"box_archeology_compass_40ea","name":"Relic Compass x40","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"archeology_compass/40;"}},{"itemId":11035524,"className":"Vasilissa_Armor_Select_Category_1","name":"10 EHN 10 TRA Vasilisa Armor Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11035525,"className":"Vasilissa_Armor_TxBox_Plate_1","name":"10 EHN 10 TRA Vasilisa Armor Set Box - Plate","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_RAID_PLATE_TOP/1/Transcend/10/Reinforce_2/10;EP13_RAID_PLATE_LEG/1/Transcend/10/Reinforce_2/10;EP13_RAID_PLATE_FOOT/1/Transcend/10/Reinforce_2/10;EP13_RAID_PLATE_HAND/1/Transcend/10/Reinforce_2/10;"}},{"itemId":11035526,"className":"Vasilissa_Armor_TxBox_Leather_1","name":"10 EHN 10 TRA Vasilisa Armor Set Box - Leather","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_RAID_LEATHER_TOP/1/Transcend/10/Reinforce_2/10;EP13_RAID_LEATHER_LEG/1/Transcend/10/Reinforce_2/10;EP13_RAID_LEATHER_FOOT/1/Transcend/10/Reinforce_2/10;EP13_RAID_LEATHER_HAND/1/Transcend/10/Reinforce_2/10;"}},{"itemId":11035527,"className":"Vasilissa_Armor_TxBox_Cloth_1","name":"10 EHN 10 TRA Vasilisa Armor Set Box - Cloth","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP13_RAID_CLOTH_TOP/1/Transcend/10/Reinforce_2/10;EP13_RAID_CLOTH_LEG/1/Transcend/10/Reinforce_2/10;EP13_RAID_CLOTH_FOOT/1/Transcend/10/Reinforce_2/10;EP13_RAID_CLOTH_HAND/1/Transcend/10/Reinforce_2/10;"}},{"itemId":11035528,"className":"Vasilissa_Select_MainWeapon_1","name":"10 EHN 10 TRA Vasilisa M.Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11035529,"className":"Vasilissa_Select_SubWeapon_1","name":"10 EHN 10 TRA Vasilisa S.Weapon Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11035530,"className":"give_Keraunos_Vibora_NoTrade","name":"Vaivora Vision - Electric Flow Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT_NOTRADE","strArg":"TSF04_129_9/1;"}},{"itemId":11035531,"className":"keraunos_standard_class_pack","name":"Keraunos Standard Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"UnlockQuest_OverAchieveClear_Char2_24_Job/1;give_Keraunos_Vibora_NoTrade/1;UnlockQuest_OverAchieveClear_Char2_24_Costume/1;Premium_RankReset/1;"}},{"itemId":11035532,"className":"keraunos_complete_class_pack","name":"Keraunos Complete Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"UnlockQuest_OverAchieveClear_Char2_24_Job/1;give_Keraunos_Vibora_NoTrade/1;UnlockQuest_OverAchieveClear_Char2_24_Costume/1;Vasilissa_Armor_Select_Category_1/1;Vasilissa_Select_MainWeapon_1/2;Vasilissa_Select_SubWeapon_1/2;vibora_Vision_Select_Box_NoTrade/1;ExpPotion_box_36ea/1;Premium_Mystic_Glass_460_NoTrade/50;Premium_Sandra_Glass_460_NoTrade/100;Premium_Sandra_Glass_1line_460_NoTrade/150;Premium_awakeningStone/30;Abrasive_460_NoTrade/30;misc_Enchant_460_NoTrade/20;misc_reinforce_percentUp_470_NoTrade/250;Event_JobexpCard_BOX/1;Jumping_expCard_460Lv/1;HiddenAbility_MasterPiece_Fragment/200;Ability_Point_Stone_10000/200;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Coupon_ItemRandomReset_gift/400;GabijaCertificateCoin_10000p/20;misc_pvp_mine2_NotLimit_10000/20;ark_lvup_scroll_lv10/1;"}},{"itemId":11035533,"className":"newbie_and_returner_pack_1","name":"[New/Return] Growth Support Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"vibora_Vision_Select_Box_NoTrade/2;Vasilissa_Armor_Select_Category_1/1;Vasilissa_Select_MainWeapon_1/2;Vasilissa_Select_SubWeapon_1/2;ExpPotion_box_36ea/1;Premium_Mystic_Glass_460_NoTrade/50;Premium_Sandra_Glass_460_NoTrade/100;Premium_Sandra_Glass_1line_460_NoTrade/150;Premium_awakeningStone/30;Abrasive_460_NoTrade/30;misc_Enchant_460_NoTrade/20;misc_reinforce_percentUp_470_NoTrade/250;Event_JobexpCard_BOX/1;Jumping_expCard_460Lv/1;HiddenAbility_MasterPiece_Fragment/200;Ability_Point_Stone_10000/200;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Coupon_ItemRandomReset_gift/400;GabijaCertificateCoin_10000p/20;misc_pvp_mine2_NotLimit_10000/20;ark_lvup_scroll_lv10/1;"}},{"itemId":11035534,"className":"Special_Gift_Box_Leticia_2203","name":"2022 Leticia's Entry Voucher Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_RevivalPaulius_Party_Enter/20;Ticket_Vasilissa_Party_Enter/20;"}},{"itemId":11035535,"className":"box_enrich_misc_Leticia","name":"High Level Transmutor Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"EP12_enrich_Vibora_misc/6;EP12_enrich_Goddess_misc/8;"}},{"itemId":11035536,"className":"certificate_RidePet_ep13animal_1","name":"Mount Voucher - Toy Pony","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REGEDIT_RIDE_PET","strArg":"RidePet_11"}},{"itemId":11035537,"className":"selectbox_ep13animal01","name":"Animal Kindergarten Bunny Moo Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035538,"className":"selectbox_ep13animal01_1","name":"Animal Kindergarten Duck Fox Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035539,"className":"selectbox_Re_littleprince01","name":"[Re] Starlight Palace Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035540,"className":"selectbox_Re_littleprince02","name":"[Re] Romantic Pilot Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035541,"className":"selectbox_Re_2019halloween01","name":"[Re] Candy Killer Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035542,"className":"selectbox_Re_2019halloween02","name":"[Re] Haunted Hospital Nurse Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035543,"className":"selectbox_Re_chef02","name":"[Re] Deputy Chef Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035544,"className":"selectbox_Re_chef03","name":"[Re] Restaurant Manager Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035545,"className":"202204package_A","name":"[Verdure] Attribute/Arts Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"HiddenAbility_MasterPiece_Fragment/100;Ability_Point_Stone_10000/100;Premium_Abillitypoint_Job/6;AbillityArts_Box_Total/6;Recycle_Shop_Medal/135;"}},{"itemId":11035546,"className":"202204package_B","name":"[Verdure] Hair Costume Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_Enchantchip_NoTrade/80;Premium_HairAcc_Core_NoTrade/1;Recycle_Shop_Medal/73;"}},{"itemId":11035547,"className":"202204package_C","name":"[Verdure] 7 Days Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"PremiumToken_7d/1;PvPMineMiscBoost_Ticket_7d/1;EngraveSlotExtension_Ticket_7d/1;ABAND01_126_silver/1;"}},{"itemId":11035548,"className":"202204package_C_newbie","name":"[New/Return] [Verdure] 7 Days Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"PremiumToken_7d/1;PvPMineMiscBoost_Ticket_7d/1;EngraveSlotExtension_Ticket_7d/1;ABAND01_126_silver/1;"}},{"itemId":11035549,"className":"selectbox_ep14magical01","name":"Eternal Savior Lumen Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035550,"className":"selectbox_ep14magical02","name":"Eternal Savior Nox Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035551,"className":"certificate_RidePet_ep14fivebird","name":"Mount Voucher - ToS-15 Takeoff!","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REGEDIT_RIDE_PET","strArg":"RidePet_12"}},{"itemId":11035552,"className":"egg_pet_aircraft","name":"ToS-15 Takeoff! Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_aircraft","numArg1":38}},{"itemId":11035553,"className":"Special_Gift_Box_Leticia_2205","name":"2022 Leticia's Treasure Chest (May)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Legend_card_boruta/1;Leticia_Card_Lv7_4ea_Box/1;"}},{"itemId":11035554,"className":"give_Lama_Vibora_NoTrade","name":"Vaivora Vision - Principle of Emptiness Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT_NOTRADE","strArg":"TMAC04_118_9/1;"}},{"itemId":11035555,"className":"lama_standard_class_pack","name":"Lama Standard Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"UnlockQuest_OverAchieveClear_Char4_22_Job/1;give_Lama_Vibora_NoTrade/1;UnlockQuest_OverAchieveClear_Char4_22_Costume/1;Premium_RankReset/1;"}},{"itemId":11035556,"className":"lama_complete_class_pack","name":"Lama Complete Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"UnlockQuest_OverAchieveClear_Char4_22_Job/1;give_Lama_Vibora_NoTrade/1;UnlockQuest_OverAchieveClear_Char4_22_Costume/1;Vasilissa_Armor_Select_Category_1/1;Vasilissa_Select_MainWeapon_1/2;Vasilissa_Select_SubWeapon_1/2;vibora_Vision_Select_Box_NoTrade/1;ExpPotion_box_36ea/1;Premium_Mystic_Glass_460_NoTrade/50;Premium_Sandra_Glass_460_NoTrade/100;Premium_Sandra_Glass_1line_460_NoTrade/150;Premium_awakeningStone/30;Abrasive_460_NoTrade/30;misc_Enchant_460_NoTrade/20;misc_reinforce_percentUp_470_NoTrade/250;Event_JobexpCard_BOX/1;Jumping_expCard_460Lv/1;HiddenAbility_MasterPiece_Fragment/200;Ability_Point_Stone_10000/200;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;Coupon_ItemRandomReset_gift/400;GabijaCertificateCoin_10000p/20;misc_pvp_mine2_NotLimit_10000/20;ark_lvup_scroll_lv10/1;"}},{"itemId":11035557,"className":"egg_pet_twn6th_TI","name":"Malayan Tapir Egg","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_twn6th_TI","numArg1":38}},{"itemId":11035558,"className":"givebox_Goddess_fragments_gabia","name":"Gabija’s Authority All in One Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Goddess_fragments_gabiaA/1;Goddess_fragments_gabiaB/1;Goddess_fragments_gabiaC/1;"}},{"itemId":11035559,"className":"selectbox_Goddess_fragments_gabia","name":"Gabija’s Authority Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035560,"className":"ExpPotion_box_60ea","name":"[Lv.460] Pamoka Solution x60 Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Legend_ExpPotion_2_460_complete/60/ItemExpString/1250000000;"}},{"itemId":11035561,"className":"selectbox_ep14fivebird01","name":"Tos Hero Penguin Costume Set Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035562,"className":"selectbox_ep14fivebird01_1","name":"Tos Hero Chick Costume Set Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035563,"className":"selectbox_ep14fivebird02","name":"Tos Hero Cardinal Costume Set Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035564,"className":"selectbox_ep14fivebird02_1","name":"Tos Hero Crow-tit Costume Set Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035565,"className":"selectbox_ep14fivebird03","name":"Tos Hero Sparrow Costume Set Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035566,"className":"selectbox_pet_ep14fivebird","name":"ToS-15 Takeoff! Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035567,"className":"Special_Gift_Box_Leticia_2206","name":"2022 Goddess Reward Voucher Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Multiple_Token_Jellyzele_Party/50;Multiple_Token_RevivalPaulius_Party/50;"}},{"itemId":11035569,"className":"selectbox_costume_NoTrade_1","name":"Bad Kids Blue School Uniform Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035570,"className":"selectbox_costume_NoTrade_2","name":"Bad Kids Red School Uniform Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035571,"className":"selectbox_costume_NoTrade_3","name":"Bad Kids White School Uniform Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035572,"className":"selectbox_costume_NoTrade_4","name":"Cherry Blossom Sailor Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035573,"className":"selectbox_costume_SET_NoTrade_1","name":"Popolion Costume Set Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade"}},{"itemId":11035574,"className":"selectbox_costume_SET_NoTrade_2","name":"Tuxedo Cat Costume Set Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade"}},{"itemId":11035575,"className":"selectbox_costume_SET_NoTrade_3","name":"Fried Chicken Poodle Costume Set Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade"}},{"itemId":11035576,"className":"selectbox_costume_NoTrade_5","name":"Student Council School Uniform Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035577,"className":"selectbox_costume_NoTrade_6","name":"Pink Freshman School Uniform Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035578,"className":"selectbox_costume_NoTrade_7","name":"Heart-Throb Wedding Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035579,"className":"selectbox_costume_NoTrade_8","name":"Modern Black Bunny Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035580,"className":"selectbox_costume_NoTrade_9","name":"Hot Red Bunny Girl Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035581,"className":"selectbox_costume_SET_NoTrade_4","name":"Rudolph Costume Set Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"helmet_Rudolf01/1/TeamBelonging/1;costume_Com_77/1/TeamBelonging/1;"}},{"itemId":11035582,"className":"selectbox_costume_SET_NoTrade_5","name":"Golden Puppy Costume Set Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"helmet_golddog01/1/TeamBelonging/1;costume_Com_80/1/TeamBelonging/1;"}},{"itemId":11035583,"className":"selectbox_costume_NoTrade_10","name":"Golden Dog Warrior Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035584,"className":"selectbox_costume_NoTrade_11","name":"Hanbok Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035585,"className":"selectbox_costume_NoTrade_12","name":"Marine Beachwear Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035586,"className":"selectbox_costume_NoTrade_13","name":"Whistle Referee Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035587,"className":"selectbox_costume_NoTrade_14","name":"Chuseok Hanbok Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035588,"className":"selectbox_costume_NoTrade_15","name":"Rash Guard Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035589,"className":"selectbox_costume_NoTrade_16","name":"Trunks/One-piece Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035590,"className":"selectbox_costume_NoTrade_17","name":"Flamingo Float Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035591,"className":"selectbox_costume_NoTrade_18","name":"Duck Float Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035592,"className":"selectbox_costume_NoTrade_19","name":"Flippers Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035593,"className":"selectbox_costume_NoTrade_20","name":"Romantic Sailor Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035594,"className":"selectbox_costume_NoTrade_21","name":"Summer Beachwear Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035595,"className":"selectbox_costume_NoTrade_22","name":"Klaipeda Capricorns Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035596,"className":"selectbox_costume_NoTrade_23","name":"Orsha Lions Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035597,"className":"selectbox_costume_NoTrade_24","name":"Orsha Supporters Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035598,"className":"selectbox_costume_NoTrade_25","name":"Klaipeda Supporters Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035599,"className":"selectbox_costume_NoTrade_26","name":"Rook & Pawn Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035600,"className":"selectbox_costume_NoTrade_27","name":"Bishop & Knight Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035601,"className":"selectbox_costume_NoTrade_28","name":"King & Queen Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035602,"className":"selectbox_costume_NoTrade_29","name":"My Wedding Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035603,"className":"selectbox_costume_NoTrade_30","name":"Best Man & Bridesmaid Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035604,"className":"selectbox_costume_NoTrade_31","name":"Shark Pirate Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035605,"className":"selectbox_costume_NoTrade_32","name":"Romantic Sailor Whale Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035606,"className":"selectbox_costume_NoTrade_33","name":"Marine Beachwear Whale Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035607,"className":"selectbox_costume_NoTrade_34","name":"Summer Beachwear Whale Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035608,"className":"selectbox_costume_NoTrade_35","name":"Santa Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035609,"className":"selectbox_costume_NoTrade_36","name":"Preppy Freshman School Uniform Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035610,"className":"selectbox_costume_NoTrade_37","name":"Mint Freshman School Uniform Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035611,"className":"selectbox_costume_NoTrade_38","name":"Lovely Pink Bunny Girl Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035612,"className":"selectbox_costume_NoTrade_39","name":"Sling Bikini Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035613,"className":"selectbox_costume_NoTrade_40","name":"Trouble Gang School Uniform Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035614,"className":"selectbox_costume_NoTrade_41","name":"Bad Kids Black School Uniform Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035615,"className":"selectbox_Guilty_Helmet_NoTrade","name":"Giltine Follower Hood Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035616,"className":"selectbox_costume_NoTrade_42","name":"Pure White Nurse Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035617,"className":"selectbox_costume_NoTrade_43","name":"Vampire Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035618,"className":"selectbox_costume_NoTrade_44","name":"Premium Snowflake Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035619,"className":"selectbox_costume_NoTrade_45","name":"Golden Fairy Wedding Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035620,"className":"selectbox_costume_NoTrade_46","name":"White Wolf Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035621,"className":"selectbox_costume_NoTrade_47","name":"Black Cat Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035622,"className":"selectbox_costume_NoTrade_48","name":"Nicopolis Guard Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035623,"className":"selectbox_costume_NoTrade_49","name":"Pit-a-pat Wedding Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035624,"className":"selectbox_costume_NoTrade_50","name":"Black Sailor Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035625,"className":"selectbox_costume_NoTrade_51","name":"Romantic Pink Nurse Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035626,"className":"selectbox_costume_NoTrade_52","name":"Sky Blue Nurse Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035627,"className":"selectbox_costume_NoTrade_53","name":"Spring Farmer Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035628,"className":"selectbox_costume_NoTrade_54","name":"Dawn Fairy Wedding Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035630,"className":"selectbox_costume_NoTrade_55","name":"Teeny Fairy Wedding Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035631,"className":"selectbox_costume_NoTrade_56","name":"Royal Envoy Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035632,"className":"selectbox_costume_NoTrade_57","name":"Frill Ornament Fairy Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035633,"className":"selectbox_costume_NoTrade_58","name":"Court Scholar Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035634,"className":"selectbox_costume_NoTrade_59","name":"Black Ceremonial Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035635,"className":"selectbox_costume_NoTrade_60","name":"Spider Web Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035636,"className":"selectbox_costume_NoTrade_61","name":"Coral Blue Bunny Girl Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035637,"className":"selectbox_costume_NoTrade_62","name":"Giltine Follower Robe Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035638,"className":"selectbox_costume_SET_NoTrade_6","name":"Moon Rabbit Costume Set Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"helmet_MoonRabbit/1/TeamBelonging/1;costume_Com_134/1/TeamBelonging/1;"}},{"itemId":11035639,"className":"selectbox_costume_NoTrade_63","name":"Jack-O-Lantern Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":100000}},{"itemId":11035640,"className":"givebox_twn6th_TI","name":"Malayan Tapir Costume Set Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"helmet_twn6th_TI/1;costume_twn6th_TI/1;"}},{"itemId":11035641,"className":"selectbox_twn6th_bubble","name":"Bubble Tea Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035642,"className":"all_costume_box_ocelot_black_white","name":"Baby Leopard Costume Package","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"selectbox_ocelot_cosutme_set/1;selectbox_ocelot_bag/1;selectbox_ocelot_balloon/1;selectbox_ocelot_accessary/1;selectbox_ocelot_pet/1;"}},{"itemId":11035643,"className":"selectbox_ocelot_cosutme_set","name":"Baby Leopard Costume Set Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035644,"className":"selectbox_ocelot_bag","name":"Baby Leopard Bag Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035645,"className":"selectbox_ocelot_balloon","name":"Baby Leopard Balloon Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035646,"className":"selectbox_ocelot_accessary","name":" Baby Leopard Headband Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035647,"className":"selectbox_ocelot_pet","name":"Baby Leopard Companion Egg Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035648,"className":"egg_pet_twnocelot_black","name":"Baby Black Leopard Egg","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_twnocelot_black","numArg1":38}},{"itemId":11035649,"className":"egg_pet_twnocelot_white","name":"Baby Snow Leopard Egg","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_twnocelot_white","numArg1":38}},{"itemId":11035656,"className":"SeasonServerOpen_MaxLevel_Box","name":"[Season Server] Lv. 470 Achievement Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"all_costume_box_ocelot_black_white/1;Premium_Enchantchip_NoTrade/30;EVENT_2103_Relic_Gem/5;relicgem_lvup_scroll_lv5/2;selectbox_Gem_Relic_Cyan/1;selectbox_Gem_Relic_Magenta/1;"}},{"itemId":11035657,"className":"SeasonServer_package_HairCostume","name":"[Season Server] - Enchant Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_Enchantchip_NoTrade/80;Premium_HairAcc_Core_NoTrade/1;"}},{"itemId":11035658,"className":"SeasonServer_package_1","name":"[Season Server] - Week 2 Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Mythic_Auto_Hard/10;Multiple_Token_MythicHARD_NoTrade/10;Ticket_Giltine_Auto_Premium_NoTrade/10;Ticket_Vasilissa_Auto_Enter_NoTrade/13;"}},{"itemId":11035659,"className":"SeasonServer_package_2","name":"[Season Server] - Week 3 Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeModeReset_NoTrade/35;Ticket_RevivalPaulius_Auto_Enter_NoTrade/14;Multiple_Token_RevivalPaulius_Party_NoTrade/2;"}},{"itemId":11035660,"className":"SeasonServer_package_3","name":"[Season Server] - Week 4 Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_earring_raid_NoTrade/30;ChallengeExpertModeCountUp_NoTrade/35;EP12_EXPERT_MODE_MULTIPLE_NoTrade/35;"}},{"itemId":11035661,"className":"SeasonServer_package_4","name":"[Season Server] - Week 5 Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Jellyzele_Auto_Enter_NoTrade/20;Multiple_Token_Jellyzele_Party_NoTrade/4;"}},{"itemId":11035662,"className":"selectbox_season_resale_wing_selectbox","name":"[Season Server] Fashion Museum: Goddess' Cube Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035663,"className":"SeasonServer_package_reinforce_percentUp_100plus10","name":"[Season Server] Premium Enhance Aid x100 +10","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_Premium_reinforce_percentUp_460/110;"}},{"itemId":11035664,"className":"selectbox_ep14zemina01","name":"Knight of Zemyna Defender Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035665,"className":"selectbox_ep14zemina02","name":"Knight of Zemyna Guardian Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035666,"className":"Gacha_secret_medicine","name":"[Lv.470] Arcanum Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT","strArg":"secret_medicine_str_470/5;secret_medicine_int_470/5;secret_medicine_con_470/5;secret_medicine_mspd2_470/5;secret_medicine_rsp_470/5;Enrichment_HP_470/5;"}},{"itemId":11035674,"className":"Special_Gift_Box_Leticia_2207","name":"2022 Leticia's Treasure Chest (July)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Legend_card_boruta/1;Leticia_Card_Lv7_7ea_Box/1;Leticia_Card_Lv4_7ea_Box/1;SpecialCreateTicket_Item/1;"}},{"itemId":11035675,"className":"SEASONLETICIA_Seal_Material_Boruta","name":"Boruta Seal - Enhancement Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Seal_Material_Boruta/1;"}},{"itemId":11035678,"className":"certificate_RidePet_ep14rider","name":"Mount Voucher - TOS Davidson","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REGEDIT_RIDE_PET","strArg":"RidePet_13"}},{"itemId":11035679,"className":"selectbox_ep14rider01","name":"TOS Metal Leopard Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035680,"className":"selectbox_ep14rider02","name":"TOS Metal Leather Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035681,"className":"Special_Gift_Box_Leticia_2208","name":"2022 Leticia's Treasure Chest (August)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Legend_card_boruta/1;Leticia_Card_Lv7_7ea_Box/1;Leticia_Card_Lv4_7ea_Box/1;SpecialCreateTicket_Item/1;"}},{"itemId":11035683,"className":"egg_pet_twn6th_TI_NoTrade","name":"Malayan Tapir Egg (Untradable)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_twn6th_TI","numArg1":38}},{"itemId":11035684,"className":"Special_Gift_Box_Leticia_2209","name":"2022 Leticia's Treasure Chest (September)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_TurbulentCore_Party_Enter/10;Ticket_TurbulentCore_Auto_Enter/250;secret_medicine_str_470/70;secret_medicine_int_470/70;"}},{"itemId":11035685,"className":"certificate_RidePet_ep14egypt","name":"Mount Voucher - Boat of Morning and Evening","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REGEDIT_RIDE_PET","strArg":"RidePet_14"}},{"itemId":11035686,"className":"selectbox_ep14egypt01","name":"Heliopolis Horus/Bastet Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035687,"className":"selectbox_ep14egypt02","name":"Heliopolis Anubis Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035688,"className":"selectbox_sweatsuit","name":"Tracksuit Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035689,"className":"selectbox_xmas_artefact","name":"Christmas Party Weapon Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035690,"className":"selectbox_mystic_savior_artefact","name":"Mystic Savior Weapon Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035691,"className":"selectbox_choco_artefact","name":"Crunchy Choco Weapon Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035692,"className":"selectbox_rose_artefact","name":"Impassioned Rose Weapon Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035693,"className":"selectbox_galaxy_artefact","name":"Twilight Star Weapon Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035694,"className":"selectbox_beach_artefact","name":"Summer Beachwear Weapon Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035695,"className":"selectbox_restaurant_artefact","name":"Restaurant Weapon Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035696,"className":"selectbox_curtain_call_artefact","name":"Masquerade Weapon Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035697,"className":"selectbox_demonlord_artefact","name":"Littleberk/Maru Weapon Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035698,"className":"selectbox_vakarine_artefact","name":"Evening Star Weapon Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035699,"className":"selectbox_taskunit_artefact","name":"Task Unit Weapon Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035700,"className":"selectbox_winter_artefact","name":"Ice Cold Weapon Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035701,"className":"selectbox_cherryblossom_artefact","name":"Rosy Floret Weapon Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035702,"className":"selectbox_icecream_artefact","name":"Sweet Ice Cream Weapon Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035703,"className":"selectbox_mafia_artefact","name":"Criminal Weapon Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035704,"className":"selectbox_stem_artefact","name":"STEM Weapon Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035705,"className":"selectbox_tecance_artefact","name":"TOSummer Weapon Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035706,"className":"selectbox_raincoat_artefact","name":"Drip Drop Weapon Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035707,"className":"selectbox_retro_artefact","name":"Good ol'days Weapon Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035708,"className":"selectbox_ge_artefact","name":"Otherworld Weapon Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035709,"className":"selectbox_athleisure_artefact","name":"Athleisure Weapon Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035710,"className":"selectbox_mythology_artefact","name":"Asgard Weapon Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035711,"className":"selectbox_maid_artefact","name":"Servant Weapon Selection Box ","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035712,"className":"202209package_1","name":"Autumn Harvest Package 1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_TurbulentCore_Auto_Enter_NoTrade/8;Ticket_RevivalPaulius_Auto_Enter_NoTrade/10;piece_EP14_GoddessIcor_Armor_NoTrade/14;piece_EP14_GoddessIcor_Weapon_NoTrade/14;piece_random_skill_gem_480_NoTrade/14;piece_GabijaEarring_NoTrade/12;piece_penetration_belt_NoTrade/40;"}},{"itemId":11035713,"className":"202209package_2","name":"Autumn Harvest Package 2","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"ChallengeExpertModeCountUp_NoTrade/30;EP12_EXPERT_MODE_MULTIPLE_NoTrade/30;ChallengeModeReset_NoTrade/50;piece_EP14_GoddessIcor_Armor_NoTrade/14;piece_EP14_GoddessIcor_Weapon_NoTrade/14;piece_random_skill_gem_480_NoTrade/14;piece_GabijaEarring_NoTrade/12;piece_penetration_belt_NoTrade/40;"}},{"itemId":11035714,"className":"202209package_3","name":"Autumn Harvest Package 3","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_TurbulentCore_Auto_Enter_NoTrade/8;Ticket_RevivalPaulius_Auto_Enter_NoTrade/10;ChallengeExpertModeCountUp_NoTrade/30;EP12_EXPERT_MODE_MULTIPLE_NoTrade/30;ChallengeModeReset_NoTrade/50;piece_EP14_GoddessIcor_Armor_NoTrade/28;piece_EP14_GoddessIcor_Weapon_NoTrade/28;piece_random_skill_gem_480_NoTrade/28;piece_GabijaEarring_NoTrade/24;piece_penetration_belt_NoTrade/80;R_Ticket_TurbulentCore_Party_Enter_NoTrade/2;R_Ticket_Jellyzele_Party_Enter_NoTrade/2;"}},{"itemId":11035715,"className":"give_Jaguar_Vibora_NoTrade","name":"Vaivora Vision - Law of the Jungle Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT_NOTRADE","strArg":"DAG04_123_11/1;"}},{"itemId":11035716,"className":"jaguar_standard_class_pack","name":"Jaguar Standard Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"UnlockQuest_OverAchieveClear_Char5_18_Job/1;give_Jaguar_Vibora_NoTrade/1;UnlockQuest_OverAchieveClear_Char5_18_Costume/1;Premium_RankReset/1;"}},{"itemId":11035717,"className":"jaguar_complete_class_pack","name":"Jaguar Complete Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"UnlockQuest_OverAchieveClear_Char5_18_Job/1;open_ticket_cabinet_vibora_lv4/1;UnlockQuest_OverAchieveClear_Char5_18_Costume/1;package_select_jagure_armor/1;package_select_jagure_weapon/1;package_select_jagure_belt/1;package_select_jagure_shoulder/1;piece_GabijaEarring_select_job/1;Event_JobexpCard_BOX/1;Jumping_expCard_480Lv/1;Premium_RankReset/1;Ability_Point_Stone_10000/200;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;VakarineCertificateCoin_10000p/20;misc_pvp_mine2_NotLimit_10000/20;"}},{"itemId":11035718,"className":"Special_Gift_Box_Leticia_2210","name":"2022 Leticia's Treasure Chest (October)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_2210","strArg":"Goddess_card_EP14_baubas/1;Ticket_TurbulentCore_Party_Enter/15;Ticket_Jellyzele_Party_Enter/30;Multiple_Token_TurbulentCore_Party/15;Multiple_Token_Jellyzele_Party/30;secret_medicine_str_470/50;secret_medicine_int_470/50;"}},{"itemId":11035719,"className":"egg_pet_twnocelot_NoTrade","name":"Ocelot Egg","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_twnocelot","numArg1":38}},{"itemId":11035720,"className":"Jumping_expCard_480Lv","name":"Level Jumping Card (Lv.480)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EXPCARD_JUMPING_SET_LV","numArg1":480}},{"itemId":11035721,"className":"selectbox_twn6th_bubble_NoTrade","name":"Bubble Tea Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035722,"className":"selectbox_costume_SET_TWN_NoTrade_1","name":"Popolion Costume Set Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade"}},{"itemId":11035723,"className":"selectbox_costume_SET_TWN_NoTrade_2","name":"Tuxedo Cat Costume Set Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade"}},{"itemId":11035724,"className":"selectbox_costume_SET_TWN_NoTrade_3","name":"Fried Chicken Poodle Costume Set Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade"}},{"itemId":11035725,"className":"Leticia_Card_Lv9_3ea_Box","name":"9 Star Leticia Card Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Legendcard_Leticia/3/ItemExp/1060;"}},{"itemId":11035726,"className":"Special_Gift_Box_Leticia_2211","name":"Leticia's Baubas Treasure Chest","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_2210","strArg":"Goddess_card_EP14_baubas/1;Ticket_TurbulentCore_Party_Enter/15;Ticket_Jellyzele_Party_Enter/30;Leticia_Card_Lv9_3ea_Box/1;secret_medicine_str_470/50;secret_medicine_int_470/50;"}},{"itemId":11035727,"className":"selectbox_ep14tarot01","name":"Major Arcana The Sun & Star Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035728,"className":"selectbox_ep14tarot02","name":"Major Arcana The Tower & Moon Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035729,"className":"egg_pet_jpn3th_fox","name":"Red Fox Egg","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_jpn3th_fox","numArg1":38}},{"itemId":11035730,"className":"givebox_jpn3th_Tanuki","name":"Raccoon Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"costume_jpn3th_Tanuki/1;helmet_jpn3th_Tanuki/1;"}},{"itemId":11035731,"className":"selectbox_NoTrade_Leg_Card_Lv10","name":"10 Star Legend Card Selection Album","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":440}},{"itemId":11035732,"className":"Special_Gift_Box_Leticia_2212","name":"Baubas Card Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_2210","strArg":"selectbox_NoTrade_Leg_Card_Lv10/2;Ticket_TurbulentCore_Party_Enter/15;Ticket_Jellyzele_Party_Enter/30;Leticia_Card_Lv9_3ea_Box/1;secret_medicine_str_470/50;secret_medicine_int_470/50;"}},{"itemId":11035733,"className":"Special_Gift_Box_Leticia_2212_GLOBAL","name":"Baubas Card Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_2210","strArg":"Goddess_card_EP14_baubas/1;"}},{"itemId":11035734,"className":"selectbox_ep14furry01","name":"Furry Sky Doggy & Golden Fox Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035735,"className":"selectbox_ep14furry02","name":"Furry Noble Fox Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035736,"className":"selectbox_resale_4_wing_selectbox","name":"Fashion Museum: Fate and Death Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035737,"className":"selectbox_pet_ep13ge_NoTrade","name":"Noble Popo Selection Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035738,"className":"certificate_RidePet_ep13ge_NoTrade","name":"Mount Voucher - Noble Popo (Untradable)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REGEDIT_RIDE_PET","strArg":"RidePet_8"}},{"itemId":11035739,"className":"egg_pet_ep13ge_NoTrade","name":"Noble Popo Box (Untradable)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_ep13ge","numArg1":38}},{"itemId":11035740,"className":"Special_Gift_Box_Leticia_2301","name":"Popo Scooter Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_2210","strArg":"selectbox_NoTrade_Leg_Card_Lv10/2;Ticket_TurbulentCore_Party_Enter/15;Ticket_Jellyzele_Party_Enter/30;Leticia_Card_Lv9_3ea_Box/1;secret_medicine_str_470/50;secret_medicine_int_470/50;"}},{"itemId":11035741,"className":"Ectonite_100_box","name":"Ectonite x100 Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_2210","strArg":"misc_Ectonite/100"}},{"itemId":11035742,"className":"Ectonite_1000_box","name":"Ectonite x1000 Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_2210","strArg":"misc_Ectonite/1000"}},{"itemId":11035743,"className":"Special_Gift_Box_Leticia_2301_GLOBAL","name":"Popo Scooter Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_2210","strArg":"certificate_RidePet_scooter/1;Hat_scootergoggle/1;"}},{"itemId":11035744,"className":"selectbox_ep12demonlord01_papaya","name":"Littleberk/Maru Character Pajama Costume Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035745,"className":"selectbox_ep12demonlord01_m_papaya","name":"Littleberk Character Pajama Costume Box (Male)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11035746,"className":"selectbox_ep12demonlord01_f_papaya","name":"Maru Character Pajama Costume Box (Female)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11040101,"className":"EP13_reputation_costume_1","name":"Believer of Goddess Lada Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11040102,"className":"EP13_reputation_costume_2","name":"Believer of Goddess Lada Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11040103,"className":"EP13_reputation_costume_3","name":"Believer of Goddess Saule Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11040104,"className":"EP13_reputation_costume_4","name":"Believer of Goddess Saule Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11040105,"className":"EP13_reputation_costume_5","name":"Believer of Goddess Austeja Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11040106,"className":"EP13_reputation_costume_6","name":"Believer of Goddess Austeja Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11040107,"className":"EP13_reputation_costume_7","name":"Believer of Goddess Dahlia Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11040108,"className":"EP13_reputation_costume_8","name":"Believer of Goddess Dahlia Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11040109,"className":"EP13_reputation_costume_9","name":"Believer of Goddess Vakarine Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11040110,"className":"EP13_reputation_costume_10","name":"Believer of Goddess Vakarine Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11044001,"className":"wing_baubas","name":"Baubas Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11101001,"className":"EP15_costume_Com_001","name":"Lofty Snow Squire Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11101002,"className":"EP15_costume_Com_002","name":"Lofty Snow Squire Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11101003,"className":"EP15_costume_Com_003","name":"Lofty Snow Knight Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11101004,"className":"EP15_costume_Com_004","name":"Lofty Snow Knight Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11101005,"className":"costume_nightrabbit01_m","name":"Midnight Bunny Coat Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11101006,"className":"costume_nightrabbit01_f","name":"Midnight Bunny Dress Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11101007,"className":"costume_ep15spring01_m","name":"Spring Fluff Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11101008,"className":"costume_ep15spring01_f","name":"Spring Fluff Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11101009,"className":"costume_ep15picnic01_m","name":"Picnic Sling Bag Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11101010,"className":"costume_ep15picnic02_m","name":"Picnic Suspender Costume (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11101011,"className":"costume_ep15picnic01_f","name":"Picnic Lace Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11101012,"className":"costume_ep15picnic02_f","name":"Picnic Frill Costume (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11101013,"className":"costume_ep15unicorn01_m","name":"Unicorn PJs Costume A (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11101014,"className":"costume_ep15unicorn02_m","name":"Unicorn PJs Costume B (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11101015,"className":"costume_ep15unicorn01_f","name":"Unicorn PJs Costume A (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11101016,"className":"costume_ep15unicorn02_f","name":"Unicorn PJs Costume B (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11101017,"className":"costume_7th_britishRoyal_m","name":"Royal Marriage Uniform (Male)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11101018,"className":"costume_7th_britishRoyal_f","name":"Royal Marriage Dress (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Outer","equipType2":"Premium","minLevel":1},{"itemId":11103001,"className":"EP15_helmet_ep15snowknight01","name":"Lofty Snow Knight Helm Costume ","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Helmet","equipType2":"Premium"},{"itemId":11103002,"className":"helmet_nightrabbit","name":"Midnight Bunny Short Ear Hoodie (Female)","type":"Equip","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Hair","equipType2":"Premium","script":{"strArg":"helmet_nightrabbit"}},{"itemId":11105001,"className":"wing_guiltynelaima_1","name":"Goddess Sister's Wing - Death","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11105002,"className":"wing_guiltynelaima_2","name":"Goddess Sister's Wing - Fate","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11105004,"className":"wing_Spreader_backboard","name":"Reservoir of Corruption Back Costume","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11105005,"className":"wing_balloon_nightrabbit","name":"Midnight Bunny Balloon","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11105006,"className":"wing_ep15unicorn","name":"Unicorn PJs Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11105007,"className":"wing_7th_helena","name":"Helena Morpho Butterfly Wing","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Wing","minLevel":1},{"itemId":11106001,"className":"Effect_ep15snowknight_aurora","name":"Lofty Snow Aurora","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"EP15SNOWKNIGHT_EFFECT_Aurora"}},{"itemId":11106002,"className":"Effect_ep15snowknight_snowflake","name":"Lofty Snowflake Sprinkle","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"EP15SNOWKNIGHT_EFFECT_Snowflake"}},{"itemId":11106003,"className":"Effect_nightrabbit","name":"Sleepy Midnight Bunny","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"NIGHTRABBIT_STAMP_EFFECT"}},{"itemId":11106004,"className":"Effect_ep15spring01","name":"Spring Fluff Bouncy Bunny","type":"Equip","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"EffectCostume","minLevel":1,"script":{"strArg":"EP15SPRING01_EFFECT"}},{"itemId":11200002,"className":"unlock_earring_belonging_scroll","name":"Fire Flame Earring Bound Removal Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"EP13_GabijaEarring","numArg1":470}},{"itemId":11200003,"className":"Ticket_earring_raid_1d","name":"Memory of Flame One Entry Voucher (1 Day)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Ticket_earring_raid_1d"}},{"itemId":11200004,"className":"Ticket_earring_raid","name":"Memory of Flame One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Ticket_earring_raid_1d"}},{"itemId":11200005,"className":"Ticket_earring_raid_NoTrade","name":"Memory of Flame One Entry Voucher (Untradable)","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Ticket_earring_raid_1d"}},{"itemId":11200046,"className":"ExchangeACC_Book_470","name":"[Lv.470] Accessory Type Change Tome","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"ExchangeACC_Book_470_1d"}},{"itemId":11200057,"className":"Ticket_RevivalPaulius_Party_Enter_NoTrade","name":"Delmore Battlefield: Goddess One Entry Voucher (Untradable)","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":822}},{"itemId":11200058,"className":"Ticket_RevivalPaulius_Party_Enter","name":"Delmore Battlefield: Goddess One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":822}},{"itemId":11200059,"className":"Ticket_RevivalPaulius_Auto_Enter","name":"Delmore Battlefield (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":821}},{"itemId":11200060,"className":"Ticket_RevivalPaulius_Auto_Enter_NoTrade","name":"Delmore Battlefield (Auto/Solo) One Entry Voucher (Untradable)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":821}},{"itemId":11200061,"className":"Ticket_RevivalPaulius_Auto_Enter_LimitTime","name":"Delmore Battlefield (Auto/Solo) One Entry Voucher (7 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":821}},{"itemId":11200067,"className":"unlock_vasilisa_belonging_scroll","name":"[6th] Vasilisa Equipment Bound Removal Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"unlock_vasilisa_belonging","numArg1":470}},{"itemId":11200069,"className":"Exchange_Weapon_Book_480","name":"[Lv.480] Equipment Type Change Tome","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Exchange_Weapon_Book_480","numArg1":480}},{"itemId":11200070,"className":"ark_decomposition_scroll","name":"[LV10 Ark] Extract Scroll","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"ark_decomposition_scroll","numArg1":10}},{"itemId":11200073,"className":"Exchange_Weapon_Book_480_1d","name":"[Lv.480] Equipment Type Change Tome (1 Day)","type":"Etc","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Exchange_Weapon_Book_480","numArg1":480}},{"itemId":11200078,"className":"unlock_acc_belonging_scroll_470","name":"Isidavie Accessory Bound Removal Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"unlock_acc_belonging","numArg1":470}},{"itemId":11200082,"className":"ark_decomposition_scroll_7d","name":"[LV10 Ark] Extract Scroll (7 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"ark_decomposition_scroll","numArg1":10}},{"itemId":11200083,"className":"ark_decomposition_scroll_1d","name":"[LV10 Ark] Extract Scroll (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"ark_decomposition_scroll","numArg1":10}},{"itemId":11200084,"className":"unlock_acc_belonging_scroll_470_1d","name":"Isidavie Accessory Bound Removal Scroll (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"unlock_acc_belonging","numArg1":470}},{"itemId":11200085,"className":"unlock_vasilisa_belonging_scroll_1d","name":"Vasilisa Equipment Bound Removal Scroll (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"unlock_vasilisa_belonging","numArg1":470}},{"itemId":11200086,"className":"ExchangeACC_Book_470_1d","name":"[Lv.470] Accessory Type Change Tome (1 Day)","type":"Etc","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"ExchangeACC_Book_470_1d"}},{"itemId":11200087,"className":"extract_ticket_cabinet_vibora_1d","name":"Vaivora Extract Voucher (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"extract_vibora"}},{"itemId":11200088,"className":"extract_ticket_cabinet_goddess_1d","name":"Goddess'/Demon God's Armor Extract Voucher (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"extract_goddess"}},{"itemId":11200089,"className":"Premium_SkillReset_Job_1d","name":"Selected Class Skill Reset Potion (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_IS_USE_QUEST_CLEAR_SCROLL","strArg":"SkillResetJob"}},{"itemId":11200090,"className":"Premium_Abillitypoint_Job_1d","name":"Selected Class Attribute Reset Potion (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"AbilityPointReset_Job"}},{"itemId":11200091,"className":"Event_RankReset_Point_Lv4_1d","name":"Class Change Voucher Lv 4 (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"EVENT_RankReset_Point_Lv4","numArg1":3000}},{"itemId":11200092,"className":"AbillityArts_Box_1d","name":"Arts Reset Potion Class Selection Box (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":11200093,"className":"box_balance_care_item_7d","name":"Reset Item Box (7 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_RankReset_Point_Lv4_1d/1;Premium_SkillReset_Job_1d/3;Premium_Abillitypoint_Job_1d/3;AbillityArts_Box_1d/3;unlock_vasilisa_belonging_scroll_1d/8;unlock_acc_belonging_scroll_470_1d/3;ExchangeACC_Book_470_1d/4;extract_ticket_cabinet_goddess_1d/4;extract_ticket_cabinet_vibora_1d/2;ark_decomposition_scroll_1d/1;"}},{"itemId":11200095,"className":"old_raid_reward_box","name":"Raid Reward Box","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ability_Point_Stone/10;misc_glacier_NoTrade/1;Legend_Misc_Mothacc_hard_NoTrade/1;Legend_Misc_Mothacc/1"}},{"itemId":11200098,"className":"box_balance_care_item_1_7d","name":"[Event] Reset Item Box (7 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_RankReset_Point_Lv4_1d/1;Premium_SkillReset_Job_1d/3;Premium_Abillitypoint_Job_1d/3;AbillityArts_Box_1d/3;unlock_vasilisa_belonging_scroll_1d/8;unlock_acc_belonging_scroll_470_1d/3;ExchangeACC_Book_470_1d/4;extract_ticket_cabinet_goddess_1d/4;extract_ticket_cabinet_vibora_1d/2;ark_decomposition_scroll_1d/1;Exchange_Weapon_Book_460_1d/8;gem_extract_free_coupon_1d/1;"}},{"itemId":11200102,"className":"Ticket_RevivalPaulius_Party_Enter_7d","name":"[Event] Delmore Battlefield: Goddess One Entry Voucher (7 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":822}},{"itemId":11200103,"className":"Ticket_Vasilissa_Party_Enter_7d","name":"[Event] Saint's Sacellum: Goddess One Entry Voucher (7 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":818}},{"itemId":11200104,"className":"Ticket_RevivalPaulius_Party_Enter2_7d","name":"[Event] Delmore Battlefield: Goddess One Entry Voucher (7 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":822}},{"itemId":11200105,"className":"Ticket_Vasilissa_Party_Enter2_7d","name":"[Event] Saint's Sacellum: Goddess One Entry Voucher (7 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":818}},{"itemId":11200114,"className":"unlock_earring_belonging_scroll_1d","name":"Fire Flame Earring Team Bound Scroll (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"unlock_earring_team_belonging","numArg1":470}},{"itemId":11200115,"className":"box_balance_care_item_2_7d","name":"[Event] Reset Item Set (7 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_RankReset_Point_Lv4_1d/1;Premium_SkillReset_Job_1d/3;Premium_Abillitypoint_Job_1d/3;AbillityArts_Box_1d/3;unlock_vasilisa_belonging_scroll_1d/8;unlock_acc_belonging_scroll_470_1d/3;ExchangeACC_Book_470_1d/4;extract_ticket_cabinet_goddess_1d/4;extract_ticket_cabinet_vibora_1d/2;ark_decomposition_scroll_1d/1;Exchange_Weapon_Book_460_1d/8;gem_extract_free_coupon_1d/1;unlock_earring_belonging_scroll_1d/1;"}},{"itemId":11200122,"className":"unlock_acc_belonging_scroll_470_Recycle","name":"[Exchange] Isidavie Accessory Bound Removal Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"unlock_acc_belonging","numArg1":470}},{"itemId":11200123,"className":"unlock_acc_belonging_scroll_470_Recycle_3ea","name":"[Exchange] Isidavie Accessory Bound Removal Scroll x3","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"unlock_acc_belonging_scroll_470_Recycle/3;"}},{"itemId":11200125,"className":"Ticket_Jellyzele_Party_Enter_NoTrade","name":"Sinking Seizure: Goddess One Entry Voucher (Untradable)","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":824}},{"itemId":11200126,"className":"Ticket_Jellyzele_Party_Enter","name":"Sinking Seizure: Goddess One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":824}},{"itemId":11200127,"className":"Ticket_Jellyzele_Auto_Enter","name":"Sinking Seizure (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":823}},{"itemId":11200128,"className":"Ticket_Jellyzele_Auto_Enter_NoTrade","name":"Sinking Seizure (Auto/Solo) One Entry Voucher (Untradable)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":823}},{"itemId":11200129,"className":"Ticket_Jellyzele_Auto_Enter_LimitTime","name":"Sinking Seizure (Auto/Solo) One Entry Voucher (7 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":823}},{"itemId":11200130,"className":"Multiple_Token_Jellyzele_Party","name":"Sinking Seizure: Party (Hard) Add. Reward Voucher","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Goddess_Raid_Jellyzele_Party","numArg1":2}},{"itemId":11200131,"className":"unlock_belt_team_belonging_scroll_1d","name":"Belt of Insight Team Bound Scroll (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"unlock_belt_team_belonging","numArg1":470}},{"itemId":11200132,"className":"box_balance_care_item_3_7d","name":"[Event] Reset Item Set (7 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_RankReset_Point_Lv4_1d/1;Premium_SkillReset_Job_1d/3;Premium_Abillitypoint_Job_1d/3;AbillityArts_Box_1d/3;unlock_vasilisa_belonging_scroll_1d/8;unlock_acc_belonging_scroll_470_1d/3;ExchangeACC_Book_470_1d/4;extract_ticket_cabinet_goddess_1d/4;extract_ticket_cabinet_vibora_1d/2;ark_decomposition_scroll_1d/1;Exchange_Weapon_Book_460_1d/8;gem_extract_free_coupon_1d/1;unlock_earring_belonging_scroll_1d/1;unlock_belt_team_belonging_scroll_1d/1;"}},{"itemId":11200133,"className":"Multiple_Token_Jellyzele_Party_NoTrade","name":"Sinking Seizure: Party (Hard) Add. Reward Voucher (Untradable)","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Goddess_Raid_Jellyzele_Party","numArg1":2}},{"itemId":11200134,"className":"box_balance_care_item_1d","name":" [New/Return] Reset Item Box (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_RankReset_Point_Lv4_1d/1;Premium_SkillReset_Job_1d/3;Premium_Abillitypoint_Job_1d/3;AbillityArts_Box_1d/3;unlock_vasilisa_belonging_scroll_1d/8;unlock_acc_belonging_scroll_470_1d/3;ExchangeACC_Book_470_1d/4;extract_ticket_cabinet_goddess_1d/4;extract_ticket_cabinet_vibora_1d/2;ark_decomposition_scroll_1d/1;Exchange_Weapon_Book_460_1d/8;gem_extract_free_coupon_1d/1;unlock_earring_belonging_scroll_1d/1;unlock_belt_team_belonging_scroll_1d/1;"}},{"itemId":11200136,"className":"T_guild_boost_ticket","name":"[Season Server] Guild Growth Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_SEASON_SERVER_GUILD_BOOST","numArg1":1054520}},{"itemId":11200137,"className":"Multiple_Token_RevivalPaulius_Party","name":"Delmore Battlefield: Party (Hard) Add. Reward Voucher","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Goddess_Raid_Delmore_Party","numArg1":2}},{"itemId":11200138,"className":"Multiple_Token_RevivalPaulius_Party_NoTrade","name":"Delmore Battlefield: Party (Hard) Add. Reward Voucher (Untradable)","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Goddess_Raid_Delmore_Party","numArg1":2}},{"itemId":11200139,"className":"relicgem_lvup_scroll_lv2","name":"Res Sacrae Gem Enhance Scroll (Lv.2)","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"RelicGemLVUPScroll","numArg1":2}},{"itemId":11200140,"className":"relicgem_lvup_scroll_lv3","name":"Res Sacrae Gem Enhance Scroll (Lv.3)","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"RelicGemLVUPScroll","numArg1":3}},{"itemId":11200141,"className":"relicgem_lvup_scroll_lv4","name":"Res Sacrae Gem Enhance Scroll (Lv.4)","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"RelicGemLVUPScroll","numArg1":4}},{"itemId":11200142,"className":"relicgem_lvup_scroll_lv6","name":"Res Sacrae Gem Enhance Scroll (Lv.6)","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"RelicGemLVUPScroll","numArg1":6}},{"itemId":11200143,"className":"relicgem_lvup_scroll_lv7","name":"Res Sacrae Gem Enhance Scroll (Lv.7)","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"RelicGemLVUPScroll","numArg1":7}},{"itemId":11200144,"className":"relicgem_lvup_scroll_lv8","name":"Res Sacrae Gem Enhance Scroll (Lv.8)","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"RelicGemLVUPScroll","numArg1":8}},{"itemId":11200145,"className":"relicgem_lvup_scroll_lv9","name":"Res Sacrae Gem Enhance Scroll (Lv.9)","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"RelicGemLVUPScroll","numArg1":9}},{"itemId":11200146,"className":"relicgem_lvup_scroll_lv10","name":"Res Sacrae Gem Enhance Scroll (Lv.10)","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"RelicGemLVUPScroll","numArg1":10}},{"itemId":11200147,"className":"SEASONLETICIA_Multiple_Token_RevivalPaulius_Party","name":"Delmore Battlefield: Party (Hard) Add. Reward Voucher","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Goddess_Raid_Delmore_Party","numArg1":2}},{"itemId":11200148,"className":"SEASONLETICIA_Multiple_Token_Jellyzele_Party","name":"Sinking Seizure: Party (Hard) Add. Reward Voucher","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Goddess_Raid_Jellyzele_Party","numArg1":2}},{"itemId":11200149,"className":"SEASONLETICIA_RevivalPaulius_Auto_Enter","name":"Delmore Battlefield (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":821}},{"itemId":11200152,"className":"SpecialCreateTicket_Item","name":"Special Creation Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SPECIAL_CREATE_TICKET","strArg":"SpecialCreateTicket","numArg1":1}},{"itemId":11200174,"className":"CommonGamble_RankReset_Point_Lv3","name":"Class Change Voucher Lv 3","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_Premium_RankReset_Point_Lv","strArg":"EVENT_RankReset_Point_Lv3","numArg1":1000}},{"itemId":11200175,"className":"Ticket_TurbulentCore_Auto_Enter","name":"Turbulent Core (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":826}},{"itemId":11200176,"className":"Ticket_TurbulentCore_Auto_Enter_NoTrade","name":"Turbulent Core (Auto/Solo) One Entry Voucher (Untradable)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":826}},{"itemId":11200177,"className":"Ticket_TurbulentCore_Auto_Enter_LimitTime","name":"Turbulent Core (Auto/Solo) One Entry Voucher (7 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":826}},{"itemId":11200178,"className":"Ticket_Jellyzele_Party_Enter_7d","name":"Sinking Seizure: Goddess One Entry Voucher (7 Days)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":824}},{"itemId":11200179,"className":"unlock_transmutationSpreader_belonging_scroll_1d","name":"Reservoir/Falouros Equipment Bound Removal Scroll (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"unlock_transmutationSpreader_belonging","numArg1":470}},{"itemId":11200180,"className":"box_balance_care_item_4_7d","name":"[Event] Reset Item Set (7 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_RankReset_Point_Lv4_1d/1;Premium_SkillReset_Job_1d/3;Premium_Abillitypoint_Job_1d/3;AbillityArts_Box_1d/3;unlock_transmutationSpreader_belonging_scroll_1d/8;unlock_acc_belonging_scroll_470_1d/3;ExchangeACC_Book_470_1d/4;extract_ticket_cabinet_goddess_1d/4;extract_ticket_cabinet_vibora_1d/2;ark_decomposition_scroll_1d/1;Exchange_Weapon_Book_480_1d/8;gem_extract_free_coupon_1d/1;unlock_earring_belonging_scroll_1d/1;unlock_belt_team_belonging_scroll_1d/1;"}},{"itemId":11200183,"className":"Premium_reset_package_480","name":"[Lv.480] Premium Reset Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Premium_RankReset/1;Premium_StatReset/1;AbillityArts_Box_Total_3plus1/1;Exchange_Weapon_Book_480/1;"}},{"itemId":11200184,"className":"coin_package_480","name":"Token Sack (Vakarine)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_pvp_mine2_NotLimit_10000/10;VakarineCertificateCoin_10000p/10;"}},{"itemId":11200185,"className":"seletbox_ticket_bountyhunt_ep14_hard","name":"[Lv.480] Bounty Hunt Superior Written Order Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11200186,"className":"misc_reinforce_percentUp_480_NoTrade_11ea_Recycle","name":"[Exchange] [Lv.480] Enhance Aid (Untradable) x10+1","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_reinforce_percentUp_480_NoTrade/11;"}},{"itemId":11200187,"className":"Gacha_ran_SKLGEM_ReCycle","name":"[Exchange] Random Stat Skill Gem Cube","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_SKILL_GEM_CUBE_RAN","strArg":"NOTRADE","numArg1":480}},{"itemId":11200188,"className":"unlock_transmutationSpreader_belonging_scroll_ReCycle","name":"[Exchange] Reservoir/Falouros Equipment Bound Removal Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"unlock_transmutationSpreader_belonging","numArg1":470}},{"itemId":11200189,"className":"unlock_transmutationSpreader_belonging_scroll_ReCycle_8ea","name":"[Exchange] Reservoir/Falouros Equipment Bound Removal Scroll x8","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"unlock_transmutationSpreader_belonging_scroll_ReCycle/8;"}},{"itemId":11200192,"className":"Ticket_TurbulentCore_Party_Enter","name":"Turbulent Core: Goddess One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":827}},{"itemId":11200197,"className":"Ticket_TurbulentCore_Party_Enter_NoTrade","name":"Turbulent Core: Goddess One Entry Voucher (Untradable)","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":827}},{"itemId":11200199,"className":"unlock_belt_team_belonging_scroll_470_Recycle","name":"[Exchange] Belt of Insight Team Bound Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"unlock_belt_team_belonging","numArg1":470}},{"itemId":11200201,"className":"Multiple_Token_ChallengeMode_Auto","name":"Challenge Mode Add. Reward Voucher","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"ChallengeMode_Auto","numArg1":2}},{"itemId":11200202,"className":"Multiple_Token_ChallengeMode_Auto_NoTrade","name":"Challenge Mode Add. Reward Voucher (Untradable)","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"ChallengeMode_Auto","numArg1":2}},{"itemId":11200203,"className":"Multiple_Token_EarringRaid","name":"Memory of Flame Add. Reward Voucher","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"EarringRaid","numArg1":2}},{"itemId":11200204,"className":"Multiple_Token_EarringRaid_NoTrade","name":"Memory of Flame Add. Reward Voucher (Untradable)","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"EarringRaid","numArg1":2}},{"itemId":11200205,"className":"Multiple_Token_RevivalPaulius_Auto","name":"Delmore Battlefield: Solo/Auto Add. Reward Voucher","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Goddess_Raid_Delmore_Auto","numArg1":2}},{"itemId":11200206,"className":"Multiple_Token_RevivalPaulius_Auto_NoTrade","name":"Delmore Battlefield: Solo/Auto Add. Reward Voucher (Untradable)","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Goddess_Raid_Delmore_Auto","numArg1":2}},{"itemId":11200207,"className":"Multiple_Token_Jellyzele_Auto","name":"Sinking Seizure: Solo/Auto Add. Reward Voucher","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Goddess_Raid_Jellyzele_Auto","numArg1":2}},{"itemId":11200208,"className":"Multiple_Token_Jellyzele_Auto_NoTrade","name":"Sinking Seizure: Solo/Auto Add. Reward Voucher (Untradable)","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Goddess_Raid_Jellyzele_Auto","numArg1":2}},{"itemId":11200209,"className":"Multiple_Token_TurbulentCore_Auto","name":"Turbulent Core: Solo/Auto Add. Reward Voucher","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Goddess_Raid_TurbulentCore_Auto","numArg1":2}},{"itemId":11200210,"className":"Multiple_Token_TurbulentCore_Auto_NoTrade","name":"Turbulent Core: Solo/Auto Add. Reward Voucher (Untradable)","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Goddess_Raid_TurbulentCore_Auto","numArg1":2}},{"itemId":11200211,"className":"newcle_bag","name":"[Goddess' Grace ] Nucle Sack","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER","strArg":"misc_ore22","numArg1":5000}},{"itemId":11200212,"className":"package_select_jagure_weapon","name":"[Jaguar Package] Weapon Set Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GIVE_WEAPON_JAGUAR","strArg":"jaguar_weapon_package"}},{"itemId":11200213,"className":"package_select_jagure_armor","name":"[Jaguar Package] Leather Armor Set Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GIVE_ARMOR_JAGUAR","strArg":"jaguar_armor_package"}},{"itemId":11200214,"className":"package_select_jagure_belt","name":"[Jaguar Package] Belt of Insight Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GIVE_BELT_JAGUAR","strArg":"jaguar_belt_package"}},{"itemId":11200215,"className":"package_select_jagure_shoulder","name":"[Jaguar Package] Spaulder of Ferocity Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GIVE_SHOULDER_JAGUAR","strArg":"jaguar_shoulder_package"}},{"itemId":11200217,"className":"unlock_shoulder_team_belonging_scroll_1d","name":"Spaulder of Ferocity Team Bound Scroll (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"unlock_shoulder_team_belonging","numArg1":470}},{"itemId":11200218,"className":"unlock_shoulder_team_belonging_scroll_480_Recycle","name":"[Exchange] Spaulder of Ferocity Team Bound Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"unlock_shoulder_team_belonging","numArg1":470}},{"itemId":11200219,"className":"box_balance_care_item_5_7d","name":"[Event] Reset Item Set (7 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_RankReset_Point_Lv4_1d/1;Premium_SkillReset_Job_1d/3;Premium_Abillitypoint_Job_1d/3;AbillityArts_Box_1d/3;unlock_transmutationSpreader_belonging_scroll_1d/8;unlock_acc_belonging_scroll_490_1d/3;ExchangeACC_Book_470_1d/4;ExchangeACC_Book_490_1d/4;extract_ticket_cabinet_goddess_1d/4;extract_ticket_cabinet_vibora_1d/2;ark_decomposition_scroll_1d/1;Exchange_Weapon_Book_480_1d/8;gem_extract_free_coupon_1d/1;unlock_earring_belonging_scroll_1d/1;unlock_belt_team_belonging_scroll_1d/1;unlock_shoulder_team_belonging_scroll_1d/1;"}},{"itemId":11200220,"className":"Ticket_Rozethemisterable_Auto_Enter","name":"Thurible of Salvation (Auto/Solo) One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":828}},{"itemId":11200221,"className":"Ticket_Rozethemisterable_Auto_Enter_NoTrade","name":"Thurible of Salvation (Auto/Solo) One Entry Voucher (Untradable)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":828}},{"itemId":11200222,"className":"Ticket_Rozethemisterable_Auto_Enter_LimitTime","name":"Thurible of Salvation (Auto/Solo) One Entry Voucher (7 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":828}},{"itemId":11200223,"className":"Ticket_Rozethemisterable_Party_Enter","name":"Thurible of Salvation: Goddess One Entry Voucher","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":829}},{"itemId":11200224,"className":"Ticket_Rozethemisterable_Party_Enter_NoTrade","name":"Thurible of Salvation: Goddess One Entry Voucher (Untradable)","type":"Consume","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_IndunWeeklyEnteredCount_NumberArg1","numArg1":829}},{"itemId":11200225,"className":"Multiple_Token_Rozethemisterable_Solo","name":"Thurible of Salvation: Solo Add. Reward Voucher","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Goddess_Raid_Roze_Solo","numArg1":2}},{"itemId":11200226,"className":"Multiple_Token_Rozethemisterable_Solo_NoTrade","name":"Thurible of Salvation: Solo Add. Reward Voucher","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Goddess_Raid_Roze_Solo","numArg1":2}},{"itemId":11200227,"className":"Multiple_Token_Rozethemisterable_Party","name":"Thurible of Salvation: Party (Hard) Add. Reward Voucher","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Goddess_Raid_Roze_Party","numArg1":2}},{"itemId":11200228,"className":"Multiple_Token_Rozethemisterable_Party_NoTrade","name":"Thurible of Salvation: Party (Hard) Add. Reward Voucher","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Goddess_Raid_Roze_Party","numArg1":2}},{"itemId":11200233,"className":"select_480_armor_material","name":"+15 Falouros Armor Set Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11200234,"className":"select_480_weapon","name":"+15 Reservoir M.Weapon Set Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11200235,"className":"select_480_subweapon","name":"+15 Reservoir S.Weapon Set Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11200236,"className":"select_470_accesory","name":"+15 Isidavie Accessory Set Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11200237,"className":"box_balance_care_item_5","name":"Reset Item Round-up Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_RankReset_Point_Lv4_1d/1;Premium_SkillReset_Job_1d/3;Premium_Abillitypoint_Job_1d/3;AbillityArts_Box_1d/3;unlock_transmutationSpreader_belonging_scroll_1d/8;unlock_acc_belonging_scroll_470_1d/3;ExchangeACC_Book_470_1d/4;extract_ticket_cabinet_goddess_1d/4;extract_ticket_cabinet_vibora_1d/2;ark_decomposition_scroll_1d/1;Exchange_Weapon_Book_480_1d/8;gem_extract_free_coupon_1d/1;unlock_earring_belonging_scroll_1d/1;unlock_belt_team_belonging_scroll_1d/1;unlock_shoulder_team_belonging_scroll_1d/1;"}},{"itemId":11200238,"className":"2023_package_all_newbie","name":"2023 [New/Return] Growth Support Package","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"select_480_armor_material/1;select_480_weapon/2;select_480_subweapon/2;select_470_accesory/1;Seal_Boruta_Common/1/Level/3/TeamBelonging/1;selectbox_Gem_Relic_Cyan/1;selectbox_Gem_Relic_Magenta/1;selectbox_Gem_Relic_Black/1;relicgem_lvup_scroll_lv5/3;open_ticket_cabinet_vibora_lv4/3;open_ticket_cabinet_goddess_lv3/4;open_ticket_cabinet_ark/1;ark_lvup_scroll_lv10/1;Jumping_expCard_480Lv/1;Event_JobexpCard_BOX/1;piece_fierce_shoulder_high_NoTrade/1;piece_penetration_belt_high/1;piece_GabijaEarring_select_job_NoTrade/1;piece_EP14_GoddessIcor_Armor_high_NoTrade/4;piece_EP14_GoddessIcor_Weapon_high_NoTrade/4;Relic_exp_token_refine/3620;Ability_Point_Stone_10000/200;VakarineCertificateCoin_10000p/30;misc_pvp_mine2_NotLimit_10000/30;box_balance_care_item_5/3"}},{"itemId":11200239,"className":"202301_package_premium_A","name":"2023 New Year's Special Package A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_TurbulentCore_Auto_Enter_NoTrade/50;Multiple_Token_TurbulentCore_Auto_NoTrade/50;Ticket_Jellyzele_Auto_Enter_NoTrade/50;Multiple_Token_Jellyzele_Auto_NoTrade/50;Ticket_RevivalPaulius_Auto_Enter_NoTrade/50;Multiple_Token_RevivalPaulius_Auto_NoTrade/50;Ticket_earring_raid_NoTrade/30;Multiple_Token_EarringRaid_NoTrade/30;secret_medicine_str_470/20;secret_medicine_int_470/20;"}},{"itemId":11200240,"className":"ExchangeACC_Book_490","name":"[Lv.490] Accessory Type Change Tome","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"ExchangeACC_Book_490_1d"}},{"itemId":11200241,"className":"202301_package_premium_B","name":"2023 New Year's Special Package B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_TurbulentCore_Party_Enter_NoTrade/10;Multiple_Token_TurbulentCore_Party_NoTrade/10;Ticket_Jellyzele_Party_Enter_NoTrade/10;Multiple_Token_Jellyzele_Party_NoTrade/10;Ticket_RevivalPaulius_Party_Enter_NoTrade/10;Multiple_Token_RevivalPaulius_Party_NoTrade/10;Ticket_earring_raid_NoTrade/30;Multiple_Token_EarringRaid_NoTrade/30;secret_medicine_str_470/10;secret_medicine_int_470/10;"}},{"itemId":11200242,"className":"202301_package_premium_S","name":"2023 New Year's Special Package S","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_TurbulentCore_Party_Enter_NoTrade/10;Ticket_TurbulentCore_Auto_Enter_NoTrade/50;Multiple_Token_TurbulentCore_Party_NoTrade/10;Multiple_Token_TurbulentCore_Auto_NoTrade/50;Ticket_Jellyzele_Party_Enter_NoTrade/10;Ticket_Jellyzele_Auto_Enter_NoTrade/50;Multiple_Token_Jellyzele_Party_NoTrade/10;Multiple_Token_Jellyzele_Auto_NoTrade/50;Ticket_RevivalPaulius_Party_Enter_NoTrade/10;Ticket_RevivalPaulius_Auto_Enter_NoTrade/50;Multiple_Token_RevivalPaulius_Party_NoTrade/10;Multiple_Token_RevivalPaulius_Auto_NoTrade/50;Ticket_earring_raid_NoTrade/60;Multiple_Token_EarringRaid_NoTrade/60;secret_medicine_str_470/20;secret_medicine_int_470/20;certificate_RidePet_PolarReindeer_1/1;"}},{"itemId":11200257,"className":"package_select_spearmaster_weapon","name":"[Shenji Package] Weapon Set Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GIVE_WEAPON_SPEARMASTER","strArg":"spearmaster_weapon_package"}},{"itemId":11200258,"className":"package_select_melee_armor","name":"[Physical] Spaulder of Ferocity Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GIVE_ARMOR_MELEE","strArg":"melee_armor_package"}},{"itemId":11200259,"className":"package_select_melee_belt","name":"[Physical] Belt of Insight Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GIVE_BELT_MELEE","strArg":"melee_belt_package"}},{"itemId":11200260,"className":"package_select_melee_shoulder","name":"[Physical] Spaulder of Ferocity Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GIVE_SHOULDER_MELEE","strArg":"melee_shoulder_package"}},{"itemId":11200261,"className":"package_select_magic_armor","name":"[Magic] Spaulder of Ferocity Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GIVE_ARMOR_MAGIC","strArg":"magic_armor_package"}},{"itemId":11200262,"className":"package_select_magic_belt","name":"[Magic] Belt of Insight Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GIVE_BELT_MAGIC","strArg":"magic_belt_package"}},{"itemId":11200263,"className":"package_select_magic_shoulder","name":"[Magic] Spaulder of Ferocity Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_GIVE_SHOULDER_MAGIC","strArg":"magic_shoulder_package"}},{"itemId":11200264,"className":"unlock_acc_belonging_scroll_490_Recycle","name":"[Exchange] [Lv.490] Accessory Bound Removal Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"unlock_acc_belonging","numArg1":490}},{"itemId":11200265,"className":"unlock_acc_belonging_scroll_490_Recycle_3ea","name":"[Exchange] [Lv.490] Accessory Bound Removal Scroll x3","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"unlock_acc_belonging_scroll_490_Recycle/3;"}},{"itemId":11200266,"className":"unlock_acc_belonging_scroll_490","name":"[Lv.490] Accessory Bound Removal Scroll","type":"Consume","group":"Premium","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"unlock_acc_belonging","numArg1":490}},{"itemId":11200267,"className":"unlock_acc_belonging_scroll_490_1d","name":"[Lv.490] Accessory Bound Removal Scroll (1 Day)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"unlock_acc_belonging","numArg1":490}},{"itemId":11200268,"className":"ExchangeACC_Book_490_1d","name":"[Lv.490] Accessory Type Change Tome (1 Day)","type":"Etc","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"ExchangeACC_Book_490_1d"}},{"itemId":11200270,"className":"lv480_armor_lvup_scroll_lv10","name":"Falouros Armor Enhance Scroll (+10)","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"armor_reinforce_scroll","numArg1":480,"numArg2":10}},{"itemId":11200271,"className":"lv480_weapon_lvup_scroll_lv10","name":"Reservoir Weapon Enhance Scroll (+10)","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"weapon_reinforce_scroll","numArg1":480,"numArg2":10}},{"itemId":11200272,"className":"Multiple_Token_BridgeWailingParty","name":"Wailing Graveyard","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"BridgeWailing_Party","numArg1":2}},{"itemId":11200273,"className":"Multiple_Token_BridgeWailingParty_NoTrade","name":"Wailing Graveyard: Multiply Token (Untradable)","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"BridgeWailing_Party","numArg1":2}},{"itemId":11200274,"className":"Ticket_BridgeWailing_Party_Enter","name":"Wailing Graveyard One Entry Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_BridgeWailing_Party_Entrance_Ticket","numArg1":832}},{"itemId":11200275,"className":"Ticket_BridgeWailing_Party_Enter_NoTrade","name":"Wailing Graveyard One Entry Voucher (Untradable)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_BridgeWailing_Party_Entrance_Ticket","numArg1":832}},{"itemId":11200276,"className":"Ticket_BridgeWailing_Party_Enter_LimitTime","name":"Wailing Graveyard One Entry Voucher (7 Days)","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_BridgeWailing_Party_Entrance_Ticket","numArg1":832}},{"itemId":11200277,"className":"lv480_aether_lvup_scroll_lv100","name":"[Lv.480] Aether Gem LV UP Scroll (+100)","type":"Consume","group":"Premium","weight":1,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"aether_reinforce_scroll","numArg1":480,"numArg2":100}},{"itemId":11201009,"className":"Multiple_Token_TurbulentCore_Party","name":"Turbulent Core: Party (Hard) Add. Reward Voucher","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Goddess_Raid_TurbulentCore_Party","numArg1":2}},{"itemId":11201010,"className":"Multiple_Token_TurbulentCore_Party_NoTrade","name":"Turbulent Core: Party (Hard) Add. Reward Voucher (Untradable)","type":"Etc","group":"Premium","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Goddess_Raid_TurbulentCore_Party","numArg1":2}},{"itemId":11205001,"className":"certificate_RidePet_scooter","name":"Mount Voucher - Popo Scooter","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REGEDIT_RIDE_PET","strArg":"RidePet_15"}},{"itemId":11205002,"className":"give_SpearMaster_Vibora_NoTrade","name":"Vaivora Vision - The Dragon and the Tiger Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT_NOTRADE","strArg":"TSP04_128_3/1;"}},{"itemId":11205003,"className":"spearmaster_standard_class_pack","name":"Shenji Standard Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"UnlockQuest_OverAchieveClear_Char1_24_Job/1;give_SpearMaster_Vibora_NoTrade/1;UnlockQuest_OverAchieveClear_Char1_24_Costume/1;Premium_RankReset/1;"}},{"itemId":11205004,"className":"spearmaster_complete_class_pack","name":"Shenji Complete Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"UnlockQuest_OverAchieveClear_Char1_24_Job/1;open_ticket_cabinet_vibora_lv4/1;UnlockQuest_OverAchieveClear_Char1_24_Costume/1;package_select_spearmaster_weapon/1;package_select_melee_armor/1;package_select_melee_belt/1;package_select_melee_shoulder/1;piece_GabijaEarring_select_job/1;Event_JobexpCard_BOX/1;Jumping_expCard_480Lv/1;Premium_RankReset/1;Ability_Point_Stone_10000/200;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;VakarineCertificateCoin_10000p/20;misc_pvp_mine2_NotLimit_10000/20;"}},{"itemId":11205005,"className":"Special_Gift_Box_Leticia_2302","name":"Legend Card Gift Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_2210","strArg":"selectbox_NoTrade_Leg_Card_Lv10/2;Ticket_TurbulentCore_Party_Enter/15;Ticket_Jellyzele_Party_Enter/30;Leticia_Card_Lv9_3ea_Box/1;WeeklyBossReductionPotion/50;secret_medicine_str_470/50;secret_medicine_int_470/50;"}},{"itemId":11205006,"className":"selectbox_ep15snowknight01","name":"Lofty Snow Squire Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11205007,"className":"selectbox_ep15snowknight02","name":"Lofty Snow Knight Costume Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11205008,"className":"Special_Gift_Box_Leticia_2303","name":"2023 Leticia's Entry Voucher Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_2210","strArg":"selectbox_NoTrade_Leg_Card_Lv10/2;Ticket_TurbulentCore_Party_Enter/15;Ticket_Jellyzele_Party_Enter/30;Leticia_Card_Lv9_3ea_Box/1;WeeklyBossReductionPotion/50;secret_medicine_str_470/50;secret_medicine_int_470/50;"}},{"itemId":11205009,"className":"selectbox_nightrabbit01","name":"Midnight Bunny Costume Set Selection Box","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11205010,"className":"egg_pet_nightrabbit","name":"Midnight Bunny Egg","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PREMIUM_EGG","strArg":"pet_nightrabbit","numArg1":38}},{"itemId":11205011,"className":"package_2023_nightrabbit","name":"Midnight Bunny Package","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_2210","strArg":"egg_pet_nightrabbit/1;Effect_nightrabbit/1;wing_balloon_nightrabbit/1;selectbox_nightrabbit01/1;"}},{"itemId":11205012,"className":"costume_set_nightrabbit01_m","name":"Midnight Bunny Costume Box (Male)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"costume_nightrabbit01_m/1;Hat_nightrabbit/1;"}},{"itemId":11205013,"className":"costume_set_nightrabbit01_f","name":"Midnight Bunny Costume Box (Female)","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"costume_nightrabbit01_f/1;helmet_nightrabbit/1;"}},{"itemId":11205014,"className":"Special_Gift_Box_Leticia_2304","name":"2023 Leticia's Treasure Box (April)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_2210","strArg":"Ticket_Rozethemisterable_Party_Enter/25;Multiple_Token_Rozethemisterable_Party/15;Ticket_TurbulentCore_Party_Enter/20;Ticket_Jellyzele_Party_Enter/30;WeeklyBossReductionPotion/50;secret_medicine_str_470/50;secret_medicine_int_470/50;"}},{"itemId":11205015,"className":"selectbox_ep15spring01","name":"Spring Fluff Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11205016,"className":"costume_set_ep15spring01_m","name":"Spring Fluff Costume Set (Male)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"costume_ep15spring01_m/1;Hat_ep15spring01/1;"}},{"itemId":11205017,"className":"costume_set_ep15spring01_f","name":"Spring Fluff Costume Set (Female)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"costume_ep15spring01_f/1;Hat_ep15spring01/1;"}},{"itemId":11205018,"className":"package_2023_ep15spring01","name":"Spring Fluff Package","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_2210","strArg":"selectbox_ep15spring01/1;ep15spring01_thmace/1;ep15spring01_mace/1;ep15spring01_rapier/1;ep15spring01_shield/1;"}},{"itemId":11205019,"className":"certificate_RidePet_ep15picnic","name":"Mount Voucher - Picnic Blanket","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REGEDIT_RIDE_PET","strArg":"RidePet_16"}},{"itemId":11205020,"className":"selectbox_ep15picnic01","name":"Picnic Costume Selection Box (A)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11205021,"className":"selectbox_ep15picnic02","name":"Picnic Costume Selection Box (B)","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11205022,"className":"TOSW_Event_Open_Attendance_01","name":"[W] Day 1 Special Attendance Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"box_GACHA_HAIRACC_ReSale_001_4_NoTrade/5;open_ticket_cabinet_goddess_lv3/4;open_ticket_cabinet_vibora_lv4/2;Mic/5;Relic_exp_token_refine/4930;"}},{"itemId":11205023,"className":"TOSW_Event_Open_Attendance_02","name":"[W] Day 2 Special Attendance Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Mythic_Auto_Hard/50;ChallengeModeReset_NoTrade/20;relicgem_lvup_scroll_lv7/1;Premium_Enchantchip_CT/100;Mic/5;Premium_boostToken06/1;"}},{"itemId":11205024,"className":"TOSW_Event_Open_Attendance_03","name":"[W] Day 3 Special Attendance Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"piece_GabijaEarring_select_job_NoTrade_Belonging/2;box_balance_care_item_5/1;misc_reinforce_percentUp_480_NoTrade/200;misc_pvp_mine2_NotLimit_10000/30;VakarineCertificateCoin_50000p/10;"}},{"itemId":11205025,"className":"TOSW_Event_Open_Attendance_04","name":"[W] Day 4 Special Attendance Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Ticket_Jellyzele_Auto_Enter_NoTrade/5;Ticket_RevivalPaulius_Auto_Enter_NoTrade/5;Legend_Giltine_Raid_Entrance_Ticket/10;RestartCristal/10;Mic/5;"}},{"itemId":11205026,"className":"TOSW_Event_Open_Attendance_05","name":"[W] Day 5 Special Attendance Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"piece_penetration_belt_high_Belonging/1;piece_fierce_shoulder_high_NoTrade_Belonging/2;misc_reinforce_percentUp_490_NoTrade/200;"}},{"itemId":11205027,"className":"TOSW_Event_Open_Attendance_06","name":"[W] Day 6 Special Attendance Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"piece_EP14_GoddessIcor_Armor_high_NoTrade_Belonging/4;piece_EP14_GoddessIcor_Weapon_high_NoTrade_Belonging/4;EngraveSlotExtension_Ticket_30d_30d/1;Ticket_TurbulentCore_Auto_Enter_NoTrade/10;Ticket_Rozethemisterable_Auto_Enter_NoTrade/10;"}},{"itemId":11205028,"className":"TOSW_Event_Open_Attendance_07","name":"[W] Day 7 Special Attendance Box","type":"Consume","group":"Premium","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"randombox_AssistorCard/10;Ticket_Rozethemisterable_Party_Enter_NoTrade/3;box_GACHA_HAIRACC_ReSale_001_4_NoTrade/5;PremiumToken_7d_Steam/1;RestartCristal/10;Mic/5;"}},{"itemId":11205029,"className":"certificate_RidePet_Cloudkepa","name":"Mount Voucher - Kepa Above the Clouds","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REGEDIT_RIDE_PET","strArg":"RidePet_17"}},{"itemId":11205030,"className":"Special_Gift_Box_Leticia_2305","name":"2023 Leticia's Treasure Box (May)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_2210","strArg":"selectbox_NoTrade_Leg_Card_Lv10_2/2;Ticket_Rozethemisterable_Party_Enter/20;Multiple_Token_Rozethemisterable_Party/10;WeeklyBossReductionPotion/50;secret_medicine_str_470/50;secret_medicine_int_470/50;"}},{"itemId":11205031,"className":"selectbox_NoTrade_Leg_Card_Lv10_2","name":"10 Star Legend Card Selection Album #2","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":440}},{"itemId":11205032,"className":"selectbox_Gem_High_480","name":"[Lv.480] Aether Gem Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"OnlyTeamTrade","numArg1":440}},{"itemId":11205033,"className":"tosw_2304_package_1a","name":"[W] Total Growth Package A","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Relic_exp_token_refine/5420;relicgem_lvup_scroll_lv9/2;selectbox_Gem_Relic_Cyan/1;selectbox_Gem_Relic_Magenta/1;selectbox_Gem_Relic_Black/1;misc_Ectonite_Care/10000;misc_pvp_mine2_NotLimit_10000/10;VakarineCertificateCoin_50000p/4;"}},{"itemId":11205034,"className":"tosw_2304_package_1b","name":"[W] Total Growth Package B","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"lv480_aether_lvup_scroll_lv100/2;selectbox_Gem_High_480/2;misc_Ether_Gem_Socket_480_NoTrade/2;BerniceDEFpotion/10;secret_medicine_str_470/5;secret_medicine_int_470/5;"}},{"itemId":11205035,"className":"tosw_2304_package_1c","name":"[W] Total Growth Package C","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"randombox_AssistorCard/10;Ancient_CardBook_ALL/20;Drug_AddMaxWeight3/5;HiddenAbility_MasterPiece_Fragment/40;Ability_Point_Stone_10000/50;Ancient_boostToken/3;RestartCristal/10;"}},{"itemId":11205036,"className":"tosw_2304_package_4a","name":"[W] Growth All-in-One Package","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"tosw_2304_package_1a/1;tosw_2304_package_1b/1;tosw_2304_package_1c/1;Premium_boostToken06/1;open_ticket_cabinet_ark/1;open_ticket_cabinet_vibora_lv4/2;ark_lvup_scroll_lv10/1;"}},{"itemId":11205037,"className":"tosw_2304_package_2a","name":"[W] Enhance Package A","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_transmutationSpreader_NoTrade/550;newcle_siera_big_set/4;misc_BlessedStone/200;VakarineCertificateCoin_50000p/4;piece_EP14_GoddessIcor_Weapon_high_NoTrade/3;"}},{"itemId":11205038,"className":"tosw_2304_package_2b","name":"[W] Enhance Package B","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_leatherFalouros_NoTrade/550;newcle_siera_big_set/4;misc_BlessedStone/200;VakarineCertificateCoin_50000p/4;piece_EP14_GoddessIcor_Armor_high_NoTrade/3;"}},{"itemId":11205039,"className":"tosw_2304_package_2c","name":"[W] Enhance Package C","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_Premium_reinforce_percentUp_460_100plus10/1;misc_reinforce_percentUp_480_NoTrade/500;misc_reinforce_percentUp_490_NoTrade/100;misc_pvp_mine2_NotLimit_10000/5;"}},{"itemId":11205040,"className":"tosw_2304_package_4b","name":"[W] Enhance All-in-One Package","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"tosw_2304_package_2a/1;tosw_2304_package_2b/1;tosw_2304_package_2c/1;piece_fierce_shoulder_high_NoTrade/2;piece_penetration_belt_high/2;piece_GabijaEarring_select_job_NoTrade/2;"}},{"itemId":11205041,"className":"tosw_2304_package_3a","name":"[W] Enhance Plus Package A","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_transmutationSpreader_NoTrade/500;misc_high_transmutationSpreader_NoTrade/500;newcle_siera_big_set/6;misc_BlessedStone/300;VakarineCertificateCoin_50000p/6;piece_EP14_GoddessIcor_Weapon_high_NoTrade/6;"}},{"itemId":11205042,"className":"tosw_2304_package_3b","name":"[W] Enhance Plus Package B","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_leatherFalouros_NoTrade/500;misc_hornFalouros_NoTrade/500;newcle_siera_big_set/6;misc_BlessedStone/300;VakarineCertificateCoin_50000p/6;piece_EP14_GoddessIcor_Armor_high_NoTrade/6;"}},{"itemId":11205043,"className":"tosw_2304_package_3c","name":"[W] Enhance Plus Package C","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"misc_ribbonRoze_NoTrade/550;newcle_siera_big_set/4;misc_BlessedStone/200;VakarineCertificateCoin_50000p/4;piece_EP14_GoddessIcor_Weapon_high_NoTrade/1;piece_EP14_GoddessIcor_Armor_high_NoTrade/1;"}},{"itemId":11205044,"className":"tosw_2304_package_4c","name":"[W] Enhance Plus All-in-One Package","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"tosw_2304_package_3a/1;tosw_2304_package_3b/1;tosw_2304_package_3c/1;certificate_RidePet_Cloudkepa/1;Hat_Kepaberet/1;piece_fierce_shoulder_high_NoTrade/3;piece_penetration_belt_high/3;piece_GabijaEarring_select_job_NoTrade/3;"}},{"itemId":11205045,"className":"give_Engineer_Vibora_NoTrade","name":"Vaivora Vision - MAX Power Voucher","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT_NOTRADE","strArg":"TBW04_126_7/1;"}},{"itemId":11205046,"className":"Special_Gift_Box_Leticia_2306","name":"2023 Leticia's Treasure Box (June)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_2210","strArg":"selectbox_NoTrade_Leg_Card_Lv10_2/2;Ticket_Rozethemisterable_Party_Enter/20;Multiple_Token_Rozethemisterable_Party/10;WeeklyBossReductionPotion/50;secret_medicine_str_470/50;secret_medicine_int_470/50;"}},{"itemId":11205049,"className":"certificate_RidePet_dragonboat","name":"Mount Voucher - Dragon Boat","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REGEDIT_RIDE_PET","strArg":"RidePet_18"}},{"itemId":11205050,"className":"engineer_standard_class_pack","name":"Engineer Standard Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"UnlockQuest_OverAchieveClear_Char3_23_Job/1;give_Engineer_Vibora_NoTrade/1;UnlockQuest_OverAchieveClear_Char3_23_Costume/1;Premium_RankReset/1;"}},{"itemId":11205051,"className":"engineer_complete_class_pack","name":"Engineer Complete Package","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"UnlockQuest_OverAchieveClear_Char3_23_Job/1;open_ticket_cabinet_vibora_lv4/1;UnlockQuest_OverAchieveClear_Char3_23_Costume/1;select_480_weapon/2;select_480_subweapon/2;select_480_armor_material/1;select_470_accesory/1;package_select_melee_belt/1;package_select_melee_shoulder/1;piece_GabijaEarring_select_job/1;Event_JobexpCard_BOX/1;Jumping_expCard_480Lv/1;Premium_RankReset/1;Ability_Point_Stone_10000/200;EVENT_1811_NEWCHARACTER_BARRACK_SLOT/1;VakarineCertificateCoin_10000p/20;misc_pvp_mine2_NotLimit_10000/20;"}},{"itemId":11205052,"className":"selectbox_ep15unicorn01","name":"Unicorn PJs Costume Selection Box A","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11205053,"className":"selectbox_ep15unicorn02","name":"Unicorn PJs Costume Selection Box B","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11205054,"className":"Special_Gift_Box_Leticia_2307","name":"2023 Leticia's Treasure Box (July)","type":"Consume","group":"Premium","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GIFT_BOX_LETICIA_2210","strArg":"selectbox_NoTrade_Leg_Card_Lv10_2/2;Ticket_Rozethemisterable_Party_Enter/20;Multiple_Token_Rozethemisterable_Party/10;WeeklyBossReductionPotion/50;secret_medicine_str_470/50;secret_medicine_int_470/50;"}},{"itemId":11205060,"className":"selectbox_7th_britishRoyal","name":"Royal Marriage Costume Selection Box","type":"Consume","group":"Premium","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11205061,"className":"certificate_RidePet_unicorn","name":"Mount Voucher - Unicorn","type":"Consume","group":"Premium","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REGEDIT_RIDE_PET","strArg":"RidePet_19"}},{"itemId":92010,"className":"EP12_2_D_DCAPITAL_108_MQ11_ITEM_01","name":"Raganosis Blood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":92012,"className":"EP12_2_D_DCAPITAL_108_MQ13_ITEM_01","name":"Cursed Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":92100,"className":"D_DCAPITAL_108_SECRET_PAPER","name":"Ripped Ancient Book page","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":92101,"className":"EP13_F_SIAULIAI_4_MQ_02_ITEM","name":"Remote Control Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EP13_F_SIAULIAI_4_MQ_02_ITEM"}},{"itemId":92102,"className":"EP13_F_SIAULIAI_4_MQ_02_ITEM2","name":"Remote Control Magic Bomb Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":92103,"className":"QuestRewardBox_SIAUL_WEST_KNIGHT","name":"Quest Reward Selection Box - Talk to Knight Titas (3)","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":92104,"className":"QuestRewardBox_SOUT_Q_01","name":"Quest Reward Selection Box - Investigating Miners' Village (1)","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":92105,"className":"QuestRewardBox_DCAPITAL53_1_MQ_06","name":"Quest Reward Selection Box - Message of the Goddesses","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":92106,"className":"QuestRewardBox_CHAPLE575_MQ_09","name":"Quest Reward Selection Box - Beyond the Darkness","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":92107,"className":"QuestRewardBox_GELE573_MQ_08","name":"Quest Reward Selection Box - Foreseen Crisis (3)","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":92108,"className":"QuestRewardBox_ROKAS29_MQ6","name":"Quest Reward Selection Box - Historian Rexipher's Research (5)","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":92109,"className":"QuestRewardBox_FTOWER43_MQ_06","name":"Quest Reward Selection Box - Lunatic Wizard (5)","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":645002,"className":"D_Bube_Mane","name":"Vubbe Magic Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":20,"sellPrice":4,"minLevel":1},{"itemId":645633,"className":"PILGRIM_36_2_SQ_090_ITEM_2","name":"Comprehensive Research Data","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":1,"minLevel":1,"script":{"function":"SCR_USE_PILGRIM_36_2_SQ_090_ITEM_2"}},{"itemId":647043,"className":"PVP_MINE_ESCAPE_ITEM","name":"[Gemstone Feud] Purifier Pendant","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"minLevel":1,"script":{"function":"SCR_USE_ITEM_PVP_MINE_ESCAPE","strArg":"IgnoreHoldItem"}},{"itemId":650011,"className":"Return_Scroll","name":"Orb of Nostalgia","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_ReturnScroll"}},{"itemId":650012,"className":"Escape_Orb","name":"Warpstone","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Escape"}},{"itemId":650014,"className":"HIDE_DICE_SEARCH","name":"Die Searching Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_HIDE_DICE_SEARCH_USE"}},{"itemId":650015,"className":"HIDE_DICE_PREVIEW","name":"Die Mirage Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_HIDE_DICE_PREVIEW_USE"}},{"itemId":650016,"className":"HIDE_DICE_CONFIRM","name":"Die Revealing Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_HIDE_DICE_CONFIRM_USE"}},{"itemId":650041,"className":"Act2_Manager_Report","name":"Crystal Mine Unsealing Scroll 1","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650051,"className":"SOUT_Q_16_PRE2_ITEM","name":"Crystal Mine Unsealing Scroll 2","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650052,"className":"MISSION_UPHILL_GIMMICK_ITEM1","name":"Uphill Mission - Fire Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650065,"className":"Bocors_doll","name":"Bokor Doll","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650068,"className":"FireMage_old_Scroll","name":"Pyromancer's Old Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"FireMage_old_Scroll_LOG"}},{"itemId":650069,"className":"katyn_7_Messenger","name":"Messenger Bag","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650070,"className":"katyn_corpse","name":"Remains of a Soldier","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650071,"className":"siauliai_lichen","name":"Moss","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650072,"className":"siauliai_discolored_grass","name":"Discolored Grass","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650073,"className":"siauliai_wicked_bark","name":"Creepy Wood Bark","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650094,"className":"Siauliai16Report1","name":"Blakk's Report","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Siauliai16Report1_LOG"}},{"itemId":650095,"className":"Siauliai16Report2","name":"York's Periodic Report","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Siauliai16Report2_LOG"}},{"itemId":650096,"className":"Siauliai16Cure","name":"Vubbe Raider Pouch","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650097,"className":"Siauliai16Canine","name":"Shawlem's Loot Box","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650098,"className":"Siauliai16Helmet","name":"Supplies Looted by Vubbes","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650099,"className":"Siauliai16Plume","name":"Vubbe Bow","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650100,"className":"Siauliai16Report3","name":"Moody's Supplementary Report","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"Siauliai16Report2_LOG"}},{"itemId":650103,"className":"katyn13_1_owlwing","name":"Wing Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650109,"className":"katyn13_1_owlwing_sub","name":"Wing Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650122,"className":"CMINE08_QUARRY","name":"Crystal Sphere","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650124,"className":"CMINE08_BLOOD","name":"Vubbe Serum","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650125,"className":"CMINE08_ADDITIVE","name":"Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650144,"className":"CMINE08_BLOOD_resin","name":"Vubbe Serum","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650145,"className":"ZACHA32_KEEPER_KEY","name":"Native Soldier's Key","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650146,"className":"ZACHA32_KEY","name":"Royal Mausoleum 2F Lever","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650147,"className":"ZACHA33_ITEM01","name":"Part of the Slab (1)","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650148,"className":"ZACHA33_ITEM02","name":"Part of the Slab (2)","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650234,"className":"ROKAS30_PIPOTI_MAP","name":"Stonemason Pipoti's Treasure Map","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ROKAS30_PIPOTI_MAP"}},{"itemId":650235,"className":"VACYS_note","name":"Varkis' Research Materials (1)","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"VACYS_note_LOG"}},{"itemId":650236,"className":"VACYS_STONE","name":"Boulder to be carved into a Memorial Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650237,"className":"VACYS_KIT","name":"Stonemason Tool Kit","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650238,"className":"VACYS_RECORD","name":"Pipoti's Memorial Stone","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_VACYS_RECORD"}},{"itemId":650239,"className":"ZACHA36_CUBE1","name":"Cube of Searching","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650240,"className":"ROKAS26_M_SLATE2","name":"Old Pillar Sculpture","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650241,"className":"ROKAS26_M_SLATE3","name":"Stone Pillar's Surface Powder","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650242,"className":"ROKAS26_M_SLATE4","name":"Small Stone Piece","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650243,"className":"ROKAS26_MQ1_scroll","name":"Scroll of Space Distortion","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650244,"className":"ROKAS26_MQ1_key","name":"Great King's Key","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650245,"className":"JOB_HOPLITE2_ITEM1","name":"Glizardon Leather","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650246,"className":"JOB_HOPLITE2_ITEM2","name":"Galok Canine","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650247,"className":"JOB_HOPLITE2_ITEM3","name":"Black Egnome Powder","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650248,"className":"JOB_HOPLITE2_ITEM4","name":"Ellum's Sticky Sap","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650249,"className":"JOB_PSYCHOKINESIST2_1_ITEM1","name":"Desmodus' Tail Pin","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650250,"className":"JOB_PSYCHOKINESIST2_2_ITEM1","name":"Sticky Potion","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_PSYCHOKINESIST2_2_ITEM1"}},{"itemId":650251,"className":"JOB_LINKER2_1_ITEM1","name":"Corylus Core","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650252,"className":"JOB_LINKER2_1_ITEM2","name":"Galok Blood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650253,"className":"JOB_SAPPER2_1_ITEM1","name":"Sapper Master's Hidden Goods","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650254,"className":"JOB_HUNTER2_2_ITEM1","name":"Tough Glizardon Leather","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650255,"className":"JOB_HUNTER2_3_ITEM1","name":"Boulder for Construction","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650256,"className":"JOB_HUNTER2_4_ITEM1","name":"Hunter Master's Pouch","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650257,"className":"JOB_DIEVDIRBYS2_ITEM1","name":"Blue Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650258,"className":"JOB_PYROMANCER2_1_ITEM1","name":"Pot of Fire","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_PYROMANCER2_1_ITEM1"}},{"itemId":650259,"className":"JOB_KRIVI2_1_ITEM1","name":"Goods for Offering","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_KRIVI2_1_ITEM1"}},{"itemId":650260,"className":"JOB_PRIEST2_1_ITEM1","name":"Priest Master's Holy Water of Purification","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650261,"className":"JOB_WIZARD2_1_ITEM1","name":"Glizardon Horn","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650262,"className":"JOB_WIZARD2_1_ITEM2","name":"Galok Fur","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650263,"className":"JOB_WIZARD2_1_ITEM3","name":"Egnome Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650264,"className":"JOB_WIZARD2_2_ITEM1","name":"Data Recording Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_WIZARD2_2_ITEM1"}},{"itemId":650265,"className":"JOB_CLERIC2_1_ITEM1","name":"Holy Water of Cleric Master","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650266,"className":"JOB_CLERIC2_1_ITEM2","name":"Holy Water of Priest Master","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650267,"className":"JOB_CLERIC2_1_ITEM3","name":"Holy Water of Krivis Master","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650269,"className":"JOB_PSYCHOKINESIST3_1_ITEM1","name":"Minotaur's Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650270,"className":"JOB_PSYCHOKINESIST3_1_ITEM2","name":"Chapparition's Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650271,"className":"JOB_QUARREL3_2_ITEM1","name":"Strange Map","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650272,"className":"JOB_RANGER3_2_ITEM1","name":"Cloth Piece with a Peculiar Scent","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650273,"className":"JOB_SAPPER3_1_ITEM1","name":"Burnable Juice of Tontulia","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650274,"className":"JOB_SAPPER3_2_ITEM1","name":"Sapper Master's Experimental Bomb","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"JOB_SAPPER3_2_SKILL"}},{"itemId":650275,"className":"JOB_DIEVDIRBYS3_2_ITEM1","name":"Cloth Piece with Needlepoint","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650276,"className":"JOB_DIEVDIRBYS3_3_ITEM1","name":"Box of Food for Stray Cat","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650277,"className":"JOB_PYROMANCER3_1_ITEM1","name":"Sun Essence","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_PYROMANCER3_1_ITEM1"}},{"itemId":650278,"className":"JOB_CRYOMANCER3_1_ITEM1","name":"Varb Hard Shell","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650279,"className":"JOB_CRYOMANCER3_1_ITEM2","name":"Zinutekas Strong Horn","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650280,"className":"JOB_WIZARD3_1_ITEM1","name":"Phyracon Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650281,"className":"JOB_WIZARD3_1_ITEM2","name":"Red Infrorocktor Shell Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650282,"className":"JOB_WIZARD3_2_ITEM1","name":"Data Recording Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_WIZARD3_2_ITEM1"}},{"itemId":650283,"className":"CMINE_DIARY_TOOL","name":"Dowsing L-Rod","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CMINE_DIARY_TOOL"}},{"itemId":650297,"className":"THORN22_Ring_1","name":"Sickening Lump","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650298,"className":"THORN22_Firewood_1","name":"Dry Thorn Forest Wood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650299,"className":"THORN22_Specimen_1","name":"Monster Specimen","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650301,"className":"THORN22_Order_1","name":"Commander Julian's Order","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"THORN22_Order_1_LOG"}},{"itemId":650302,"className":"THORN22_Specimen_3","name":"Mersium Sample","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650303,"className":"THORN22_Specimen_4","name":"Merlog Sample","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650304,"className":"THORN22_Thorn_1","name":"Mersumma Thorn","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650305,"className":"THORN22_LightBall_1","name":"Thronball Thorn","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650306,"className":"THORN22_Petal_1","name":"Cyst leaves","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650307,"className":"THORN23_Thorn_1","name":"Infro Holder Horn","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650308,"className":"THORN23_Report_1","name":"Sunset Flag Forest Reconnaissance Report","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"THORN23_Report_1_LOG"}},{"itemId":650309,"className":"THORN23_WBottle_1","name":"Water Bottle hidden by the Supply Officer","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650310,"className":"THORN23_Sap_1","name":"Kepa Raider Sap","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650311,"className":"THORN23_Mushroom_1","name":"Cronewt Leather","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650312,"className":"THORN23_Piece_1","name":"Sculpture Wing Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650313,"className":"THORN23_Piece_2","name":"Sculpture Pedestal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650314,"className":"THORN23_Piece_3","name":"Sculpture Leg Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650316,"className":"ROKAS24_SUPP_02","name":"Golden Piece","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650317,"className":"ROKAS24_SUPP_01","name":"Research Aid Supplies","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650318,"className":"ROKAS24_FORSYTHIA","name":"Canyon Metos","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650319,"className":"ROKAS24_Bark_1","name":"Royal Mausoleum Research Report","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ROKAS24_Bark_1_LOG"}},{"itemId":650320,"className":"ROKAS24_Sap_1","name":"Torn Research Record","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650322,"className":"ROKAS24_Record_2","name":"Jonas' Record","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ROKAS24_Record_2_LOG"}},{"itemId":650323,"className":"ROKAS24_Record_3","name":"Piece of Record on Mysterious Pattern (2)","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650324,"className":"ROKAS24_Herb_1","name":"Medicine for Jonas","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650351,"className":"MINE_1_Charge_Scroll_1","name":"Absorption Circle Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_MINE_1_Charge_Scroll_1"}},{"itemId":650352,"className":"MINE_1_Crystal_1","name":"Crystal Mine Purification Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650355,"className":"DMINE8_QUEST04_3_Bomb","name":"Explosive to open up a Secret Passage","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650356,"className":"SIAULIAI11_WoodManChip1","name":"Woodsman Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650357,"className":"SIAULIAI11_Report1","name":"Scatt's Report","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"SIAULIAI11_Report1_LOG"}},{"itemId":650358,"className":"SIAULIAI11_SoulPrisonScroll","name":"Scroll of Soul Collection","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SIAULIAI11_SoulPrisonScroll"}},{"itemId":650359,"className":"SIAULIAI11_Soul","name":"Spirit of the Red Vubbe Shooter","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650368,"className":"KATYN13_StatueUpper_1","name":"Upper Piece of Sculpture","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650369,"className":"KATYN13_StatueLower_1","name":"Lower Piece of Sculpture","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650370,"className":"KATYN13_StatueProp_1","name":"Sculpture Pedestal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650371,"className":"KATYN13_Oil_1","name":"Oil","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650374,"className":"SIAULIAI16_Supplies_1","name":"Wheat Box","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650375,"className":"SIAULIAI16_Supplies_2","name":"Dumbleball Pouch","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650376,"className":"SIAULIAI16_BubesItem_1","name":"Dumbleball Pouch","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650377,"className":"JOB_QUARRELSHOOTER1_Lens","name":"Astral Tower Lens","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650378,"className":"JOB_HUNTER1_Pileus","name":"Vubbe Venom Sample","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650379,"className":"ROKAS28_MQ2_ITEM","name":"Strangely Engraved Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650380,"className":"ROKAS28_MQ3_ITEM","name":"Hogma Amulet","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650388,"className":"ROKAS26_S_HEMOSTASIS","name":"Lindt's Supplies","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650389,"className":"ROKAS26_S_ANESTHESIA","name":"Canyon Apynys","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650392,"className":"ROKAS26_S_STONE","name":"Spiritual Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650393,"className":"ROKAS26_M_SLATE","name":"Relic Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650396,"className":"THORN31_MS_ITEM01","name":"Payment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650397,"className":"THORN31_MS_ITEM02","name":"Shining Gold Article","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650399,"className":"ROKAS31_MS_MONEY","name":"Loose Package","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650400,"className":"ROKAS31_MS_Q7","name":"Bushobell's Bundle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650405,"className":"SIAUL_WEST_DRASIUS2_Bag","name":"Soldier's Belongings","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650407,"className":"SIAUL_EAST_REQUEST1_Blood","name":"Piece of Vubbe Cloth","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650408,"className":"SIAUL_EAST_REQUEST4_Claw","name":"Weaver Claw","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650409,"className":"SIAUL_OUT_QUEST_SUPPLIE","name":"Relief Goods","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650410,"className":"SIAUL_OUT_QUEST_STONE","name":"Reinforcement Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650411,"className":"KATYN10_SLEEP_WAKE","name":"Stinging Stick","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_KATYN10_OWL"}},{"itemId":650414,"className":"KATYN10_FRAG_OWL","name":"Piece of Wood with Holy Spirit","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650415,"className":"KATYN10_SOUL_POWDER","name":"The Essence of Spirits","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650416,"className":"KATYN10_SOUL_GRAVE","name":"Spirit Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650417,"className":"KATYN10_SOUL_BLUE","name":"Blue Soul Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650418,"className":"KATYN10_SOUL_RED","name":"Red Soul Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650420,"className":"KATYN10_SOUL_CIRCLE","name":"Evil Soul Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650421,"className":"KATYN10_CREATER_ITEM","name":"Spirit-Leading Owl's Sign","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650422,"className":"KATYN10_SLEEP_WAKE2","name":"Spiritual Stick","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_KATYN10_OWL2"}},{"itemId":650423,"className":"KATYN10_JELLY_LARVA","name":"Meduja Larva","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650424,"className":"KATYN10_GHOST_BAG","name":"Lost Luggage","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650425,"className":"KATYN10_TEARED_SCROLL","name":"Torn Spell Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650426,"className":"KATYN10_CHERISH_COPY","name":"Copy of the Pilgrim Monument","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650427,"className":"KATYN10_DARKER_THAN","name":"Burned Branch","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650428,"className":"KATYN10_SLEEP_WAKE3","name":"Cursed Stick","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_KATYN10_OWL3"}},{"itemId":650429,"className":"KATYN72_GHOSTBAG","name":"Soldiers' Belongings","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650430,"className":"KATYN72_BUTTERFLY","name":"Butterfly Scent","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650431,"className":"KATYN72_KRUMABOLEG","name":"Ridimed Leaves","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650432,"className":"KATYN72_POKU_CORPSE","name":"Sakmoli Roots","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650433,"className":"KATYN72_CINERAIRE","name":"Purified Urn","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650434,"className":"KATYN71_DUMMY","name":"Completed Monster Decoy","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650435,"className":"KATYN71_DUMMY_2","name":"Test Decoy","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_KATYN71_DUMMY02"}},{"itemId":650436,"className":"KATYN72_DUM_WO_01","name":"Legs of Solid Wood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650437,"className":"KATYN72_DUM_WO_02","name":"Rustling Skin","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650438,"className":"KATYN72_DUM_WO_03","name":"Ellom Leaves","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650439,"className":"KATYN14_MQ_18_ITEM","name":"Dead Soldier's Body","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650441,"className":"KATYN14_MQ_11_ITEM","name":"Supplies","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650442,"className":"KATYN14_MQ_05_ITEM","name":"Supply Bag","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650443,"className":"KATYN14_MQ_08_ITEM","name":"Puragi's Hook","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650444,"className":"KATYN14_MQ_09_ITEM","name":"Nagging Owl's Soul","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650445,"className":"KATYN14_MQ_16_ITEM","name":"Bloodstained Report Page","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"KATYN14_MQ_16_ITEM_LOG"}},{"itemId":650446,"className":"SIAU15_MQ_04_ITEM","name":"Hamming Stem","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650447,"className":"SIAU15_MQ_07_ITEM","name":"Tini Fluid","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650448,"className":"SIAU15_MQ_08_ITEM","name":"Smelly Herbicide","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650449,"className":"SIAU15_MQ_11_ITEM","name":"Reinforcements Request","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650450,"className":"SIAU15_MQ_20_ITEM","name":"Training Certificates","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"SIAU15_MQ_20_ITEM_LOG"}},{"itemId":650451,"className":"SIAU15_MQ_22_ITEM","name":"Plantain Grass","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650452,"className":"SIAU15_MQ_23_ITEM","name":"Tini Meat","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650453,"className":"SIAU15_MQ_24_ITEM","name":"Empty Potion Bottle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650454,"className":"SIAU15_MQ_27_ITEM","name":"Beetle's Shell","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650455,"className":"KATYN18_MQ_02_ITEM","name":"Soul Remains","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650456,"className":"KATYN18_MQ_11_ITEM","name":"Sacred Force Sculpture","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650457,"className":"KATYN18_MQ_16_ITEM","name":"Gateway Key","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650460,"className":"JOB_PRIEST1_ITEM","name":"Imbued Evil Energy Pouch","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650461,"className":"JOB_KRIWI1_ITEM","name":"Krivis Relic","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650463,"className":"JOB_SWORDMAN1_ITEM","name":"Red Kepa Skin","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650464,"className":"JOB_ARCHER1_ITEM","name":"Jukopus Core","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650465,"className":"JOB_CLERIC1_ITEM","name":"Green Ointment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650467,"className":"ZACHA1F_MQ_04_ITEM","name":"Royal Mausoleum Guardian Power Source","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650468,"className":"ZACHA5F_MQ_01_ITEM","name":"Royal Mausoleum's Magic Source","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650469,"className":"ZACHA2F_MQ_01_ITEM","name":"Broken Slate of the Royal Mausoleum","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650470,"className":"ZACHA1F_SQ_01_ITEM","name":"Burning Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650471,"className":"ZACHA1F_SQ_03_ITEM","name":"Activation Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":2000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650472,"className":"ZACHA2F_SQ_03_ITEM","name":"Blazing Magic Source","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650473,"className":"ZACHA4F_SQ_01_ITEM","name":"Wheelen's Mark","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650474,"className":"REMAINS40_MQ_01_ITEM","name":"Brother's Diary","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650475,"className":"REMAINS40_MQ_03_ITEM","name":"Cockatrice Fat","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650476,"className":"REMAINS40_MQ_04_ITEM","name":"Highly Condensed Cockatrice Fat.","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650477,"className":"REMAINS40_MQ_05_ITEM","name":"Hallowventer Charcoal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650478,"className":"REMAINS40_MQ_06_ITEM","name":"Strong Magical Power Absorption Jar","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REMAINS40_MQ_06_ITEM"}},{"itemId":650479,"className":"REMAINS40_SQ_04_ITEM","name":"Dust Sample","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650480,"className":"REMAINS40_SQ_05_ITEM","name":"Cockat Tail","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650481,"className":"FTOWER41_MQ_04_ITEM","name":"Grita's Absorbing Gem","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FTOWER41_MQ_04_ITEM"}},{"itemId":650483,"className":"ROKAS25_MQ_02_ITEM","name":"Unseal Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650484,"className":"MROKAS_BOMBFLOWER","name":"Corroded Leaf","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650485,"className":"MROKAS_BOMBFUSE","name":"Oil-Stained Fuse","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650486,"className":"FTOWER42_MQ_04_ITEM","name":"Flame Source","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650487,"className":"FTOWER42_MQ_01_ITEM","name":"Flame Searching Stick","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FTOWER42_MQ_01_ITEM"}},{"itemId":650494,"className":"ROKAS24_SQ_01_ITEM","name":"Pino Catching Sack.","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ROKAS24_SQ_01_ITEM"}},{"itemId":650495,"className":"ROKAS24_SQ_03_ITEM","name":"Research Material","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650497,"className":"ROKAS_24_PINO","name":"Pino in a Sack","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650499,"className":"ROKAS25_Firewood_1","name":"Dry Twigs","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650500,"className":"ROKAS25_FOOD","name":"Hard Lime","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650501,"className":"ROKAS25_SQ_04_DRUG","name":"Newly-Made Forgeries","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650502,"className":"ROKAS25_STRUCTURE","name":"Building Piece","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650503,"className":"ROKAS25_EX2_STRUCTURE_ITEM","name":"Bag with Graverobbing Equipment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650504,"className":"ROKAS27_QB_6","name":"Loot Bag","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ROKAS27_QB_6"}},{"itemId":650505,"className":"ROKAS27_QB_6_1","name":"Archaeologist Token","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650506,"className":"ROKAS26_SAURBLOOD","name":"Monster Poison","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650507,"className":"ROKAS26_WATER","name":"Bucket","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650508,"className":"Quest_Cannon","name":"Valley Bomb (Disposable)","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_MONGWANGGA","strArg":"Quest_Cannon","numArg1":1}},{"itemId":650509,"className":"mrokas_Cannon","name":"Canyon Bomb","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":650510,"className":"REMAIN38_SQ01_ITEM01","name":"Monster Head","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650511,"className":"REMAIN38_SQ01_ITEM02","name":"Monster Trunk","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650512,"className":"REMAIN38_SQ01_ITEM03","name":"Monster Hand","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650513,"className":"REMAIN37_COCKATRIES_BLOOD","name":"Lizardman Blood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650514,"className":"REMAIN38_SQ03_MAGICPOT","name":"Soul Jar","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REMAIN38_SQ03"}},{"itemId":650515,"className":"ROKAS29_SLATE1","name":"Symbol of the Great King's 1st Ordeal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650516,"className":"ROKAS29_SLATE2","name":"Symbol of the Great King's 2nd Ordeal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650517,"className":"ROKAS29_SLATE3","name":"Symbol of the Great King's 3rd Ordeal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650518,"className":"ROKAS29_SLATE4","name":"Symbol of the Great King's 3rd Ordeal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650519,"className":"ROKAS29_SLATE5","name":"Symbol of the Great King's 4th Ordeal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650520,"className":"REMAINS39_SQ01ENVIDENCE","name":"Chipped Sword","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650521,"className":"GHOST_KEEPSAKE","name":"Corpse Relics","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650522,"className":"GHOST_CRIMINALTOOL","name":"Sword Piece","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650523,"className":"REMAINS39_WOOD","name":"Wood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650524,"className":"REMAINS39_LEATHER","name":"Strong Flying Frog Leather","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650525,"className":"REMAINS39_LETTER","name":"Moses Diesel's Letter","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650526,"className":"REMAINS39_CRUTCHES","name":"Moses Diesel's Crutches","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650527,"className":"ROKAS24_MQ_01_ITEM","name":"Shiny Tree Sap","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650528,"className":"ROAKS24_MQ_02_ITEM1","name":"Collected Canyon Amalas","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650530,"className":"ROKAS24_CATALYST","name":"Seal Release Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650531,"className":"ROKAS24_QB_1_PENITEM","name":"Lost Research Document","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ROKAS24_QB_1_PENITEM_LOG"}},{"itemId":650532,"className":"ROKAS27_MQ4_MAPITEM","name":"Map marking the Great King's Inheritance","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ROKAS28_MQ1_QUESTMAP"}},{"itemId":650533,"className":"ROKAS27_ANTIDOTE","name":"Antidote ","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650535,"className":"ZACHA3F_MQ_02_ITEM","name":"Condensed Magic Source","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ZACHA3F_MQ_02_ITEM"}},{"itemId":650536,"className":"ROKAS29_MQ_TOXI","name":"Hogma Tooth","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650539,"className":"REMAIN37_BURKOIL","name":"Infroburk Meat","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650540,"className":"REMAIN37_DISGUISEMATERIAL","name":"Stubby Tree Trunk","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650541,"className":"REMAIN37_CHAVASCA","name":"Remains of Tree Ambulo","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650542,"className":"REMAIN38_STONESLATE","name":"Broken Tombstone Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650543,"className":"REMAIN38_STONESLATE2","name":"Piece of Lydia Schaffen's Broken Tombstone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REMAIN38_STONESLATE2"}},{"itemId":650544,"className":"REMAIN38_GRAVESTONE","name":"Restored Tombstone of Lydia Schaffen","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650545,"className":"REMAINS39_STONESLATE","name":"Destroyed Tombstone Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650546,"className":"REMAINS39_BACKPACK","name":"Villager's Bag","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650547,"className":"FTOWER41_SQ_03_01","name":"Black Coal Powder","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650548,"className":"FTOWER41_SQ_04_01","name":"Eternal Ember","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650549,"className":"FTOWER42_SQ_04_01","name":"Piece of the Holy Ark","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650550,"className":"FTOWER42_SQ_05_01","name":"Small Monster Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650551,"className":"FTOWER43_SQ_01_01","name":"Sealed Stone's Voice","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650552,"className":"FTOWER43_SQ_02_01","name":"Crystal of Restriction","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650553,"className":"FTOWER44_SQ_01_01","name":"Variation Mediator","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650554,"className":"FTOWER44_SQ_02_01","name":"Hardened Black Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650555,"className":"FTOWER45_SQ_01_01","name":"Flame Charm","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650556,"className":"FTOWER45_SQ_02_01","name":"Silver Dye for Magical Tattoo","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650557,"className":"FTOWER41_SQ_03_SUB","name":"Cordelier's Parchment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650558,"className":"FTOWER43_MQ_07_ITEM","name":"Red Infrorocktor Core","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650559,"className":"FTOWER44_MQ_03_ITEM","name":"Flame Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650562,"className":"Bocors_doll_resource1","name":"Pawndel Soul Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650563,"className":"Bocors_doll_resource2","name":"Pawnd Mind Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650564,"className":"THORN19_MQ01_MEMO","name":"Follower's Memo","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"THORN19_MQ01_MEMO_LOG"}},{"itemId":650565,"className":"THORN19_MQ01_MATCH","name":"Match","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650566,"className":"THORN19_MQ01_SOLVENT","name":"Acid Solution","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650567,"className":"THORN19_MQ01_CRYSTAL","name":"Magic Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650568,"className":"THORN19_MQ02_POCKET","name":"Thornball Remains","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650569,"className":"THORN19_MQ05_POWDER","name":"Velwriggler Claw","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650570,"className":"THORN19_MQ05_BODFLUIDS","name":"Horrible-Smelling Body Fluid","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_THORN19_MQ05_BODFLUIDS"}},{"itemId":650571,"className":"THORN19_MQ6_POISON","name":"Adele's Ring","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650572,"className":"THORN19_MQ7_SPORE","name":"Truffle's Poisonous Mushroom","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650573,"className":"THORN19_MQ8_SOLVENT","name":"Acid Solution","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_THORN19_MQ8_SOLVENT"}},{"itemId":650574,"className":"THORN19_MQ9_PURIFY","name":"Operor's Stinger","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650575,"className":"THORN19_MQ13_SPELLCRYSTAL","name":"Refined Magic Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_THORN19_MQ13_SPELLCRYSTAL"}},{"itemId":650576,"className":"THORN19_MQ03_OIL","name":"Coliflower Sap","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650577,"className":"THORN20_MQ05_DRUG","name":"Stimulants","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_THORN20_MQ05_DRUG"}},{"itemId":650578,"className":"CHAPLE576_MQ_02_ITEM","name":"Power Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650579,"className":"CHAPLE575_MQ_02_ITEM","name":"Magical Enchantment Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650580,"className":"THORN20_MQ02_MAP","name":"Operation Map","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650581,"className":"THORN20_MQ05_THORNFLOWER","name":"Thorn Pollen","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650582,"className":"GELE571_MQ_01_ITEM","name":"Lever Handle Latch","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650583,"className":"GELE571_MQ_02_ITEM","name":"Gear","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650584,"className":"GELE571_MQ_04_ITEM","name":"Plateau Sugar Beets","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650585,"className":"GELE571_MQ_05_ITEM","name":"Cable Car Parts","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650586,"className":"THORN20_MQ05_THORNDRUG","name":"Thorn Pollen Stimulant","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_THORN20_MQ05_THORNDRUG"}},{"itemId":650587,"className":"THORN20_MQ05_GROLL","name":"Blue Fragaras Petal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650588,"className":"GELE572_MQ_03_ITEM","name":"Ritualistic Rope","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650589,"className":"GELE572_MQ_05_ITEM","name":"Enchanted Mane","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650590,"className":"GELE572_MQ_HOLY1","name":"Divine Utensil","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650591,"className":"GELE572_MQ_HOLY2","name":"Divine Utensil","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650592,"className":"GELE572_MQ_HOLY3","name":"Divine Utensil","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650593,"className":"GELE572_MQ_DOLL","name":"Purification Voodoo Doll Summon Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"GELE572_MQ_05_RUNNPC"}},{"itemId":650594,"className":"ROKAS24_QB_10","name":"Igniter","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650595,"className":"ROKAS25_SQ_03","name":"Counterfeit Goods","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650600,"className":"CHAPLE576_MQ_07_ITEM","name":"Divine Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHAPLE576_MQ_07"}},{"itemId":650601,"className":"CHAPLE577_MQ_03_ITEM","name":"Destroyed Altar Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650602,"className":"CHAPLE577_MQ_06_ITEM","name":"Lesser Potion of Light","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHAPLE577_MQ_06"}},{"itemId":650603,"className":"CHAPLE577_MQ_07_ITEM","name":"Lesser Bead of the Divine Spirit","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHAPLE577_MQ_07"}},{"itemId":650604,"className":"CHAPLE577_MQ_07_PYO_ITEM","name":"Revelator's Proof","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650605,"className":"KEY_OF_LEGEND_01","name":"Seal of Space","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_KEY_OF_LEGEND_01"}},{"itemId":650606,"className":"THORN21_MQ04_BUGWING","name":"Matsum's Flower Stamen","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650607,"className":"THORN21_MQ07_THORNDRUG","name":"Enhanced Thorn Flower Stimulant","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_THORN21_MQ07_THORNDRUG"}},{"itemId":650608,"className":"THORN21_MQ04_DRUG","name":"Thorn Flower Fluid","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_THORN21_MQ04_DRUG"}},{"itemId":650609,"className":"JOB_WARLOCK3_1_ITEM1","name":"Varb Resin","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650610,"className":"JOB_WARLOCK3_1_ITEM2","name":"Zinutekas Tail Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650611,"className":"JOB_WARLOCK3_1_ITEM3","name":"Boowook Activation Core","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650612,"className":"GELE574_MQ_02_ITEM","name":"Dew Recepticle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650613,"className":"GELE574_MQ_05_ITEM","name":"Flimsy Charm","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GELE574_MQ_05_ITEM"}},{"itemId":650614,"className":"ZACHA5F_MQ03_POT","name":"Soul Pot","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650615,"className":"HUEVILLAGE_58_2_MQ01_ITEM1","name":"Black Maize Venom","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650616,"className":"HUEVILLAGE_58_2_MQ01_ITEM2","name":"Paralysis Powder","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HUEVILLAGE_58_2_MQ01_ITEM2"}},{"itemId":650617,"className":"HUEVILLAGE_58_2_MQ02_ITEM","name":"White Oak Sap","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650618,"className":"HUEVILLAGE_58_2_MQ03_ITEM","name":"Dye Coating","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650620,"className":"GELE574_MQ_HOLY_01","name":"Divine Utensil","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650621,"className":"GELE574_MQ_HOLY_02","name":"Divine Utensil","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650622,"className":"GELE574_MQ_HOLY_03","name":"Divine Utensil","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650623,"className":"HUEVILLAGE_58_4_MQ05_ITEM1","name":"Shrine Offering Tools","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650624,"className":"HUEVILLAGE_58_4_MQ07_ITEM1","name":"Confinement Key","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650625,"className":"JOB_CLERIC4_3_ITEM","name":"Nikotia Herbs","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650626,"className":"JOB_KRIVI4_1_ITEM","name":"Goddess Offering Pocket","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650627,"className":"JOB_DIEVDIRBYS4_1_ITEM","name":"Balm","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650628,"className":"JOB_PARDONER4_2_ITEM","name":"Boss Decision","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650629,"className":"JOB_PARDONER4_3_ITEM","name":"Hardened Oil","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650630,"className":"JOB_PELTASTA4_4_ITEM","name":"Peltasta Shield","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650631,"className":"JOB_CORSAIR4_1_ITEM_01","name":"Dock Permit","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"JOB_CORSAIR4_1_ITEM_01_LOG"}},{"itemId":650632,"className":"JOB_CORSAIR4_1_ITEM_02","name":"Navigator's Chart","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650633,"className":"JOB_CORSAIR4_1_ITEM_03","name":"Contract","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650634,"className":"JOB_ARCHER4_2_ITEM","name":"Whetstone Bag","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650635,"className":"JOB_RANGER4_1_ITEM","name":"Moya Body Fluid Sample","type":"Quest","group":"Quest","weight":0,"maxStack":10,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650636,"className":"JOB_ARCHER4_3_ITEM","name":"Intermediate Arrow Sample","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650637,"className":"JOB_FLETCHER4_ITEM","name":"Whistling Wood","type":"Quest","group":"Quest","weight":0,"maxStack":10,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650638,"className":"JOB_FLETCHER4_1_ITEM","name":"Fisherman's Fishing Rod","type":"Quest","group":"Quest","weight":0,"maxStack":1000,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_FLETCHER4_1_ITEM"}},{"itemId":650639,"className":"JOB_WUGU4_1_ITEM","name":"Simple Tube","type":"Quest","group":"Quest","weight":0,"maxStack":1000,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_WUGU4_1_ITEM"}},{"itemId":650640,"className":"JOB_WUGU4_1_ITEM_1","name":"Synthetic Poison","type":"Quest","group":"Quest","weight":0,"maxStack":15,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650641,"className":"JOB_CENTURION5_1_ITEM","name":"Phalanx Tactics","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_CENTURION5_1_ITEM"}},{"itemId":650642,"className":"JOB_SCOUT4_1_ITEM","name":"Flare","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_SCOUT4_1_ITEM"}},{"itemId":650643,"className":"JOB_QUARREL4_1_ITEM","name":"Stone Rubbing","type":"Quest","group":"Quest","weight":0,"maxStack":5,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650644,"className":"JOB_BOCOR4_1_ITEM","name":"Heavily Cursed Jewel","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650645,"className":"JOB_PARDONER4_2_ITEM2","name":"Mothstem's Fire Jar","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650646,"className":"JOB_NECROMANCER4_1_ITEM1","name":"Blue Pawndel Bones","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650647,"className":"JOB_NECROMANCER4_1_ITEM2","name":"Black Pawnd's Entrails","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650648,"className":"JOB_NECROMANCER4_1_ITEM3","name":"Harpeia's Beak","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650649,"className":"JOB_ROGUE4_1_ITEM","name":"Smoke Grenade","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_ROGUE4_1_ITEM"}},{"itemId":650650,"className":"JOB_SWORDMAN4_1_ITEM","name":"Orb of Provocation","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_SWORDMAN4_1_ITEM"}},{"itemId":650651,"className":"JOB_SQUIRE4_1_ITEM","name":"Lasso","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_SQUIRE4_1_ITEM"}},{"itemId":650652,"className":"JOB_SAPPER4_1_ITEM","name":"Sapper Master's Introduction Letter","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650653,"className":"JOB_SAPPER4_3_ITEM","name":"Highlander Master's Proof","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650654,"className":"HUEVILLAGE_58_1_MQ01_ITEM1","name":"Tanu's Purifying Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650655,"className":"MODPAT_DEV_ITEM","name":"Skill Item","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_MODPAT_DEV_ITEM"}},{"itemId":650656,"className":"ROKAS24_QB_11_DRUG","name":"Canyon Metos Sap","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650657,"className":"ROKAS24_KILL3_SCROLL","name":"Relic Memorandum","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650658,"className":"REMAIN37_SQ07_ITEM","name":"Memorial Rubbings","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650659,"className":"REMAIN39_SQ03_FEDIMIAN","name":"Torn Letter","type":"Quest","group":"Quest","weight":0,"maxStack":15,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REMAIN39_SQ03_FEDIMIAN"}},{"itemId":650660,"className":"REMAINS40_MQ_07_ITEM","name":"Zubeck's Secret Moves","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REMAINS40_MQ_07_ITEM"}},{"itemId":650661,"className":"FTOWER_FIRE_ESSENCE","name":"Jewel of Prominence","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FTOWER_FIRE_ESSENCE"}},{"itemId":650662,"className":"HUEVILLAGE_58_3_MQ01_ITEM1","name":"Languid Herb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650663,"className":"HUEVILLAGE_58_3_MQ02_ITEM1","name":"Strongly Scented Soul Flower","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650664,"className":"HUEVILLAGE_58_3_MQ03_ITEM1","name":"Useful Bomb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650665,"className":"HUEVILLAGE_58_3_MQ03_ITEM2","name":"Languid Herb Bomb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650666,"className":"SIAULIAI16_BOSSKILL1_ITEM","name":"Sparnas Bait","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650667,"className":"KATYN14_MQ_05_ITEM2","name":"Simple Supplies","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650668,"className":"SIAULIAI_TO_KEEPER2_ITEM","name":"Scot's First Report","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650669,"className":"SIAULIAI11_ADDQUEST6_ITEM","name":"Supply Pouch","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650670,"className":"THORN23_Q_11_ITEM","name":"Ducky Fat","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650671,"className":"HIGHLANDER_HQ01_BOX","name":"Toolbox","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HIGHLANDER_HQ01_BOX"}},{"itemId":650672,"className":"CHAPLE_57_6_HQ01_ITEM","name":"Death Marker","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650673,"className":"HUEVILLAGE_58_3_HQ01_NECKLACE","name":"Necklace","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650674,"className":"ROKAS_25_HQ_01_MONEY","name":"Money Bag","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650675,"className":"ROKAS_25_HQ01_TOKEN","name":"Messenger's Note","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ROKAS_25_HQ01_TOKEN_LOG"}},{"itemId":650676,"className":"ROKAS_30_HQ01_ITEM","name":"Ancient Writings","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ROKAS_30_HQ01_ITEM"}},{"itemId":650677,"className":"FIRETOWER_45_HQ_02_ITEM1","name":"Wizard's Torn Page","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650678,"className":"FEDIMIAN_HQ_01_ITEM1","name":"Mark of a Pilgrim","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650679,"className":"KATYN_10_HQ_01_ITEM1","name":"Great Cathedral Marble Parts","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650680,"className":"REMAINS_40_HQ_01_ITEM1","name":"Storyteller's Book","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650681,"className":"REMAINS_40_HQ_01_ITEM2","name":"Secret Box Key","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650682,"className":"REQ_03_ITEM","name":"Simple Item","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REQ_03_ITEM"}},{"itemId":650683,"className":"WOOD_CARVING_WRECK","name":"Practice Wood Carving Scraps","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650684,"className":"REQ_SEMPLE_04_ITEM_01","name":"Intermediate Item_1","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650685,"className":"REQ_SEMPLE_05_ITEM_01","name":"Intermediate Item_2","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650686,"className":"WOOD_CARVING_REPAIR","name":"Fixed Practice Wood Carving","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650687,"className":"WOOD_CARVING_REPAIR_WOOD","name":"Hardened Tree Log","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650688,"className":"WOOD_CARVING_REPAIR_ROPE","name":"Rope","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650689,"className":"THORN23_OWL_ORB","name":"Memory Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650690,"className":"GELE572_MQ_HOLY5","name":"Divine Utensil","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650691,"className":"GELE572_MQ_HOLY4","name":"Divine Utensil","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650692,"className":"JOB_HUNTER5_1_ITEM","name":"Huge Fang","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650693,"className":"JOB_SAPPER5_1_ITEM","name":"Natural Agate Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650694,"className":"JOB_FLETCHER5_1_ITEM","name":"Well-Burnable Firestone","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650695,"className":"JOB_SQUIRE5_1_ITEM","name":"Legwyn Family Decoration","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650696,"className":"JOB_CLERIC5_1_ITEM","name":"Wildflower Stamen","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650697,"className":"JOB_KRIVI5_1_ITEM","name":"Res Sacrae","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650698,"className":"JOB_BOCOR5_1_ITEM","name":"Stone Whale Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650699,"className":"JOB_DIEVDIRBYS5_1_ITEM","name":"Dense Hardwood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650700,"className":"JOB_MONK5_1_ITEM","name":"Sharp Canine","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650701,"className":"JOB_PARDONER5_1_ITEM","name":"Lost Indulgence Offering","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650702,"className":"GELE572_MQ_08_ITEM","name":"Mali Seeds","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650703,"className":"GELE572_MQ_DOLL_01","name":"Destroyer Shaman Doll Summon Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GELE572_MQ_DOLL_01"}},{"itemId":650704,"className":"GELE573_MQ_01_ITEM","name":"Destroyed Barrier Piece","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650705,"className":"GELE574_MQ_03_ITEM","name":"Mallardu Fat","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650706,"className":"GELE574_MQ_04_01_ITEM","name":"Combustible Fat","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650707,"className":"GELE574_MQ_04_02_ITEM","name":"Spiritually Enchanted Sap","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650708,"className":"GELE574_MQ_01_ITEM","name":"Insect Secretion","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650709,"className":"GELE574_MQ_06_ITEM","name":"Old Talisman","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GELE574_MQ_06_ITEM"}},{"itemId":650710,"className":"stonetablet01","name":"Revelation of Crystal Mine","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"stonetablet01","numArg1":10}},{"itemId":650711,"className":"CHAPLE575_MQ_03_ITEM","name":"Eye of Madness","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650712,"className":"CHAPLE575_MQ_05_ITEM","name":"Vicious Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650713,"className":"CHAPLE575_MQ_05_1_ITEM","name":"Purified Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650714,"className":"CHAPLE575_MQ_06_ITEM","name":"Namott Holy Water","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHAPLE575_MQ_06_ITEM"}},{"itemId":650715,"className":"CHAPLE575_MQ_06_ITEM_1","name":"Holy Bomb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650716,"className":"CHAPLE575_MQ_07_ITEM","name":"Holy Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHAPLE575_MQ_07_ITEM"}},{"itemId":650717,"className":"ROKAS31_SUB_03_SCROLL","name":"Scroll given by the Security Guard","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ROKAS31_SUB_03_SCROLL"}},{"itemId":650718,"className":"ROKAS31_SUB_03_CERT","name":"Shabby-Looking Necklace","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650719,"className":"CHAPLE576_MQ_05_ITEM","name":"Small Demon's Skirt Hem","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650720,"className":"CHAPLE576_MQ_07_1_ITEM","name":"Pawnd's Soul","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650721,"className":"CHAPLE576_MQ_07_2_ITEM","name":"Pawndel's Soul","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650722,"className":"CHAPLE576_MQ_07_3_ITEM","name":"Corylus' Soul","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650723,"className":"HUEVILLAGE_58_3_SQ01_BUCKET","name":"Bucket","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650724,"className":"HUEVILLAGE_58_3_SQ01_ROPE","name":"Long Rope","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650725,"className":"CHAPLE576_MQ_06_ITEM","name":"Demon Transform Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHAPLE576_MQ_06_ITEM"}},{"itemId":650726,"className":"CHAPLE576_MQ_02_ITEM_1","name":"Light Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650727,"className":"KATYN14_SUB_08_ITEM01","name":"Muddy Necklace","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650728,"className":"KATYN13_ADDQUEST8_ITEM01","name":"Vubbe's Wooden Arrow","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650730,"className":"REMAIN37_MQ01_ITEM","name":"Stumpy Tree Branch","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REMAIN37_MQ01_ITEM"}},{"itemId":650731,"className":"REMAIN37_MQ02_ITEM","name":"Crude Divining Rod","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REMAIN37_MQ02_ITEM"}},{"itemId":650732,"className":"REMAIN37_MQ04_ITEM","name":"Dusty Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650733,"className":"REMAIN37_SQ03_ITEM_01","name":"Stumpy Tree Sap","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650734,"className":"REMAIN37_SQ03_ITEM_02","name":"Sap Collector","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REMAIN37_SQ03_ITEM_02"}},{"itemId":650735,"className":"REMAINS37_MSTONE_01","name":"First Tombstone Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650736,"className":"REMAINS37_MSTONE_02","name":"Second Tombstone Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650737,"className":"REMAINS37_MSTONE_03","name":"Carbonized Tombstone Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650738,"className":"REMAINS37_MSTONE_04","name":"Fourth Tombstone Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650739,"className":"REMAINS37_MSTONE_05","name":"Ruins Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650740,"className":"REMAINS37_MSTONE","name":"Restored Tombstone Frgment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650741,"className":"stonetablet01_noread","name":"Mysterious Slate","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650742,"className":"stonetablet02","name":"Revelation of Tenet Church","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"stonetablet02","numArg1":10}},{"itemId":650743,"className":"REMAINS37_MSTONE_A","name":"Tombstone Fragments Package","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650744,"className":"REMAINS37_MSTONE_B","name":"Ruklys Memorial Piece","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650745,"className":"REMAIN38_MQ01_ITEM","name":"First Rubbing","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"REMAIN38_MQ01_ITEM_LOG"}},{"itemId":650746,"className":"REMAIN38_MQ02_ITEM","name":"Second Rubbing","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"REMAIN38_MQ02_ITEM_LOG"}},{"itemId":650747,"className":"REMAIN38_MQ03_ITEM","name":"Third Rubbing","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"REMAIN38_MQ03_ITEM_LOG"}},{"itemId":650748,"className":"REMAIN38_MQ04_ITEM","name":"Fourth Rubbing","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"REMAIN38_MQ04_ITEM_LOG"}},{"itemId":650749,"className":"REMAIN38_MQ05_ITEM","name":"Fifth Rubbing","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"REMAIN38_MQ05_ITEM_LOG"}},{"itemId":650750,"className":"REMAIN38_MQ07_ITEM","name":"Arrow Bundle","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650751,"className":"REMAIN38_SQ01_ITEM","name":"Experimental Ingredients","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650752,"className":"REMAIN38_SQ02_ITEM","name":"Waterweed","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650753,"className":"REMAIN38_SQ03_ITEM","name":"Lizardman Mind Control Stone","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650754,"className":"REMAIN38_SQ04_ITEM","name":"Infroburk Mind Control Stone","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650755,"className":"REMAIN38_MQ_ITEM","name":"Rubbing Tool","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650756,"className":"REMAIN38_MQ07_1_ITEM","name":"Fire Hardened Arrowhead","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650757,"className":"REMAIN38_MQ03_1_ITEM","name":"Long-Branched Tree Charcoal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650758,"className":"REMAIN38_MQ03_2_ITEM","name":"Soi Bomb","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REMAIN38_MQ03_2_ITEM"}},{"itemId":650759,"className":"stonetablet03_noread","name":"Revelation of Kvailas Forest","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650760,"className":"ZACHA1F_REPAIR","name":"Guardian Awakening Device","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650761,"className":"REMAIN39_SQ02_ITEM","name":"Zolem Magic Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650762,"className":"REMAIN39_SQ03_ITEM","name":"Unicorn Horn","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650763,"className":"SIAULIAI_46_4_MQ_02_ITEM","name":"Empty Beehive","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650764,"className":"SIAULIAI_46_4_MQ_03_ITEM","name":"Cork Stopper","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650765,"className":"SIAULIAI_46_4_SQ_05_ITEM","name":"Brewing Tools","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650766,"className":"SIAULIAI_46_4_SQ_06_ITEM","name":"Royal Jelly","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650767,"className":"FLASH59_SQ_07_ITEM","name":"Rambear Claws","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650768,"className":"FLASH59_SQ_08_ITEM","name":"Petrified Stolen Goods","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650769,"className":"FLASH59_SQ_10_ITEM","name":"Cryptically Engraved Bottle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650770,"className":"ROKAS28_EXPOSURE_MAP","name":"Very Old Map","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650771,"className":"FLASH59_SQ_11_ITEM","name":"Scent Stone Powder","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650772,"className":"PILGRIM46_ITEM_01","name":"Lump of Kepo Meat","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650773,"className":"PILGRIM46_ITEM_02","name":"Young Leaf","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650774,"className":"PILGRIM46_ITEM_03","name":"Soft Wooden Periderm","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650775,"className":"PILGRIM46_ITEM_04","name":"Small Music Box","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650776,"className":"PILGRIM46_ITEM_05","name":"Kepari Flesh","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650777,"className":"PILGRIM46_ITEM_06","name":"Asellu Leaf Bud","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650778,"className":"PILGRIM46_ITEM_07","name":"Food Scraps","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PILGRIM46_ITEM_07"}},{"itemId":650779,"className":"PILGRIM47_ITEM_01","name":"Tree Root Crystal Core","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650780,"className":"PILGRIM50_ITEM_01","name":"Soul Reagent","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PILGRIM50_ITEM_01"}},{"itemId":650781,"className":"PILGRIM50_ITEM_02","name":"Unnamed Flower","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650782,"className":"PILGRIM50_ITEM_03","name":"Bouquet","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650783,"className":"PILGRIM50_ITEM_04","name":"Pilgrim's Lost Scripture Page","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650784,"className":"PILGRIM50_ITEM_05","name":"Pilgrim's Scripture","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650785,"className":"PILGRIM50_ITEM_06","name":"Condensed Anger","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650786,"className":"PILGRIM51_ITEM_01","name":"Forest of Prayer Sanctum Map","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PILGRIM51_ITEM_01"}},{"itemId":650787,"className":"PILGRIM51_ITEM_02","name":"Holy Water","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650788,"className":"PILGRIM51_ITEM_03","name":"Grey Gypsum Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650789,"className":"PILGRIM51_ITEM_04","name":"Reed Leaf Dew","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650790,"className":"PILGRIM51_ITEM_05","name":"Naktis' Sign","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650791,"className":"PILGRIM51_ITEM_06","name":"Pure Water","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650792,"className":"PILGRIM51_ITEM_07","name":"Leather Pouch","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650793,"className":"PILGRIM51_ITEM_08","name":"Reed Flower","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650795,"className":"PILGRIM52_ITEM_01","name":"Tombstone Dew","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650796,"className":"PILGRIM52_ITEM_02","name":"Lantern","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650797,"className":"PILGRIM52_ITEM_03","name":"Medicine","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650798,"className":"PILGRIM52_ITEM_04","name":"Reed Sap Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650799,"className":"PILGRIM52_ITEM_05","name":"Small Portrait","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650800,"className":"PILGRIM52_ITEM_06","name":"Mother's Handkerchief","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650801,"className":"PILGRIM52_ITEM_07","name":"Sap","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650802,"className":"PILGRIM52_ITEM_08","name":"Jar","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650803,"className":"PILGRIM52_ITEM_09","name":"Succubus' Eyes","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650804,"className":"PILGRIM52_ITEM_10","name":"Pattern Stone (High)","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650805,"className":"PILGRIM52_ITEM_11","name":"Pattern Stone (Medium)","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650806,"className":"PILGRIM52_ITEM_12","name":"Pattern Stone (Low)","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650807,"className":"SIAULIAI_46_3_MQ_01_ITEM","name":"Sweet Honeycomb Piece","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SIAULIAI_46_3_MQ_01_ITEM"}},{"itemId":650808,"className":"SIAULIAI_46_3_MQ_03_ITEM","name":"Bichiu Altar's Magic Piece","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650809,"className":"SIAULIAI_46_3_SQ_03_ITEM","name":"Beehive Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650810,"className":"CHATHEDRAL53_MQ01_ITEM","name":"Spirit Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650811,"className":"CHATHEDRAL53_MQ02_ITEM","name":"Complete Scripture","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650812,"className":"CHATHEDRAL53_MQ03_ITEM","name":"Spirit's Scripture","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHATHEDRAL53_MQ03_ITEM"}},{"itemId":650813,"className":"CHATHEDRAL53_MQ04_ITEM","name":"Relic of Mercy","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650814,"className":"CHATHEDRAL53_MQ05_ITEM","name":"Relic of Salvation","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650815,"className":"CHATHEDRAL53_MQ06_ITEM","name":"Maven's First Key","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHATHEDRAL53_MQ06_ITEM"}},{"itemId":650816,"className":"SIAULIAI_46_3_SQ_02_ITEM","name":"Bag of Farming Tools","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650817,"className":"SIAULIAI_46_2_MQ_01_ITEM","name":"Bee Tree Branch","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SIAULIAI_46_2_MQ_01_ITEM"}},{"itemId":650818,"className":"SIAULIAI_46_2_MQ_02_ITEM","name":"Incinerated Demon Ash","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650819,"className":"SIAULIAI_46_2_MQ_03_ITEM","name":"Orb of Residue","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SIAULIAI_46_2_MQ_03_ITEM"}},{"itemId":650820,"className":"SIAULIAI_46_2_SQ_03_ITEM","name":"Tended Wood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650821,"className":"SIAULIAI_46_2_SQ_05_ITEM","name":"Farmland Wood","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650822,"className":"PILGRIM46_ITEM_08","name":"Condensed Cursed Energy","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650823,"className":"FLASH60_SQ_03_ITEM","name":"Petrified the advanced team's relics","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650824,"className":"stonetablet04","name":"Revelation of Royal Mausoleum","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"stonetablet04","numArg1":10}},{"itemId":650825,"className":"stonetablet031","name":"Revelation of Kvailas Forest","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":10}},{"itemId":650826,"className":"FLASH61_SQ_07_ITEM","name":"Rubbing Tool for Petrified Objects","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650827,"className":"FLASH61_SQ_08_ITEM","name":"Time Magnifier","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FLASH61_SQ_08_ITEM"}},{"itemId":650828,"className":"PILGRIM47_ITEM_02","name":"Amulet","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650829,"className":"SIAULIAI_46_1_MQ_01_ITEM","name":"Austeja's Fragmented Symbol","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650830,"className":"stonetablet03","name":"Revelation of Kvailas Forest","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"stonetablet03","numArg1":10}},{"itemId":650831,"className":"SIAULIAI_46_1_MQ_02_ITEM","name":"Austeja's Symbol","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650832,"className":"SIAULIAI_46_1_SQ_03_ITEM","name":"Dulke's Package","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650833,"className":"SIAULIAI_46_1_SQ_05_ITEM01","name":"Bee Honey Jelly","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SIAULIAI_46_1_SQ_05_ITEM01"}},{"itemId":650834,"className":"SIAULIAI_46_1_SQ_05_ITEM02","name":"Spring Light Grass","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650835,"className":"CHATHEDRAL54_MQ01_PART1_ITEM","name":"Maven's Second Key","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHATHEDRAL54_MQ01_PART1_ITEM"}},{"itemId":650836,"className":"CHATHEDRAL54_MQ04_PART2_ITEM","name":"Maven's Third Key","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHATHEDRAL54_MQ04_PART2_ITEM"}},{"itemId":650837,"className":"CHATHEDRAL56_MQ04_PART2_ITEM","name":"Maven's Fourth Key","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHATHEDRAL56_MQ04_PART2_ITEM"}},{"itemId":650838,"className":"CHATHEDRAL56_SQ01_ITEM","name":"Maven's Fifth Key","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHATHEDRAL56_SQ01_ITEM"}},{"itemId":650839,"className":"CATHEDRAL54_MQ02_PART2_ITEM","name":"Symbol of Spiritual Power","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CATHEDRAL54_MQ02_PART2_ITEM"}},{"itemId":650840,"className":"CHATHEDRAL54_SQ03_PART1_ITEM","name":"Turbid Solvent","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650841,"className":"CATHEDRAL54_SQ04_PART2_ITEM","name":"Daram's Newly Developed Reagent","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CATHEDRAL54_SQ04_PART2_ITEM"}},{"itemId":650842,"className":"PILGRIMROAD55_SQ01_ITEM","name":"Moon Thistle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650843,"className":"PILGRIMROAD55_SQ03_ITEM","name":"Experimental Medicine","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PILGRIMROAD55_SQ03_ITEM"}},{"itemId":650844,"className":"PILGRIMROAD55_SQ06_ITEM","name":"Drugged Meat","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650845,"className":"PILGRIMROAD55_SQ02_ITEM","name":"Meat","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650846,"className":"CHATHEDRAL56_MQ01_ITEM","name":"Demonic Research: Transformation","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"CHATHEDRAL56_MQ01_ITEM_LOG"}},{"itemId":650847,"className":"CHATHEDRAL56_MQ02_1_ITEM","name":"Naktis' Servant's Cloth Scrap","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650848,"className":"CHATHEDRAL56_MQ02_ITEM","name":"Demon Transform Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHATHEDRAL56_MQ03_ITEM"}},{"itemId":650849,"className":"CHATHEDRAL54_MQ02_PART2_ITEM","name":"Old Key","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650850,"className":"PILGRIM51_ITEM_10","name":"Sacrificial Lean Monster Meat","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650851,"className":"PILGRIM51_ITEM_11","name":"Cleric Master's Symbol of Faith","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PILGRIM51_ITEM_11"}},{"itemId":650852,"className":"PILGRIM52_ITEM_13","name":"Tough Leather","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650853,"className":"PILGRIM52_ITEM_14","name":"Tough Leather Pouch","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650854,"className":"PILGRIM52_ITEM_15","name":"Water-Filled Leather Pouch","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650855,"className":"PILGRIM52_ITEM_16","name":"Old Key","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":650856,"className":"stonetablet06","name":"Revelation of Great Cathedral","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"stonetablet06","numArg1":10}},{"itemId":653041,"className":"stonetablet05","name":"Revelation of Mage Tower","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"stonetablet05","numArg1":10}},{"itemId":660000,"className":"CHATHEDRAL54_SQ01_PART1_ITEM","name":"Demon Lord of Curses, Naktis","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":660001,"className":"PILGRIMROAD55_SQ09_ITEM","name":"Pilgrim Dallas' Corpse","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":660002,"className":"FLASH64_SQ_02_ITEM","name":"Cough Medicine","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":660003,"className":"FLASH64_SQ_03_ITEM","name":"Soldier's Memento","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":660004,"className":"FLASH64_SQ_05_ITEM","name":"Dark Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":660005,"className":"FLASH64_SQ_06_ITEM","name":"Liberation Elixir","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":660006,"className":"FLASH64_SQ_08_ITEM","name":"Petrification Thawing Liquid","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FLASH64_SQ_08_ITEM"}},{"itemId":660007,"className":"FLASH64_SQ_09_ITEM","name":"Petrified Sample","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":660008,"className":"FLASH64_MQ_01_ITEM","name":"Record from the Ruklys Era","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":660009,"className":"FLASH64_MQ_03_ITEM","name":"Scroll of Silence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661000,"className":"FTOWER_FIRE_ESSENCE_2","name":"Jewel of Prominence","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661001,"className":"FTOWER_FIRE_ESSENCE_3","name":"Jewel of Prominence","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661002,"className":"CMINE_COMPASS_ITEM","name":"Mine Compass","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CMINE_COMPASS_ITEM"}},{"itemId":661003,"className":"MINE_1_CRYSTAL_2_ITEM","name":"Purifier Cooling Parts","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661004,"className":"MINE_1_CRYSTAL_1_ITEM","name":"Purifier Operating Parts","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661005,"className":"MINE_1_CRYSTAL_9_ITEM","name":"Purifier Pipe Parts","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661006,"className":"MINE_1_CRYSTAL_18_ITEM","name":"Passage Purifier Parts","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661007,"className":"SELECT_PLEASE_ITEM","name":"Selection Item","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SELECT_PLEASE_ITEM"}},{"itemId":661008,"className":"MINE_2_CRYSTAL_10_ITEM","name":"Mine Lubricant","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661009,"className":"MINE_2_CRYSTAL_16_ITEM","name":"Torn-out Purifier Pipe","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661010,"className":"MINE_2_CRYSTAL_20_ITEM","name":"Main Purifier Parts","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661011,"className":"SIAULIAI_46_3_MQ_04_ITEM","name":"Gaudeji Altar's Magic Piece","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661012,"className":"SIAULIAI_46_4_MQ_04_ITEM","name":"Dorjen's Signature Mead","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661013,"className":"JOB_PELTASTA2_1_ITEM","name":"Glizardon's Black Nails","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661016,"className":"JOB_FALCONER5_1_ITEM","name":"Fresh Meat","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661017,"className":"CATACOMB_38_2_SQ_01_ITEM","name":"Orb imbued with Aura","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661018,"className":"CATACOMB_38_2_SQ_02_ITEM","name":"Orb imbued with Aura","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CATACOMB_38_2_SQ_02_ITEM"}},{"itemId":661019,"className":"CATACOMB_38_2_SQ_03_ITEM","name":"Wisdom Guiding Stone","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CATACOMB_38_2_SQ_03_ITEM"}},{"itemId":661020,"className":"CATACOMB_38_2_SQ_05_ITEM","name":"Eyes of Truth Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661021,"className":"CATACOMB_38_2_SQ_06_ITEM","name":"Eyes of Truth","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CATACOMB_38_2_SQ_06_ITEM"}},{"itemId":661022,"className":"CATACOMB_04_SQ_03_ITEM","name":"Soul Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CATACOMB_04_SQ_03_ITEM"}},{"itemId":661023,"className":"CATACOMB_04_SQ_MEMO_ITEM","name":"Disciple Hones' Memo","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CATACOMB_04_SQ_MEMO_ITEM"}},{"itemId":661024,"className":"CATACOMB_04_SQ_01_ITEM","name":"Spatial Magic Gem Fragment of Contract","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661025,"className":"CATACOMB_04_SQ_02_ITEM","name":"Spatial Magic Gem of Contract","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661026,"className":"CATACOMB_04_SQ_04_ITEM","name":"Spatial Magic Gem of Promise","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661027,"className":"CATACOMB_04_SQ_06_ITEM","name":"Spatial Magic Gem of Offer","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661028,"className":"CATACOMB_04_SQ_07_ITEM","name":"Completed Spatial Magic Gem","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661029,"className":"CATACOMB_38_1_SQ_03_ITEM","name":"Kupole Vita's Purification Powder","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CATACOMB_38_1_SQ_03_ITEM"}},{"itemId":661030,"className":"CATACOMB_38_1_SQ_05_ITEM","name":"Contract Binded Remains","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661031,"className":"CATACOMB_02_SQ_03_ITEM","name":"Brooch with Valius' magic","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CATACOMB_02_SQ_03_ITEM"}},{"itemId":661032,"className":"CATACOMB_02_SQ_06_ITEM","name":"Evil Energy Suppressing Seal","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CATACOMB_02_SQ_06_ITEM"}},{"itemId":661033,"className":"JOB_VELHIDER_COUPON","name":"Velheider Voucher","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"Velhider"}},{"itemId":661034,"className":"JOB_HAWK_COUPON","name":"Hawk Voucher","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"pet_hawk"}},{"itemId":661035,"className":"JOB_SQUIRE_6_1_ITEM","name":"Broken Legwyn Seal Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661036,"className":"JOB_CORSAIR_6_1_ITEM","name":"Great Pirate Vladslovas' Broken Necklace","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661037,"className":"JOB_CENTURION_6_1_ITEM","name":"Royal Army's Torn Flag","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661038,"className":"JOB_CHRONO_6_1_ITEM","name":"Orb Recorder of Past Memories","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_CHRONO_6_1_ITEM"}},{"itemId":661039,"className":"JOB_NECROMANCER_6_1_ITEM","name":"Relic of the Dead's Regret","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661040,"className":"JOB_ROGUE_6_1_ITEM","name":"Rogue Master's Pouch","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_ROGUE_6_1_ITEM"}},{"itemId":661041,"className":"JOB_FLETCHER_6_1_ITEM","name":"Arrow of the First Fletcher Master","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661042,"className":"JOB_FALCONER_6_1_ITEM","name":"Food Pouch","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_FALCONER_6_1_ITEM"}},{"itemId":661043,"className":"JOB_MONK_6_1_ITEM","name":"Monk Master's Support Supplies","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661044,"className":"JOB_PARDONER_6_1_ITEM","name":"Pardoner Master's Books","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661045,"className":"JOB_DRUID_6_1_ITEM","name":"Plant Monster Sample","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661046,"className":"JOB_ORACLE_6_1_ITEM","name":"Namott of Purification","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_ORACLE_6_1_ITEM"}},{"itemId":661047,"className":"KATYN_10_MQ_04_ITEM","name":"Guiding Owl's Will","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_KATYN_10_MQ_04_ITEM"}},{"itemId":661048,"className":"KATYN_10_MQ_04_ITEM_2","name":"Karolis Altar Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661049,"className":"KATYN_10_MQ_05_ITEM","name":"Karolis Altar Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661050,"className":"KATYN_10_MQ_11_ITEM","name":"Crystalized essence of the Karolis Fountain","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_KATYN_10_MQ_11_ITEM"}},{"itemId":661051,"className":"KATYN_12_MQ_02_ITEM","name":"Letas' Sacred Branch","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_KATYN_12_MQ_02_ITEM"}},{"itemId":661052,"className":"KATYN_12_MQ_03_ITEM","name":"Namott of Suppression","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_KATYN_12_MQ_03_ITEM"}},{"itemId":661053,"className":"KATYN_12_SQ_01_ITEM","name":"Picked-up Letter at Letas Stream","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_KATYN_12_SQ_01_ITEM"}},{"itemId":661054,"className":"JOB_2_CRYOMANCER_2_1_ITEM","name":"Unmelting Magical Piece of Ice","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661055,"className":"JOB_2_PYROMANCER_3_1_ITEM","name":"Condensed Firestone","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_2_PYROMANCER_3_1_ITEM"}},{"itemId":661056,"className":"JOB_2_CRYOMANCER_3_1_ITEM","name":"Frost Tome","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_2_CRYOMANCER_3_1_ITEM"}},{"itemId":661057,"className":"JOB_2_PSYCHOKINO_3_1_ITEM","name":"Psychokino Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_2_PSYCHOKINO_3_1_ITEM"}},{"itemId":661058,"className":"JOB_2_RANGER_3_1_ITEM","name":"Wall Restoration Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661059,"className":"JOB_2_QUARRELSHOOTER_3_1_ITEM","name":"Sticky Plant Sap","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661060,"className":"JOB_2_SAPPER_3_1_ITEM","name":"Sturdy Research Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661061,"className":"JOB_2_PSYCHOKINO_4_1_ITEM","name":"Spell Detector Orb","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_2_PSYCHOKINO_4_1_ITEM"}},{"itemId":661062,"className":"JOB_2_LINKER_4_1_ITEM","name":"Soul Flask","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661063,"className":"JOB_2_SAPPER_4_1_ITEM","name":"Delmore Outskirts Gun Powder","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661064,"className":"JOB_2_HUNTER_4_1_ITEM","name":"Hunter's Pass","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661065,"className":"JOB_2_WUGUSHI_4_1_ITEM","name":"Wugushi Poison Bottle","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_2_WUGUSHI_4_1_ITEM"}},{"itemId":661066,"className":"JOB_2_LINKER_5_1_ITEM_01","name":"Crystal of Twisted Souls","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661067,"className":"JOB_2_LINKER_5_1_ITEM_02","name":"Shard of Chaotic Emotions","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661068,"className":"JOB_2_WUGUSHI_5_1_ITEM","name":"Wugushi's Pot","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_2_WUGUSHI_5_1_ITEM"}},{"itemId":661069,"className":"JOB_2_SCOUT_5_1_ITEM","name":"Scout Records","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_2_SCOUT_5_1_ITEM"}},{"itemId":661070,"className":"JOB_2_ARCHER_3_1_ITEM","name":"Archer's Test Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661071,"className":"JOB_WARLOCK_7_1_ITEM","name":"Evil Spirit Awakening Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_WARLOCK_7_1_ITEM"}},{"itemId":661072,"className":"JOB_FEATHERFOOT_7_1_ITEM","name":"Featherfoot's Incantation Tools","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_FEATHERFOOT_7_1_ITEM"}},{"itemId":661073,"className":"JOB_KABBALIST_7_1_ITEM","name":"Mystical Orb","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_KABBALIST_7_1_ITEM"}},{"itemId":661074,"className":"JOB_SHINOBI_HIDDEN_ITEM_1","name":"Disposable Reagent Bottle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661075,"className":"JOB_SHINOBI_HIDDEN_ITEM_2","name":"Liquefied Dissolvent","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661076,"className":"JOB_SHINOBI_HIDDEN_ITEM_3","name":"Yellow-Eyed Flower Petal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661077,"className":"JOB_SHINOBI_HIDDEN_ITEM_4","name":"Empty Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_SHINOBI_HIDDEN_ITEM_4"}},{"itemId":661078,"className":"JOB_SHINOBI_HIDDEN_ITEM_5","name":"Scroll With Writings","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_SHINOBI_HIDDEN_ITEM_5"}},{"itemId":661079,"className":"JOB_SHINOBI_HIDDEN_ITEM_6","name":"Scout Master's Special Reagent","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661080,"className":"JOB_ALCHEMIST_6_1_ITEM_1","name":"Summoned Soil","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661081,"className":"JOB_ALCHEMIST_6_1_ITEM_2","name":"Limestone Powder","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661082,"className":"JOB_ALCHEMIST_6_1_ITEM_3","name":"Charcoal Powder","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661083,"className":"PILGRIM312_SQ_08_ITEM","name":"Sutatis Trade Route Key","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661084,"className":"JOB_CHAPLAIN_5_1_ITEM","name":"Lost Materials","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661085,"className":"ORCHARD_34_1_SQ_1_ITEM","name":"Research Materials","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661086,"className":"ORCHARD_34_1_SQ_2_ITEM","name":"Manual","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ORCHARD_34_1_SQ_2_ITEM"}},{"itemId":661087,"className":"ORCHARD_34_1_SQ_3_ITEM","name":"Materials for Research","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661088,"className":"ORCHARD_34_1_SQ_4_ITEM_1","name":"Anesthetic Powder","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ORCHARD_34_1_SQ_4_ITEM_1"}},{"itemId":661089,"className":"ORCHARD_34_1_SQ_4_ITEM_2","name":"Green Eldigo Blood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661090,"className":"ORCHARD_34_1_SQ_5_ITEM_1","name":"Lost Research Note, Chapter 1","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ORCHARD_34_1_SQ_5_ITEM_1"}},{"itemId":661091,"className":"ORCHARD_34_1_SQ_5_ITEM_2","name":"Lost Research Note, Chapter 2","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ORCHARD_34_1_SQ_5_ITEM_2"}},{"itemId":661092,"className":"ORCHARD_34_1_SQ_5_ITEM_3","name":"Lost Research Note, Chapter 3","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ORCHARD_34_1_SQ_5_ITEM_3"}},{"itemId":661093,"className":"ORCHARD_34_1_SQ_6_ITEM","name":"Fruit Juice Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661094,"className":"ORCHARD_34_1_SQ_9_ITEM_1","name":"Aged Fruit Tree Sap","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661095,"className":"ORCHARD_34_1_SQ_9_ITEM_2","name":"Red Lake Water","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661096,"className":"ORCHARD_34_1_SQ_11_ITEM_1","name":"Alchemical Blend","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661097,"className":"ORCHARD_34_1_SQ_11_ITEM_2","name":"Sarma's Experiment Solution","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661098,"className":"ORCHARD_34_1_SQ_12_ITEM","name":"Small Experiment Flask","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661099,"className":"ORCHARD_34_1_SQ_5_ITEM_4","name":"Alemeth Forest Ingredient List","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661100,"className":"ORCHARD_34_1_SQ_7_ITEM","name":"Overgrown Plant Leaves","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661101,"className":"HIDDEN_RUNECASTER_ITEM_1","name":"Rune Stone of Ice","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HIDDEN_RUNECASTER_ITEM_1"}},{"itemId":661102,"className":"HIDDEN_RUNECASTER_ITEM_2","name":"Rune Stone of Giants","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HIDDEN_RUNECASTER_ITEM_1"}},{"itemId":661103,"className":"HIDDEN_RUNECASTER_ITEM_3","name":"Rune Stone of Justice","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HIDDEN_RUNECASTER_ITEM_1"}},{"itemId":661104,"className":"HIDDEN_RUNECASTER_ITEM_4","name":"Rune Stone of Protection","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HIDDEN_RUNECASTER_ITEM_1"}},{"itemId":661105,"className":"HIDDEN_RUNECASTER_ITEM_5","name":"Rune Stone of Destruction","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HIDDEN_RUNECASTER_ITEM_1"}},{"itemId":661106,"className":"HIDDEN_RUNECASTER_ITEM_6","name":"Rune Stone of the First Master","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661107,"className":"JOB_RUNECASTER_6_1_ITEM_1","name":"Blue Magic Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661108,"className":"JOB_RUNECASTER_6_1_ITEM_2","name":"Malstatue's Magic Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661109,"className":"JOB_RUNECASTER_6_1_ITEM_3","name":"Velaphid's Cold Blood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661110,"className":"JOB_RUNECASTER_6_1_ITEM_4","name":"Pumpleflap's Robust Horn","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661111,"className":"PRISON_78_MQ_3_ITEM","name":"Teal Magic Stone","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PRISON_78_MQ_3_ITEM"}},{"itemId":661112,"className":"PRISON_78_MQ_4_ITEM","name":"Kalejimas Demon's Blood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661113,"className":"PRISON_78_MQ_5_ITEM","name":"Magic Control Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PRISON_78_MQ_5_ITEM"}},{"itemId":661114,"className":"PRISON_78_MQ_8_ITEM","name":"Orb of Dominance Magic","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661115,"className":"PRISON_79_MQ_1_ITEM","name":"Core of Evil Energy","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661116,"className":"PRISON_79_MQ_3_ITEM","name":"Instructions for the Kalejimas Secret Device","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661117,"className":"PRISON_79_MQ_5_ITEM","name":"Oil for the Blue Lamp","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661118,"className":"PRISON_79_MQ_6_ITEM","name":"Oil for the Red Lamp","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661119,"className":"PRISON_79_MQ_8_ITEM","name":"King's Red Jewel","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661120,"className":"PRISON_80_MQ_3_ITEM","name":"Grinender Seal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661121,"className":"PRISON_80_MQ_4_ITEM","name":"Kalejimas Teleport Magic Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PRISON_80_MQ_4_ITEM"}},{"itemId":661122,"className":"PRISON_80_MQ_9_ITEM","name":"King's Green Jewel","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661123,"className":"PRISON_81_MQ_3_ITEM","name":"Soul Stone of Restrainment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661124,"className":"PRISON_81_MQ_5_ITEM_1","name":"Fire Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661125,"className":"PRISON_81_MQ_5_ITEM_2","name":"Ice Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661126,"className":"PRISON_81_MQ_5_ITEM_3","name":"Lightning Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661127,"className":"PRISON_81_MQ_5_ITEM_4","name":"Poison Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661128,"className":"PRISON_81_MQ_7_ITEM","name":"King's Yellow Jewel","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661129,"className":"PRISON_82_MQ_2_ITEM","name":"Observational Detector Component","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661130,"className":"PRISON_82_MQ_7_ITEM","name":"Worn Gravity Stone","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PRISON_82_MQ_7_ITEM"}},{"itemId":661131,"className":"PRISON_82_MQ_10_ITEM","name":"King's Blue Jewel","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661132,"className":"stonetablet08","name":"Revelation of Kalejimas Prison","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"stonetablet08","numArg1":10}},{"itemId":661133,"className":"PRISON_81_SQ_1_ITEM","name":"Letters of a Prisoner","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"PRISON_81_SQ_1_ITEM_dlg1","numArg1":10}},{"itemId":661134,"className":"JOB_HOGLAN_COUPON","name":"Hoglan Companion Voucher","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"hoglan_Pet"}},{"itemId":661135,"className":"ORCHARD_34_3_SQ_ITEM1","name":"Barha Herb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661136,"className":"ORCHARD_34_3_SQ_ITEM2","name":"Griba's Slimy Juice","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661137,"className":"ORCHARD_34_3_SQ_ITEM3","name":"Barha Antidote","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661138,"className":"ORCHARD_34_3_SQ_ITEM4","name":"Recipe List","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ORCHARD_34_3_SQ_5_dlg1","numArg1":10}},{"itemId":661139,"className":"ORCHARD_34_3_SQ_ITEM5","name":"Neutralizer Catalyst","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661140,"className":"ORCHARD_34_3_SQ_ITEM6","name":"Overgrowth Solution Neutralizer","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661141,"className":"ORCHARD_34_3_SQ_ITEM7","name":"Sticky Rafflesia Sap","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661142,"className":"ORCHARD_34_3_SQ_ITEM8","name":"Enhanced Barha Antidote","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661143,"className":"CASTLE_20_3_SQ_1_ITEM","name":"Clue Memo","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CASTLE_20_3_SQ_1_ITEM"}},{"itemId":661144,"className":"CASTLE_20_3_SQ_3_ITEM_1","name":"Magical Paper","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CASTLE_20_3_SQ_3_ITEM_1"}},{"itemId":661145,"className":"CASTLE_20_3_SQ_3_ITEM_2","name":"Inner Wall District 8 Management Book","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661146,"className":"CASTLE_20_3_SQ_5_ITEM_1","name":"Steel Ball","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CASTLE_20_3_SQ_5_ITEM_1"}},{"itemId":661147,"className":"CASTLE_20_3_SQ_5_ITEM_2","name":"Wooden Rod","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661148,"className":"CASTLE_20_3_SQ_5_ITEM_3","name":"Shoddy Hammer","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661149,"className":"CASTLE_20_3_SQ_6_ITEM","name":"Magical Eye","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CASTLE_20_3_SQ_6_ITEM"}},{"itemId":661150,"className":"CASTLE_20_2_SQ_3_ITEM","name":"Maintenance Documents for Inner Wall District 9","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661151,"className":"CASTLE_20_2_SQ_4_ITEM","name":"Scroll of Projection","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CASTLE_20_2_SQ_4_ITEM"}},{"itemId":661152,"className":"CASTLE_20_2_SQ_10_ITEM_1","name":"Revelation Day Action Plans","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CASTLE_20_2_SQ_10_ITEM_1"}},{"itemId":661153,"className":"CASTLE_20_2_SQ_10_ITEM_2","name":"Classified Equipment Manual for District 9","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661154,"className":"CASTLE_20_2_SQ_12_ITEM","name":"Emergency Orders","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CASTLE_20_2_SQ_12_ITEM"}},{"itemId":661155,"className":"CASTLE_20_1_SQ_2_ITEM","name":"Kupole Milda's Investigation Records","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661156,"className":"CASTLE_20_1_SQ_5_ITEM","name":"Red Ignition Magic Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661157,"className":"CASTLE_20_1_SQ_8_ITEM","name":"Outer Wall Core","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661158,"className":"CASTLE_20_4_SQ_1_ITEM","name":"Vincetas' Squad Supplies","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661159,"className":"CASTLE_20_4_SQ_2_ITEM_1","name":"Military Grade Bomb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661160,"className":"CASTLE_20_4_SQ_2_ITEM_2","name":"Military Grade Antidote","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CASTLE_20_4_SQ_2_ITEM_2"}},{"itemId":661161,"className":"CASTLE_20_4_SQ_3_ITEM","name":"Obstruction Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CASTLE_20_4_SQ_3_ITEM"}},{"itemId":661162,"className":"CASTLE_20_4_SQ_6_ITEM","name":"Keepsakes of Vincentas' Squad","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661163,"className":"CASTLE_20_4_SQ_10_ITEM","name":"Assassin Ebonypawn's Mark","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661164,"className":"KATYN_18_RE_SQ_1_ITEM","name":"Lost Wall Supplies","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661165,"className":"KATYN_18_RE_SQ_3_ITEM","name":"Soldier's Keepsake","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661166,"className":"KATYN_18_RE_SQ_6_ITEM","name":"Scout Report","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661167,"className":"KATYN_18_RE_SQ_7_ITEM","name":"Fragment containing Divine Power","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661168,"className":"KATYN_18_RE_SQ_8_ITEM","name":"Kule Peak's Divine Bead","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661169,"className":"HIDDEN_MIKO_ITEM_1","name":"Powerless Gohei","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661170,"className":"HIDDEN_MIKO_BEAD_ITEM_1","name":"First Spiritual Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661171,"className":"HIDDEN_MIKO_BEAD_ITEM_2","name":"Second Spiritual Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661172,"className":"HIDDEN_MIKO_BEAD_ITEM_3","name":"Third Spiritual Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661173,"className":"HIDDEN_MIKO_BEAD_ITEM_4","name":"Fourth Spiritual Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661174,"className":"HIDDEN_MIKO_BEAD_ITEM_5","name":"Fifth Spiritual Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661175,"className":"HIDDEN_MIKO_BEAD_ITEM_6","name":"Sixth Spiritual Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661176,"className":"HIDDEN_MIKO_BEAD_ITEM_7","name":"Seventh Spiritual Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661177,"className":"HIDDEN_MIKO_BEAD_ITEM_8","name":"Eighth Spiritual Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661178,"className":"HIDDEN_MIKO_BEAD_ITEM_9","name":"Ninth Spiritual Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661179,"className":"HIDDEN_MIKO_BEAD_ITEM_10","name":"Tenth Spiritual Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661180,"className":"HIDDEN_MIKO_BEAD_ITEM_11","name":"Eleventh Spiritual Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661181,"className":"HIDDEN_MIKO_BEAD_ITEM_12","name":"Twelfth Spiritual Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661182,"className":"HIDDEN_MIKO_ITEM_2","name":"Gohei with a Divine Spirit","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661183,"className":"JOB_MIKO_6_1_ITEM","name":"Barrier Gohei","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_MIKO_6_1_ITEM"}},{"itemId":661184,"className":"steam_JOB_HOGLAN_COUPON","name":"Hoglan Companion Voucher","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"hoglan_Pet"}},{"itemId":661185,"className":"WTREES_21_2_SQ_1_ITEM","name":"Temporary Nobreer Cure","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_WTREES_21_2_SQ_1_ITEM"}},{"itemId":661186,"className":"WTREES_21_2_SQ_2_ITEM","name":"Jugrinas' Testing Solution","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661187,"className":"WTREES_21_2_SQ_3_ITEM","name":"Epidemic Detector","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_WTREES_21_2_SQ_3_ITEM"}},{"itemId":661188,"className":"WTREES_21_2_SQ_4_ITEM","name":"Sample Collecting Tools","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661189,"className":"WTREES_21_2_SQ_5_ITEM","name":"Plant Sample from Nobreer Forest","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661190,"className":"WTREES_21_2_SQ_6_ITEM_1","name":"Jugrinas' Special Solution","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_WTREES_21_2_SQ_6_ITEM_1"}},{"itemId":661191,"className":"WTREES_21_2_SQ_6_ITEM_2","name":"Sample Container","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661192,"className":"WTREES_21_2_SQ_10_ITEM","name":"Demonic Plague Core","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661193,"className":"WTREES_21_1_SQ_1_ITEM","name":"Prophecy Tome","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_WTREES_21_1_SQ_1_ITEM"}},{"itemId":661194,"className":"WTREES_21_1_SQ_4_ITEM","name":"Impure Blood of Yudejan","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661195,"className":"WTREES_21_1_SQ_6_ITEM","name":"Token of the Demon Treaty","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661196,"className":"WTREES_21_1_SQ_7_ITEM","name":"Goddess' Stone of Faith","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661197,"className":"WTREES_21_1_SQ_8_ITEM","name":"Token of the Goddess' Treaty","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661198,"className":"WTREES_21_1_SQ_9_ITEM","name":"The Key of the Treaty","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661199,"className":"WTREES_21_1_SQ_10_ITEM","name":"Treaty Slate","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":661210,"className":"E_Balloon_1","name":"Balloon: 트","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_E_Balloon","strArg":"kor3"}},{"itemId":661211,"className":"E_Balloon_2","name":"Balloon: 오","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_E_Balloon","strArg":"kor4"}},{"itemId":661212,"className":"E_Balloon_3","name":"Balloon: 세","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_E_Balloon","strArg":"kor5"}},{"itemId":661213,"className":"E_Balloon_4","name":"Balloon: 고","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_E_Balloon","strArg":"kor1"}},{"itemId":661214,"className":"E_Balloon_5","name":"Balloon: 혓","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_E_Balloon","strArg":"kor2"}},{"itemId":661215,"className":"E_Balloon_6","name":"Balloon: 뇌","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_E_Balloon","strArg":"kor6"}},{"itemId":661216,"className":"E_Balloon_7","name":"Balloon: T","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_E_Balloon","strArg":"T"}},{"itemId":661217,"className":"E_Balloon_8","name":"Balloon: O","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_E_Balloon","strArg":"O"}},{"itemId":661218,"className":"E_Balloon_9","name":"Balloon: S","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_E_Balloon","strArg":"S"}},{"itemId":661219,"className":"E_Balloon_10","name":"Balloon: {img star_mark 20 20}","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_E_Balloon","strArg":"star"}},{"itemId":661221,"className":"EscapeStone_Klaipeda","name":"Klaipeda Warpstone","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Escape_To_City","strArg":"City_Klaipeda"}},{"itemId":661222,"className":"EscapeStone_Orsha","name":"Orsha Warp Stone","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_Escape_To_City","strArg":"City_Orsha"}},{"itemId":662000,"className":"FORMINE_ARMOR_BAG01","name":"Leather Front Plate","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662001,"className":"FORMINE_ARMOR_SCAPULAR","name":"Leafy Shoulder","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662002,"className":"FORMINE_ARMOR_BAG02","name":"Leather Back Plate","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662003,"className":"FORMINE_ARMOR_THORAX","name":"Leather Chest Protector","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662004,"className":"SOUT_Q_26_ITEM","name":"Strong Roots","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662005,"className":"SOUT_Q_27_ITEM","name":"Kepa Teeth","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662006,"className":"SOUT_Q_28_ITEM","name":"Jukopus Leather","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662007,"className":"SOUT_Q_29_ITEM","name":"Vubbe Thief Leather","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662008,"className":"ROKAS30_PIPOTI02_ITEM","name":"Key","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662009,"className":"PILGRIM47_SQ_030_ITEM","name":"Kindling","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662010,"className":"PILGRIM50_SQ_090_ITEM","name":"Scripture","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662011,"className":"PILGRIM50_SQ_028_ITEM","name":"Test Soul Reagent","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PILGRIM50_ITEM_11"}},{"itemId":662012,"className":"PILGRIM50_SQ_091_ITEM","name":"Cold Monster Fluid","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662013,"className":"PILGRIM52_SQ_011_ITEM","name":"Theophilis' Bag","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662014,"className":"PILGRIM52_SQ_060_ITEM","name":"Picture Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662015,"className":"PILGRIM52_SQ_060_ITEM_2","name":"Empty Frame","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662016,"className":"PILGRIM51_SQ_9_ITEM_1","name":"Warp Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":10000,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PILGRIM51_SQ_9_ITEM_1","strArg":"f_remains_40"}},{"itemId":662017,"className":"FARM47_4_SQ_010_ITEM_1","name":"Strong Rope","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662018,"className":"FARM47_4_SQ_040_ITEM_1","name":"Hardtack","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662019,"className":"FARM47_4_SQ_060_ITEM_1","name":"Scorpio Venom","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662020,"className":"FARM47_4_SQ_070_ITEM_1","name":"Sweet Herb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662021,"className":"FARM47_4_SQ_070_ITEM_2","name":"Nutritious Tonic","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662022,"className":"FARM47_4_SQ_090_ITEM_1","name":"Hastily Prepared Bread","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662023,"className":"FARM47_4_SQ_090_ITEM_2","name":"Rotten Bread","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FARM47_4_SQ_090_ITEM_2"}},{"itemId":662024,"className":"FARM47_4_SQ_090_ITEM_3","name":"Fresh Bread","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662025,"className":"FARM47_3_SQ_010_ITEM_1","name":"Well-Grown White Radish","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662026,"className":"FARM47_3_SQ_020_ITEM_1","name":"Roughly Chopped Wood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662027,"className":"FARM47_3_SQ_020_ITEM_2","name":"Voodoo Doll","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662028,"className":"FARM47_3_SQ_030_ITEM_1","name":"First Empty bottle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662029,"className":"FARM47_3_SQ_040_ITEM_1","name":"Bottle filled with Monster Energy","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662030,"className":"FARM47_3_SQ_050_ITEM_1","name":"Ellum's Evil Aura","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662031,"className":"FARM47_3_SQ_050_ITEM_2","name":"Ellum's Evil Aura","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662032,"className":"FARM47_3_SQ_050_ITEM_3","name":"Ellum's Evil Aura","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662033,"className":"FARM47_3_SQ_050_ITEM_4","name":"Keposeed's Evil Energy","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662034,"className":"FARM47_3_SQ_050_ITEM_5","name":"Keposeed's Evil Energy","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662035,"className":"FARM47_3_SQ_050_ITEM_6","name":"Keposeed's Evil Energy","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662037,"className":"FARM47_3_SQ_030_ITEM_2","name":"Second Empty Bottle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662038,"className":"FARM47_3_SQ_070_ITEM_1","name":"Opaque Purification Liquid","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662039,"className":"FARM47_2_SQ_010_ITEM_1","name":"Small Stone Statue's Head","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662040,"className":"FARM47_2_SQ_020_ITEM_1","name":"Small Stone Statue's Upper Body","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662041,"className":"FARM47_2_SQ_030_ITEM_1","name":"Small Stone Statue's Lower Body","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662042,"className":"FARM47_2_SQ_040_ITEM_1","name":"Small Stone Statue's Wings","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662043,"className":"FARM47_2_SQ_030_ITEM_2","name":"Blunt Wooden Piece","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FARM47_2_SQ_030_ITEM_2"}},{"itemId":662044,"className":"FARM47_2_SQ_030_ITEM_3","name":"Wooden Rod Piece","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662045,"className":"FARM47_2_SQ_030_ITEM_4","name":"Wooden Hammer","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662046,"className":"FARM47_2_SQ_050_ITEM_1","name":"Sticky Sap","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662047,"className":"FARM47_2_SQ_090_ITEM_1","name":"Sack of Grain","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662048,"className":"FARM47_2_SQ_090_ITEM_2","name":"Bitter Drink","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662049,"className":"FARM47_1_SQ_010_ITEM_1","name":"Wooden Rod","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662050,"className":"FARM47_1_SQ_020_ITEM_1","name":"Soft Leather","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662051,"className":"FARM47_1_SQ_030_ITEM_1","name":"Throw Gu Pot","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FARM47_1_SQ_030_ITEM_1"}},{"itemId":662052,"className":"FARM47_1_SQ_030_ITEM_2","name":"Full Poison Jar","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662053,"className":"FARM47_1_SQ_040_ITEM_1","name":"Shovel","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662054,"className":"FARM47_1_SQ_040_ITEM_2","name":"Pickaxe","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662055,"className":"FARM47_1_SQ_040_ITEM_3","name":"Rake","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662056,"className":"FARM47_1_SQ_040_ITEM_4","name":"Sickle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662057,"className":"FARM47_1_SQ_040_ITEM_5","name":"Rake(Unused)","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662058,"className":"FARM47_1_SQ_040_ITEM_6","name":"Horacius' Handwritten Recommendation","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"FARM47_1_SQ_040_ITEM_6_LOG"}},{"itemId":662059,"className":"FARM47_1_SQ_050_ITEM_1","name":"Uprooted Niole","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662060,"className":"FARM47_1_SQ_060_ITEM_1","name":"Fresh Meat","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662061,"className":"FARM47_1_SQ_060_ITEM_2","name":"Thoroughly Dried Jerky","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662062,"className":"FARM47_1_SQ_100_ITEM_1","name":"Magic Stone of Blessing","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FARM47_1_SQ_100_ITEM_1"}},{"itemId":662063,"className":"FARM47_4_SQ_120_ITEM_1","name":"Seed Bag","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662064,"className":"FARM47_3_SQ_100_ITEM_1","name":"Lump of Meat","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662065,"className":"FARM47_1_SQ_120_ITEM_1","name":"{memo This name/function means that this is a list of people to sign on}The compact under joint signatures","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662066,"className":"FARM47_2_SQ_080_ITEM_1","name":"Small Goddess Statue","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662067,"className":"FARM47_2_SQ_070_ITEM_1","name":"Orange Dandel Wingpiece","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662068,"className":"ROKAS29_VACYS_ITEM_1","name":"Varkis' Research Materials (2)","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ROKAS29_VACYS_ITEM_2_LOG"}},{"itemId":662069,"className":"ROKAS29_VACYS_ITEM_2","name":"Varkis' Research Materials (3)","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ROKAS29_VACYS_ITEM_3_LOG"}},{"itemId":662070,"className":"ROKAS29_VACYS_ITEM_3","name":"Varkis' Research Materials (4)","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ROKAS29_VACYS_ITEM_4_LOG"}},{"itemId":662071,"className":"ROKAS29_VACYS_ITEM_4","name":"Varkis' Research Materials (5)","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662072,"className":"FARM47_3_SQ_050_ITEM_11","name":"Wizard's Urn","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FARM47_3_SQ_050_ITEM_11"}},{"itemId":662073,"className":"PILGRIM50_ITEM_11","name":"Experimental Reagent","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PILGRIM50_ITEM_11"}},{"itemId":662074,"className":"FARM47_2_SQ_070_ITEM_2","name":"Dry Firewood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662075,"className":"REMAINS37_1_SQ_010_ITEM_1","name":"Loot Bag","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662076,"className":"REMAINS37_1_SQ_010_ITEM_2","name":"Monster Leather Paper","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662077,"className":"REMAINS37_1_SQ_030_ITEM_1","name":"Red Poison Bottle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REMAINS37_1_SQ_030_ITEM_1"}},{"itemId":662078,"className":"REMAINS37_1_SQ_030_ITEM_2","name":"Acidic Body Fluid","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662079,"className":"REMAINS37_1_SQ_030_ITEM_3","name":"Diluent","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662080,"className":"REMAINS37_1_SQ_040_ITEM_1","name":"Paralysis Needle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REMAINS37_1_SQ_040_ITEM_1"}},{"itemId":662081,"className":"REMAINS37_1_SQ_040_ITEM_2","name":"Stiff Hair","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662082,"className":"REMAINS37_1_SQ_040_ITEM_3","name":"Rough Brush","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662083,"className":"REMAINS37_1_SQ_050_ITEM_1","name":"Craute Grass Juice","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662084,"className":"REMAINS37_1_SQ_070_ITEM_1","name":"Bone Powder","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662085,"className":"REMAINS37_1_SQ_080_ITEM_1","name":"Special Ink","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662086,"className":"REMAINS37_1_SQ_010_ITEM_3","name":"Stone Rubbing","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662087,"className":"REMAINS37_1_SQ_021_ITEM_1","name":"Stone Rubbing","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662088,"className":"REMAINS37_1_SQ_040_ITEM_4","name":"Stone Rubbing","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REMAINS37_1_SQ_040_ITEM_1"}},{"itemId":662089,"className":"REMAINS37_1_SQ_080_ITEM_2","name":"Stone Rubbing","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REMAINS37_1_SQ_040_ITEM_1"}},{"itemId":662090,"className":"REMAINS37_1_SQ_080_ITEM_3","name":"Important Tombstone Rubbing","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REMAINS37_1_SQ_040_ITEM_1"}},{"itemId":662091,"className":"REMAINS37_2_SQ_010_ITEM_1","name":"Flat Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REMAINS37_2_SQ_010_ITEM_1"}},{"itemId":662092,"className":"REMAINS37_2_SQ_010_ITEM_2","name":"Wooden Stick","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662093,"className":"REMAINS37_2_SQ_010_ITEM_3","name":"Crude Shovel","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662094,"className":"REMAINS37_2_SQ_020_ITEM_1","name":"Transposed Small Inscription","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662095,"className":"REMAINS37_2_SQ_040_ITEM_1","name":"Transposed Small Inscription","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662096,"className":"REMAINS37_2_SQ_060_ITEM_1","name":"Transposed Small Inscription","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662097,"className":"REMAINS37_2_SQ_030_ITEM_1","name":"Tombstone Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662098,"className":"REMAINS37_2_SQ_040_ITEM_3","name":"Hunting Basket","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REMAINS37_2_SQ_040_ITEM_3"}},{"itemId":662099,"className":"REMAINS37_2_SQ_040_ITEM_2","name":"Sticky Resin","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662100,"className":"REMAINS37_2_SQ_050_ITEM_1","name":"Dry Bush","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662101,"className":"REMAINS37_2_SQ_050_ITEM_2","name":"Gooey Oil","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662102,"className":"REMAINS37_2_SQ_070_ITEM_1","name":"Eitbaras' Records","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_AITVARAS_RECORD"}},{"itemId":662103,"className":"REMAINS37_3_SQ_020__ITEM_1","name":"Bone Fragments","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662104,"className":"REMAINS37_3_SQ_040__ITEM_1","name":"Metal Plate","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662105,"className":"REMAINS37_3_SQ_041__ITEM_1","name":"Rusty Metal Plate","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662106,"className":"REMAINS37_3_SQ_041__ITEM_2","name":"Magnet on a Rope","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662107,"className":"REMAINS37_3_SQ_050_ITEM_1","name":"Hallowventor Magician Inner Core","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662108,"className":"REMAINS37_3_SQ_060_ITEM_1","name":"Rust Powder","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REMAINS37_3_SQ_060_ITEM_1"}},{"itemId":662109,"className":"REMAINS37_3_SQ_060_ITEM_2","name":"Bubbling Liquid","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662110,"className":"REMAINS37_3_SQ_070_ITEM_1","name":"Metal Plate","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662111,"className":"REMAINS37_3_SQ_070_ITEM_2","name":"Rust Remover","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662112,"className":"REMAINS37_3_SQ_080_ITEM_1","name":"Metal Plate","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662113,"className":"REMAINS37_3_SQ_090_ITEM_1","name":"Stick","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662114,"className":"REMAINS37_3_SQ_090_ITEM_2","name":"Strangly Energized Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REMAINS37_3_SQ_090_ITEM_2"}},{"itemId":662115,"className":"REMAINS37_3_SQ_090_ITEM_3","name":"Detection Rod","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REMAINS37_3_SQ_090_ITEM_3"}},{"itemId":662116,"className":"REMAINS37_3_SQ_091_ITEM_1","name":"Metal Plate","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662117,"className":"REMAINS37_3_SQ_100_ITEM_1","name":"Research Records of Demetrius","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_DEMERTRIJUS_RECORD"}},{"itemId":662118,"className":"REMAINS37_3_SQ_100_ITEM_2","name":"Alwida's Research Results","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662119,"className":"REMAINS37_2_SQ_040_ITEM_4","name":"Food","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REMAINS37_2_SQ_040_ITEM_3"}},{"itemId":662120,"className":"REMAINS37_2_SQ_040_ITEM_5","name":"Coagulant","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_REMAINS37_2_SQ_040_ITEM_3"}},{"itemId":662121,"className":"REMAINS37_1_SQ_030_ITEM_4","name":"Copy of the Nuoridin Falls Prophecy","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PROPHECY_COPY"}},{"itemId":662122,"className":"REMAINS37_1_SQ_041_ITEM_1","name":"Rubbing Tool Pouch","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662123,"className":"REMAINS37_1_SQ_080_ITEM_4","name":"Ink Fixative","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662124,"className":"FLASH_29_1_SQ_040_ITEM_1","name":"Petrification Detector Parts","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662125,"className":"FLASH_29_1_SQ_060_ITEM_1","name":"Braid","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662126,"className":"FLASH_58_SQ_020_ITEM_1","name":"Poisonous Plant","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662127,"className":"FLASH_58_SQ_040_ITEM_1","name":"Barrier Stone Core","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662128,"className":"FLASH_58_SQ_050_ITEM_1","name":"Explosives","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662129,"className":"FLASH_58_SQ_050_ITEM_2","name":"Petrified Cargo Powder","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662130,"className":"FLASH_58_SQ_050_ITEM_3","name":"Barrier Stone Core","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662131,"className":"FLASH_58_SQ_060_ITEM_1","name":"Petrified Last Breath","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FLASH_58_SQ_060_ITEM_1"}},{"itemId":662132,"className":"FLASH_58_SQ_060_ITEM_2","name":"Barrier Stone Core","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662133,"className":"FLASH_58_SQ_070_ITEM_1","name":"Condensed Barrier Stone Core","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FLASH_58_SQ_070_ITEM_1"}},{"itemId":662134,"className":"FLASH_58_SQ_070_ITEM_2","name":"Detonator","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662135,"className":"FLASH_58_SQ_070_ITEM_3","name":"Svitrigaila's Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662136,"className":"FLASH_29_1_SQ_040_ITEM_2","name":"Soldiers' Belongings","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662137,"className":"ROKAS_36_1_SQ_020_ITEM_1","name":"Mysteriously Light Emanating Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662138,"className":"ROKAS_36_1_SQ_020_ITEM_2","name":"Glowing Oil","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662139,"className":"ROKAS_36_1_SQ_040_ITEM_1","name":"Luminous Moss","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662140,"className":"ROKAS_36_1_SQ_050_ITEM_1","name":"Viscous Liquid","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662141,"className":"ROKAS_36_1_SQ_060_ITEM_1","name":"First Pillar Piece","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662142,"className":"ROKAS_36_1_SQ_060_ITEM_2","name":"Second Pillar Piece","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662143,"className":"ROKAS_36_1_SQ_060_ITEM_3","name":"Third Pillar Piece","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662144,"className":"ROKAS_36_1_SQ_060_ITEM_4","name":"Fourth Pillar Piece","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662145,"className":"PILGRIM_36_2_SQ_060_ITEM_1","name":"Weathered Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662146,"className":"PILGRIM_36_2_SQ_070_ITEM_1","name":"Refined Stone Materials","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662147,"className":"PILGRIM_36_2_SQ_100_ITEM_1","name":"Flammable Powder","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662148,"className":"PILGRIM_36_2_SQ_120_ITEM_1","name":"Pieces of Leather","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662149,"className":"PILGRIM_36_2_SQ_1400_ITEM_1","name":"Nestos' Holy Water","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662150,"className":"PILGRIM_48_SQ_020_ITEM_1","name":"Bulletin Board","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662151,"className":"PILGRIM_48_SQ_030_ITEM_1","name":"Kedora Merchant Alliance Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PILGRIM_48_SQ_030_ITEM_1"}},{"itemId":662152,"className":"PILGRIM_48_SQ_040_ITEM_1","name":"Goddess' Censer","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662153,"className":"PILGRIM_48_SQ_050_ITEM_1","name":"Damp Piece of Paper","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662154,"className":"PILGRIM_48_SQ_060_ITEM_1","name":"Detector","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PILGRIM_48_SQ_060_ITEM_1"}},{"itemId":662155,"className":"PILGRIM_48_SQ_070_ITEM_1","name":"Glass Bottle with Ink","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662156,"className":"PILGRIM_48_SQ_080_ITEM_1","name":"Kedora Merchant Alliance Educational Material","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662157,"className":"PILGRIM_48_SQ_090_ITEM_1","name":"Trap","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PILGRIM_48_SQ_090_ITEM_1"}},{"itemId":662158,"className":"PILGRIM_48_SQ_090_ITEM_2","name":"Fresh Body Fluid","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662159,"className":"PILGRIM_49_SQ_010_ITEM_1","name":"Material for tombstone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662160,"className":"PILGRIM_49_SQ_010_ITEM_2","name":"Lime Powder","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662161,"className":"PILGRIM_49_SQ_010_ITEM_3","name":"Orsha's Special Hammer","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662162,"className":"PILGRIM_49_SQ_010_ITEM_4","name":"Orsha's Special Chisel","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662163,"className":"PILGRIM_49_SQ_030_ITEM_1","name":"Kepari Inner Shell","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662164,"className":"PILGRIM_49_SQ_040_ITEM_1","name":"Short Leather String","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662165,"className":"PILGRIM_49_SQ_040_ITEM_2","name":"Anvil for Tanning","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PILGRIM_49_SQ_040_ITEM_2"}},{"itemId":662166,"className":"PILGRIM_49_SQ_040_ITEM_3","name":"Lump of Sturdy Strings for Bookbinding","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662167,"className":"PILGRIM_49_SQ_050_ITEM_1","name":"Nestos' Sign","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662168,"className":"PILGRIM_36_2_SQ_090_ITEM_1","name":"Comprehensive Research Data","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662200,"className":"HT_F_3CMLAKE_84_SQ_ITEM1","name":"Markazi Flower","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HT_F_3CMLAKE_84_SQ_ITEM1"}},{"itemId":662201,"className":"HT_KLAFEDA_NPC_05_ITEM1","name":"Potato Bread","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662202,"className":"HT3_SIAULIAI_50_1_SQ_MAN01_ITEM1","name":"Louise's Seeds","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662203,"className":"HTA_REMAINS_40_WATERPOT_ITEM1","name":"Old Bowl","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662256,"className":"F_3CMLAKE_27_1_SQ_2_ITEM","name":"Glass Bottle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662257,"className":"F_3CMLAKE_27_1_SQ_2_ITEM2","name":"Filled Glass Bottle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662258,"className":"F_3CMLAKE_27_1_SQ_3_ITEM","name":"Recovery Squad Insignia","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662259,"className":"F_3CMLAKE_27_1_SQ_4_ITEM","name":"Shock Bomb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662260,"className":"F_3CMLAKE_27_2_SQ_1_ITEM","name":"Barricade Kit","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662261,"className":"F_3CMLAKE_27_2_SQ_2_ITEM","name":"Fish Net","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662262,"className":"F_3CMLAKE_27_2_SQ_2_ITEM2","name":"Lake Fish","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662264,"className":"F_3CMLAKE_27_3_SQ_2_ITEM","name":"Water Plant","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662265,"className":"F_3CMLAKE_27_3_SQ_2_ITEM2","name":"Water Plant Pile","type":"Quest","group":"Quest","weight":1000,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662266,"className":"F_3CMLAKE_27_3_SQ_3_ITEM","name":"Water Point Magic Source","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662267,"className":"F_3CMLAKE_27_3_SQ_5_ITEM","name":"Plant with Lake Energy","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662268,"className":"F_3CMLAKE_27_3_SQ_8_ITEM","name":"Paralysis Pouch","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662269,"className":"D_UNDERAQUEDUCT_EVETN1_ITEM1","name":"Supply Certificate","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662270,"className":"D_UNDERAQUEDUCT_EVETN1_ITEM2","name":"Green Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662271,"className":"D_UNDERAQUEDUCT_EVETN2_ITEM1","name":"Purple Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662272,"className":"D_UNDERAQUEDUCT_EVETN3_ITEM1","name":"Yellow Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":662273,"className":"D_UNDERAQUEDUCT_EVETN3_USE_ITEM","name":"Magical Charm","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_D_UNDERAQUEDUCT_GIMMICK3_ITEM"}},{"itemId":662274,"className":"D_UNDERAQUEDUCT_EVETN4_ITEM1","name":"Red Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663000,"className":"CHATHEDRAL56_SQ03_BOOK_ITEM","name":"Priest's Research","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663001,"className":"DUMARO_MEAT","name":"Dumaro's Hind Leg","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663002,"className":"SOLDIRE_SQ31_RELIC","name":"Soldier's Memento","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663003,"className":"TOWN_PROVISIONS","name":"Miners' Village Food","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663004,"className":"WOODEN_SHIELD_PART","name":"Coarse Bark","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663005,"className":"PRIST_REPORT01","name":"Priest Yosana's Research","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"PRIST_REPORT01_LOG"}},{"itemId":663006,"className":"PRIST_REPORT02","name":"Priest Roana's Research","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"PRIST_REPORT02_LOG"}},{"itemId":663007,"className":"PRIST_REPORT03","name":"Priest Prosit's Research","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"PRIST_REPORT03_LOG"}},{"itemId":663008,"className":"CATHEDRAL53_SQ01_ITEM","name":"Scriptural Relic","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663009,"className":"CATHEDRAL53_SQ02_ITEM","name":"Orb of Divine Detection","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CATHEDRAL53_SQ_02_ITEM"}},{"itemId":663010,"className":"CATHEDRAL53_SQ_SAMPLE01","name":"Colifly Wing","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663011,"className":"CATHEDRAL53_SQ_SAMPLE02","name":"Loftlem Core","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663012,"className":"CATHEDRAL53_SQ04_ITEM","name":"Great Cathedral Goods","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663013,"className":"CATHEDRAL54_SQ02_ITEM","name":"Priest Yosana's Research Data","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663014,"className":"CATHEDRAL54_SQ04_ITEM","name":"Scroll of Purification","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CATHEDRAL54_SQ04_ITEM"}},{"itemId":663015,"className":"CATHEDRAL53_SQ021_ITEM","name":"Graceful Relic","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663016,"className":"CHATHEDRAL54_SQ03_ITEM","name":"Monster Specimen","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663017,"className":"CHATHEDRAL56_SQ02_ITEM","name":"Cursed Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663018,"className":"SIAULIAI50_WOOD_PIECE","name":"Wood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663019,"className":"EBONYPAWN_DAGGER","name":"Mysterious Dagger","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663020,"className":"SIAULIAI50_FENCE_ITEM","name":"Fence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663021,"className":"SIAULIAI50_MATERIAL","name":"Pink Chupaluka Fur","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663022,"className":"SIAULIAI50_SAMPLE01","name":"Black Ridimed Sap","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663023,"className":"SIAULIAI50_SAMPLE02","name":"Tough Orange Sakmoli Stem","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663024,"className":"SIAULIAI50_MON_SAMPLE","name":"Pink Chupaluka Heart","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663025,"className":"SIAULIAI50_DATA","name":"Materials for Research","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663026,"className":"SIAULIAI50_DRUG01","name":"Antidote ","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663027,"className":"SIAULIAI50_PIECE","name":"Magic Circle Inscribed Leather","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663028,"className":"SIAULIAI50_DRUG02","name":"Hunter Master's Detox Solvent","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663029,"className":"SIAULIAI50_DRUG_MATERIAL","name":"Ridimed Leaf","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663030,"className":"DAGGER_POISION","name":"Mysterious Poison","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663031,"className":"SIAULIAI50_SCARECROW_ITEM","name":"Scarecrow","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663032,"className":"SIAULIAI_50_REPRESS_DEVICE01","name":"Monster Suppression Device","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663033,"className":"SIAULIAI_50_REPRESS_DEVICE02","name":"Small Plant Control Device","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663034,"className":"SIAULIAI50_MEMO","name":"Antidote Recipe","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663035,"className":"SIAULIAI50_MON_SAMPLE02","name":"Black Ridimed Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663036,"className":"SIAULIAI50_MON_SAMPLE03","name":"Vermilion Sharkmolly Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663037,"className":"VELNIASP54_1_ITEM","name":"Magic Control Crystal Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_VELNIAS54_1_ITEM"}},{"itemId":663038,"className":"VELNIASP54_1_SECRET_KEY11","name":"Red Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663039,"className":"VELNIASP54_1_SECRET_KEY12","name":"Blue Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663040,"className":"FARM49_2_SQ03_ITEM","name":"Charlotte's Special Potion","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663041,"className":"PARTY_Q1_1_CHAMICAL01","name":"Vaidotas' Special Incense Burner","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663042,"className":"PARTY_Q1_1_CHAMICAL02","name":"Vaidotas' Special Incense Burner","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663043,"className":"PARTY_Q2_MOA_ITEM","name":"Moa Lump","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663044,"className":"PARTY_Q2_FISHERMAN","name":"Fisherman Eye","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663045,"className":"PARTY_Q2_ELLOM","name":"Ellom Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663046,"className":"PARTY_Q3_STONE","name":"Odd Fish Stringer","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663047,"className":"PARTY_Q_040_ITEM","name":"Spirit Eye","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PARTY_Q_040_ITEM"}},{"itemId":663048,"className":"PARTY_Q5_ITEM","name":"Tini Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663049,"className":"PARTY_Q5_ITEM02","name":"Orb of Comfort","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PARTY_Q5_ITEM02"}},{"itemId":663050,"className":"PARTY_Q5_ITEM03","name":"Full Orb of Comfort","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PARTY_Q5_ITEM03"}},{"itemId":663051,"className":"PARTY_Q6_CRYSTAL","name":"Power Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663052,"className":"PARTY_Q7_ICEITEM","name":"Frost Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PARTY_Q7_ICEITEM"}},{"itemId":663053,"className":"PARTY_Q7_SUMMON_ITEM","name":"Frozen Soul Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663054,"className":"PARTY_Q7_ICE","name":"Pure Frost Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663055,"className":"PARTY_Q8_CRYSTAL","name":"Zubeck's Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PARTY_Q8_CRYSTAL"}},{"itemId":663056,"className":"PARTY_Q10_CRYSTAL","name":"Goddess Austeja's Scripture","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PARTY_Q10_CRYSTAL"}},{"itemId":663057,"className":"UNDERFORTRESS65_MQ02_MATERIAL","name":"Thunderous Herb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PARTY_Q10_CRYSTAL"}},{"itemId":663058,"className":"UNDERFORTRESS65_MQ03_DRUG","name":"Bomb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PARTY_Q10_CRYSTAL"}},{"itemId":663059,"className":"UNDERFORTRESS65_MQ04_BOOM","name":"Resounding Bomb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PARTY_Q10_CRYSTAL"}},{"itemId":663060,"className":"UNDERFORTRESS65_SQ010_BOOM","name":"Old Unexploded Bomb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PARTY_Q10_CRYSTAL"}},{"itemId":663061,"className":"UNDERFORTRESS65_SQ020_BOOM","name":"Bomb Disassembly Toolbox","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UNDERFORTRESS65_SQ020_BOOM"}},{"itemId":663062,"className":"UNDERFORTRESS66_SQ_ITEM01","name":"Ruklys Army Seal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663063,"className":"UNDERFORTRESS66_SQ_ITEM02","name":"Parchment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663064,"className":"UNDER66_MQ3_ITEM01","name":"Royal Army Guard's Spear","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663065,"className":"UNDER66_MQ3_ITEM02","name":"Royal Army Guard's Breastplate","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663066,"className":"UNDER66_MQ6_ITEM01","name":"Wood for Barricades","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UNDER66_MQ6_ITEM01"}},{"itemId":663067,"className":"UNDER67_MQ4_ITEM01","name":"Mushroom","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663068,"className":"UNDER67_MQ5_ITEM01","name":"Earth Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663069,"className":"UNDER67_MQ5_ITEM02","name":"Certification Ticket","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663070,"className":"UNDER67_SQ1_ITEM01","name":"Musty-smelling Book","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"UNDERFORTRESS_67_SQ010_book01"}},{"itemId":663071,"className":"UNDER67_SQ1_ITEM02","name":"Damaged Book","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"UNDERFORTRESS_67_SQ010_book02"}},{"itemId":663072,"className":"UNDER_67_SQ020_ITEM01","name":"Ring","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663073,"className":"UNDER68_MQ1_ITEM01","name":"Green Infroholder Egg","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663074,"className":"UNDER68_MQ2_ITEM01","name":"Demon Bones","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663075,"className":"UNDER68_MQ3_ITEM01","name":"Absorption Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UNDER68_MQ3_ITEM01"}},{"itemId":663076,"className":"UNDER68_MQ4_ITEM01","name":"Restraint Token","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UNDER68_MQ4_ITEM01"}},{"itemId":663077,"className":"UNDER68_SQ1_ITEM01","name":"Owl Sculpture Sack","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663078,"className":"UNDER69_MQ2_ITEM01","name":"Defensive Trap Part","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663079,"className":"UNDER69_MQ3_ITEM01","name":"Demon's Blood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663080,"className":"UNDER69_MQ4_ITEM01","name":"Power Device","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UNDER69_MQ4_ITEM01"}},{"itemId":663081,"className":"UNDER69_SQ2_ITEM01","name":"Rebel Army Diary, Chapter 1","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"UNDERFORTRESS_69_SQ020_book01"}},{"itemId":663082,"className":"UNDER69_SQ2_ITEM02","name":"Rebel Army Diary, Chapter 2","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"UNDERFORTRESS_69_SQ020_book02"}},{"itemId":663083,"className":"UNDER69_SQ2_ITEM03","name":"Rebel Army Diary, Chapter 3","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"UNDERFORTRESS_69_SQ020_book03"}},{"itemId":663084,"className":"UNDER69_SQ2_ITEM04","name":"Rebel Army Diary, Chapter 4","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"UNDERFORTRESS_69_SQ020_book04"}},{"itemId":663085,"className":"UNDER69_MQ1_ITEM01","name":"Document","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663086,"className":"stonetablet07","name":"Revelation of Fortress of the Land","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"stonetablet07","numArg1":10}},{"itemId":663087,"className":"UNDER69_SQ3_ITEM","name":"Horn","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UNDER69_SQ3_ITEM"}},{"itemId":663088,"className":"BRACKEN632_SQ2_ITEM01","name":"Loktanun Fluid","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_BRACKEN632_SQ2_ITEM01"}},{"itemId":663089,"className":"BRACKEN632_SQ2_ITEM02","name":"Small Leafed Herb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663090,"className":"BRACKEN631_MQ3_ITEM01","name":"Traveling Merchant Handkerchief","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663091,"className":"BRACKEN631_MQ3_ITEM02","name":"Traveling Merchant Pants","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663092,"className":"BRACKEN631_MQ3_ITEM03","name":"Traveling Merchant Shirt","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663093,"className":"BRACKEN631_SQ1_ITEM01","name":"Andres' Package","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663094,"className":"BRACKEN631_SQ4_ITEM01","name":"Ronjia Grass","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663095,"className":"BRACKEN631_SQ6_ITEM01","name":"Tamara's Counteragent","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663096,"className":"BRACKEN633_MQ2_ITEM01","name":"Dadan Jungle Experiment Journal, Chapter 1","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"BRACKEN_63_3_MQ020_book01"}},{"itemId":663097,"className":"BRACKEN633_MQ2_ITEM02","name":"Dadan Jungle Experiment Journal, Chapter 2","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"BRACKEN_63_3_MQ020_book02"}},{"itemId":663098,"className":"BRACKEN633_MQ2_ITEM03","name":"Dadan Jungle Experiment Journal, Chapter 3","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"BRACKEN_63_3_MQ020_book03"}},{"itemId":663099,"className":"BRACKEN633_MQ2_ITEM04","name":"Dadan Jungle Experiment Journal, Chapter 4","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"BRACKEN_63_3_MQ020_book04"}},{"itemId":663100,"className":"ABBAY641_MQ3_ITEM01","name":"Green Apparition Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663101,"className":"ABBAY641_SQ030_ITEM01","name":"Experiment Victims' Relic","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663102,"className":"ABBAY642_SQ1_ITEM","name":"Hilbeth's Backpack","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663103,"className":"ABBAY642_SQ41_ITEM01","name":"Thick Ring","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663104,"className":"ABBAY642_SQ41_ITEM02","name":"Thin Bracelet","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663105,"className":"ABBAY642_SQ41_ITEM03","name":"Jewel Necklace","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663106,"className":"ABBAY642_SQ41_ITEM04","name":"Embroidered Handkerchief","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663107,"className":"ABBAY642_SQ4_ITEM01","name":"Novaha Monastery's Holy Relic Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663108,"className":"ABBAY643_MQ1_ITEM01","name":"Brown Hummingbird Mucus","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663109,"className":"ABBAY643_MQ1_ITEM02","name":"Brown Hummingbird Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663110,"className":"ABBAY643_MQ1_ITEM03","name":"Brown Hummingbird Toenail","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663111,"className":"ABBAY643_SQ3_ITEM01","name":"Demon Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663112,"className":"ABBAY643_SQ5_ITEM01","name":"Experiment Journal, Chapter 1","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663113,"className":"ABBAY643_SQ5_ITEM02","name":"Experiment Journal, Chapter 2","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663114,"className":"ABBAY643_SQ5_ITEM03","name":"Experiment Journal, Chapter 3","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663115,"className":"ABBAY643_SQ4_ITEM1","name":"Protection Barrier Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663117,"className":"ABBAY643_SQ3_ITEM3","name":"Empty Barrier Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663118,"className":"ABBAY642_SQ5_ITEM01","name":"Restored Novaha Monastery's Holy Relic","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663119,"className":"TABLELAND70_SUBQ5ITEM","name":"Wooden Materials","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663120,"className":"TABLELAND70_SUBQ6ITEM","name":"Black Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663121,"className":"TABLELAND70_SUBQ8ITEM","name":"Enhanced Bomb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663122,"className":"TABLELAND71_SUBQ4ITEM","name":"Detector","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_TABLE71_SUBQ4ITEM"}},{"itemId":663123,"className":"TABLELAND71_SUBQ5ITEM","name":"Blue Cronewt Needler Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663124,"className":"TABLELAND71_SUBQ6ITEM","name":"Magic Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663125,"className":"TABLELAND71_SUBQ5ITEM1","name":"Blue Cronewt Needler Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663126,"className":"TABLELAND71_SUBQ7ITEM2","name":"Wizard Tulis' Special Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_TABLE71_SUBQ7ITEM2"}},{"itemId":663127,"className":"TABLELAND71_SUBQ8ITEM","name":"Tini Salivary Gland","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663128,"className":"TABLELAND71_SUBQ7ITEM1","name":"Transformed Blue Hohen Ritter Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663129,"className":"TABLELAND71_SUBQ3ITEM","name":"Wild Ginger Plant","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663130,"className":"TABLELAND72_SUBQ3ITEM","name":"Black Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663131,"className":"TABLELAND72_SUBQ5ITEM","name":"White Spion Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663132,"className":"TABLELAND72_SUBQ6ITEM1","name":"Detection Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_TABLE72_SUBQ6ITEM1"}},{"itemId":663133,"className":"TABLELAND72_SUBQ6ITEM2","name":"Absorption Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663134,"className":"TABLELAND72_SUBQ10ITEM","name":"Sikljien Herbs","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663135,"className":"TABLELAND72_SUBQ4ITEM","name":"A bomb made by Villager Argis.","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663136,"className":"TABLELAND72_SUBQ9ITEM","name":"Purification Sphere","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663137,"className":"TABLELAND73_SUBQ8ITEM","name":"Divine Armor","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663138,"className":"TABLE73_SUBQ6_ITEM","name":"Firewood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_TABLE73_SUBQ6_ITEM"}},{"itemId":663139,"className":"TABLE73_SUBQ5_ITEM","name":"Firewood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_TABLE73_SUBQ5_ITEM"}},{"itemId":663140,"className":"TABLE74_SUBQ4ITEM","name":"Black Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_TABLE73_SUBQ5_ITEM"}},{"itemId":663142,"className":"TABLE74_SUBQ7ITEM","name":"Bomb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_TABLE73_SUBQ5_ITEM"}},{"itemId":663143,"className":"TABLE74_SUBQ5_ITEM","name":"Altered Bomb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663144,"className":"UNDER30_3_EVENT1_ITEM1","name":"Orb Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663145,"className":"UNDER30_3_EVENT2_BOMB","name":"Bomb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UNDER30_3_EVENT2_BOMB"}},{"itemId":663146,"className":"UNDER30_1_EVENT1_ITEM","name":"Ruklys Army Badge","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663147,"className":"BRACKEN431_SUBQ1_ITEM1","name":"Seeds","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663148,"className":"BRACKEN431_SUBQ1_ITEM2","name":"Proven Seeds","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663149,"className":"BRACKEN431_SUBQ3_ITEM1","name":"Lyecorn Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663150,"className":"BRACKEN431_SUBQ4_ITEM1","name":"Arcus Bracken","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663151,"className":"BRACKEN431_SUBQ6_ITEM2","name":"Essence imbued with Divine Energy","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663152,"className":"BRACKEN432_SUBQ1_ITEM1","name":"Bunkeybo Skin","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663153,"className":"BRACKEN432_SUBQ1_ITEM2","name":"Bunkeyto Skin","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663154,"className":"BRACKEN432_SUBQ1_ITEM3","name":"Phamer Bracken","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663155,"className":"BRACKEN432_SUBQ1_ITEM4","name":"Tulip","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663156,"className":"BRACKEN432_SUBQ2_ITEM1","name":"Tranquilizer","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_BRACKEN432_SUBQ2_ITEM1"}},{"itemId":663157,"className":"BRACKEN432_SUBQ2_ITEM2","name":"Empty Bottle","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663158,"className":"BRACKEN432_SUBQ2_ITEM3","name":"Soil","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663159,"className":"BRACKEN432_SUBQ2_ITEM4","name":"Water","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663160,"className":"BRACKEN432_SUBQ2_ITEM5","name":"Sack Containing an Unconscious Bunkeybo","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663161,"className":"BRACKEN432_SUBQ2_ITEM6","name":"Sack Containing an Unconscious Bunkeyto","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663162,"className":"BRACKEN432_SUBQ4_ITEM1","name":"Young Phamer Bracken","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663163,"className":"BRACKEN432_SUBQ4_ITEM2","name":"Fully Grown Phamer Bracken","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663164,"className":"BRACKEN432_SUBQ5_ITEM1","name":"Bunkeyto Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663165,"className":"BRACKEN432_SUBQ6_ITEM1","name":"Bunkeyto Essence","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_BRACKEN432_SUBQ6_ITEM1"}},{"itemId":663166,"className":"BRACKEN432_SUBQ6_ITEM2","name":"Vink Flowers","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663167,"className":"BRACKEN432_SUBQ9_ITEM1","name":"Cure","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663168,"className":"BRACKEN433_SUBQ1_ITEM1","name":"Poppy Bracken","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663169,"className":"BRACKEN433_SUBQ1_ITEM2","name":"Aily Grass","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663170,"className":"BRACKEN433_SUBQ1_ITEM3","name":"Pria Flower","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663171,"className":"BRACKEN433_SUBQ3_ITEM1","name":"Vilkas Fur","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_BRACKEN433_SUBQ3_ITEM1"}},{"itemId":663172,"className":"BRACKEN433_SUBQ7_ITEM1","name":"Flechette Detection Recipe","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663173,"className":"BRACKEN433_SUBQ8_ITEM1","name":"Romplenuka Magic Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663174,"className":"BRACKEN433_SUBQ9_ITEM1","name":"Vilkas Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663175,"className":"BRACKEN433_SUBQ9_ITEM2","name":"Flechette Detection Device","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_BRACKEN433_SUBQ9_ITEM2"}},{"itemId":663176,"className":"BRACKEN433_SUBQ10_ITEM1","name":"Flechette","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663177,"className":"BRACKEN433_SUBQ11_ITEM1","name":"Fletcher Master's Certified Arrow","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663178,"className":"BRACKEN434_SUBQ1_ITEM","name":"Documents on Dispelling Transformation Magic","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663179,"className":"BRACKEN434_SUBQ2_ITEM1","name":"Magic Dispel Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663180,"className":"BRACKEN434_SUBQ2_ITEM2","name":"Orb of Vigor","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_BRACKEN434_SUBQ2_ITEM2"}},{"itemId":663181,"className":"BRACKEN434_SUBQ6_ITEM1","name":"Dry Vilkas Skin","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663182,"className":"BRACKEN434_SUBQ7_ITEM","name":"Magic Detector","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_BRACKEN434_SUBQ7_ITEM"}},{"itemId":663183,"className":"BRACKEN434_SUBQ8_ITEM1","name":"Lettered Monument Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663184,"className":"BRACKEN434_SUBQ9_ITEM1","name":"Vilkas Salivary Glands","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663185,"className":"BRACKEN431_SUBQ6_ITEM1","name":"Cleansed Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_BRACKEN431_SUBQ6_ITEM1"}},{"itemId":663186,"className":"BRACKEN434_SUBQ5_ITEM","name":"Mittelly Herb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663187,"className":"BRACKEN434_SUBQ9_ITEM2","name":"Mittaharyn Grass","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_BRACKEN434_SUBQ9_ITEM2"}},{"itemId":663188,"className":"JOB_3_NECROMANCER_ITEM","name":"Magic Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_3_NECROMANCER_ITEM"}},{"itemId":663189,"className":"JOB_3_ALCHEMIST_ITEM1","name":"Blue Beetow Salivary Glands","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663190,"className":"JOB_3_ALCHEMIST_ITEM2","name":"Half-Digested Grass","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663191,"className":"JOB_3_ALCHEMIST_ITEM3","name":"Akhlass Hump's Worm","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663192,"className":"JOB_2_WAROLCK_ITEM1","name":"Seal of Dominance","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_2_WAROLCK_ITEM1"}},{"itemId":663193,"className":"JOB_2_PLAGUEDOCTOR_ITEM1","name":"Beast Monster Blood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663194,"className":"JOB_2_PLAGUEDOCTOR_ITEM2","name":"Plant Monster Fluids","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663195,"className":"JOB_2_KABBALIST_ITEM1","name":"Crystal Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_2_KABBALIST_ITEM1"}},{"itemId":663200,"className":"JOB_1_ENCHEANTER_ITEM1","name":"Magic Absorption Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_1_ENCHEANTER_ITEM1"}},{"itemId":663201,"className":"JOB_1_INQUGITOR_ITEM1","name":" New Inquisitor's Creed and Decree","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_1_INQUGITOR_ITEM1","strArg":"JOB_INQUGITOR_book1"}},{"itemId":663202,"className":"JOB_1_INQUGITOR_ITEM2","name":"Book of Judgment","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_1_INQUGITOR_ITEM2"}},{"itemId":663203,"className":"JOB_1_DAOSHI_ITEM1","name":"Practice Talisman","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_1_DAOSHI_ITEM1"}},{"itemId":663204,"className":"JOB_3_NECROMANCER_ITEM2","name":"Magic Infused Blood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663205,"className":"JOB_BOKOR3_ITEM1","name":"Monster Blood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663206,"className":"JOB_2_FEATHERFOOT_ITEM1","name":"Seal of Disarmament","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_2_FEATHERFOOT_ITEM1"}},{"itemId":663207,"className":"JOB_2_FEATHERFOOT_ITEM2","name":"Cursed Object","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663208,"className":"JOB_3_DRUID_ITEM","name":"Orb of Purification","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_3_DRUID_ITEM"}},{"itemId":663209,"className":"WHITETREES561_SUBQ2_ITEM","name":"White Tree Forest Moth Cocoon","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663210,"className":"WHITETREES561_SUBQ3_ITEM","name":"Head Flower","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663211,"className":"WHITETREES561_SUBQ4_ITEM1","name":"Tree","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663212,"className":"WHITETREES561_SUBQ4_ITEM2","name":"Lumber Crafting Tools","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_WHITETREES561_SUBQ4_ITEM2"}},{"itemId":663213,"className":"WHITETREES561_SUBQ4_ITEM3","name":"Fence Repairing Lumber","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663214,"className":"WHITETREES561_SUBQ6_ITEM","name":"Flowlon Leather","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663215,"className":"WHITETREES561_SUBQ7_ITEM1","name":"Randulin Grass","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663216,"className":"WHITETREES561_SUBQ7_ITEM2","name":"Water of White Tree Forest","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_WHITETREES561_SUBQ7_ITEM2"}},{"itemId":663217,"className":"WHITETREES561_SUBQ8_ITEM","name":"Sack of Cable Car Spare Parts","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663218,"className":"UNDER67_HIDDENQ1_ITEM1","name":"Stationery Bag","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UNDER67_HIDDENQ1_ITEM1"}},{"itemId":663219,"className":"FLASH63_HQ1_ITEM1","name":"Stuffed Bag","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663220,"className":"ABBAY64_3_HIDDENQ1_ITEM1","name":"Rose's Letter","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663221,"className":"ABBAY64_3_HIDDENQ1_ITEM2","name":"Anne's Letter","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663222,"className":"SIAULIAI16_HIDDENQ1_ITEM1","name":"Sword Pell Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663223,"className":"SIAULIAI16_HIDDENQ1_ITEM2","name":"Sword Pell Toolbox","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SIAULIAI16_HIDDENQ1_ITEM2"}},{"itemId":663224,"className":"SIAULIAI16_HIDDENQ1_ITEM3","name":"Woodin's Sturdy Tree","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663225,"className":"SIAULIAI16_HIDDENQ1_ITEM4","name":"Completeted Sword Pell","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663226,"className":"ABBAY642_HIDDENQ1_ITEM","name":"Gravestone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663227,"className":"SIAULIAI15_HIDDENQ1_ITEM","name":"Pierneef's Report","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663228,"className":"ORCHARD323_HIDDENQ1_ITEM","name":"Ritual Device","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663229,"className":"ORCHARD323_HIDDENQ1_ITEM2","name":"Ritual Device","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663230,"className":"TABLELAND281_HIDDENQ1_ITEM1","name":"Memo","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"TABLELAND281_HIDDENQ1_ITEM1_BOOK"}},{"itemId":663231,"className":"TABLELAND281_HIDDENQ1_ITEM2","name":"Shinobi's Second Note","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"TABLELAND281_HIDDENQ1_ITEM2_BOOK"}},{"itemId":663232,"className":"TABLELAND281_HIDDENQ1_ITEM3","name":"Shinobi's Third Note","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"TABLELAND281_HIDDENQ1_ITEM3_BOOK"}},{"itemId":663233,"className":"TABLELAND281_HIDDENQ1_ITEM4","name":"Shinobi's Fourth Note","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"TABLELAND281_HIDDENQ1_ITEM4_BOOK"}},{"itemId":663234,"className":"UNDER69_HIDDENQ1_ITEM1","name":"The Toolbox for Sculptor Tesla","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663235,"className":"ORSHA_HIDDENQ2_ITEM1","name":"Cooking Utensil Bag","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ORSHA_HIDDENQ2_ITEM1"}},{"itemId":663236,"className":"ORSHA_HIDDENQ2_ITEM2","name":"Raffly Leaf","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663237,"className":"ORSHA_HIDDENQ2_ITEM3","name":"Ellogua Flower Wine","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663238,"className":"ORSHA_HIDDENQ3_ITEM1","name":"Special Treat","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_ORSHA_HIDDENQ3_ITEM1"}},{"itemId":663239,"className":"F3CMLAKE83_HIDDENQ1_ITEM1","name":"Badge","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663240,"className":"F3CMLAKE83_HIDDENQ1_ITEM2","name":"Friendship Badge","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663241,"className":"KATYN12_HIDDENQ1_ITEM","name":"Ring","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663242,"className":"PRISON622_HIDDENQ1_ITEM1","name":"Inmate Note","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"PRISON622_HIDDEN_OBJ1"}},{"itemId":663243,"className":"PRISON622_HIDDENQ1_ITEM2","name":"Inmate Note","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_PRISON622_HIDDEN_ITEM_BOOK2"}},{"itemId":663244,"className":"PRISON622_HIDDENQ1_ITEM3","name":"Inmate Note","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_PRISON622_HIDDEN_ITEM_BOOK3"}},{"itemId":663245,"className":"PRISON622_HIDDENQ1_ITEM4","name":"Inmate Note","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_PRISON622_HIDDEN_ITEM_BOOK4"}},{"itemId":663246,"className":"PRISON622_HIDDENQ1_ITEM5","name":"Inmate Note","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_PRISON622_HIDDEN_ITEM_BOOK5","numArg1":10}},{"itemId":663247,"className":"SHINOBI_BOOK1","name":"The First Battle for the Throne - Volume 1","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"SHINOBI_BOOK1"}},{"itemId":663248,"className":"UNDER67_HIDDENQ1_ITEM2","name":"Sentry Bailey Note","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"UNDER67_HIDDENQ1_BOOK1"}},{"itemId":663249,"className":"UNDER67_HIDDENQ1_ITEM3","name":"Drill Ground of Confliction Note","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"UNDER67_HIDDENQ1_BOOK2"}},{"itemId":663250,"className":"UNDER67_HIDDENQ1_ITEM4","name":"Living Quarters Note","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"UNDER67_HIDDENQ1_BOOK3"}},{"itemId":663251,"className":"UNDER67_HIDDENQ1_ITEM5","name":"Note on the Storage Quarter","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"UNDER67_HIDDENQ1_BOOK4"}},{"itemId":663252,"className":"UNDER67_HIDDENQ1_ITEM6","name":"Fortress Battlegrounds Note","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"UNDER67_HIDDENQ1_BOOK5"}},{"itemId":663253,"className":"TABLELAND281_HIDDENQ1_ITEM5","name":"Shinobi's Summon Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_TABLE281_HIDDENQ1_ITEM5"}},{"itemId":663254,"className":"TABLELAND281_HIDDENQ1_ITEM6","name":"Reagent","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663255,"className":"CATACOMB332_HIDDENQ1_ITEM1","name":"Margiris' Ledger","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663256,"className":"PILGRIMROAD362_HIDDENQ1_ITEM1","name":"Rubbing","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663257,"className":"PILGRIMROAD362_HIDDENQ1_ITEM3","name":"Curse Detector","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PILGRIMROAD362_HIDDENQ1_ITEM3"}},{"itemId":663258,"className":"PILGRIMROAD362_HIDDENQ1_ITEM4","name":"Cursed Object","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663259,"className":"REMAINS38_HIDDENQ1_ITEM1","name":"Rubbing","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663260,"className":"CHATHEDRAL54_HIDDENQ1_ITEM1","name":"Dawn Maiden Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663261,"className":"SIAULIAI462_HIDDENQ1_ITEM1","name":"Fragrant Herbs","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663262,"className":"SIAULIAI462_HIDDENQ1_ITEM2","name":"Beaj Flower","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663263,"className":"SIAULIAI462_HIDDENQ2_ITEM1","name":"Scented Candle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663264,"className":"CATHEDRAL1_HIDDENQ1_ITEM1","name":"Trumpet","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CATHEDRAL1_HIDDENQ1_ITEM1"}},{"itemId":663265,"className":"CATACOMB38_2_HIDDENQ1_ITEM1","name":"Evil Spirit Detector","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CATACOMB38_2_HIDDENQ1_ITEM1"}},{"itemId":663266,"className":"ABBEY353_HIDDENQ1_ITEM1","name":"Locked Box","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663267,"className":"ABBEY353_HIDDENQ1_ITEM2","name":"Unlocked Box","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663268,"className":"ORCHARD343_HIDDENQ1_ITEM1","name":"Experiment Report","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663269,"className":"PILGRIM48_HIDDENQ1_PREITEM1","name":"Ripped Piece of Paper","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PILGRIM48_HIDDENQ1_PREITEM"}},{"itemId":663270,"className":"PILGRIM48_HIDDENQ1_PREITEM2","name":"Ripped Piece of Paper","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PILGRIM48_HIDDENQ1_PREITEM"}},{"itemId":663271,"className":"PILGRIM48_HIDDENQ1_PREITEM3","name":"Ripped Piece of Paper","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PILGRIM48_HIDDENQ1_PREITEM"}},{"itemId":663272,"className":"PILGRIM48_HIDDENQ1_ITEM1","name":"Loose Ledger Pages","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663273,"className":"PILGRIM48_HIDDENQ1_ITEM2","name":"Paper","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663274,"className":"FLASH29_1_HIDDENQ1_ITEM1","name":"Beads","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663275,"className":"SIAULIAI_351_HIDDENQ1_ITEM1","name":"Sluckty Grass","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663276,"className":"SIAULIAI_351_HIDDENQ1_ITEM2","name":"Studia Grass","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663277,"className":"PILGRIM48_HIDDENQ1_ITEM3","name":"Kedora Alliance Detector","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PILGRIM48_HIDDENQ1_ITEM3"}},{"itemId":663278,"className":"THORN22_HIDDENQ1_ITEM1","name":"Chaplain Master's Letter","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663279,"className":"THORN22_HIDDENQ1_ITEM2","name":"Holy Powder Pouch","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663280,"className":"SIAULIAI_351_HIDDENQ1_ITEM3","name":"Carnivore Remains","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663281,"className":"CATACOMB382_HIDDENQ1_ITEM2","name":"Draining Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663282,"className":"CATHEDRAL1_HIDDENQ1_ITEM2","name":"Musical Score","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663283,"className":"KLAIPE_CHAR313_ITEM1","name":"Royal Order","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_KLAIPE_CHAR313_ITEM1"}},{"itemId":663284,"className":"KLAIPE_CHAR313_ITEM2","name":"Reagent","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"NO"}},{"itemId":663285,"className":"KLAIPE_CHAR313_ITEM3","name":"Weynd Flowers","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"NO"}},{"itemId":663286,"className":"KLAIPE_CHAR313_ITEM4","name":"Driekple Flowers","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"NO"}},{"itemId":663287,"className":"KLAIPE_CHAR313_ITEM5","name":"Bottle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"NO"}},{"itemId":663288,"className":"KLAIPE_CHAR313_ITEM6","name":"Special Chemical","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"NO"}},{"itemId":663289,"className":"KLAIPE_CHAR313_ITEM7","name":"Copy of Royal Order","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"NO"}},{"itemId":663290,"className":"KLAIPE_CHAR313_ITEM9","name":"Royal Order","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"NO"}},{"itemId":663291,"className":"KLAIPE_CHAR313_ITEM8","name":"Official Letter of Appointment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"NO"}},{"itemId":663292,"className":"JOB_APPRAISER5_1_ITEM1","name":"Fencer Master's Family Heirloom","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"NO"}},{"itemId":663293,"className":"JOB_APPRAISER5_1_ITEM2","name":"Jurus' Accessories","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"NO"}},{"itemId":663294,"className":"JOB_APPRAISER5_2_ITEM1","name":"Quality Certificate","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"NO"}},{"itemId":663295,"className":"JOB_APPRAISER5_2_ITEM2","name":"Quality Certificate","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"NO"}},{"itemId":663296,"className":"WTREES22_1_SUBQ2_ITEM1","name":"Yellow Atti Juice","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_WTREES22_1_SUBQ2_ITEM1"}},{"itemId":663297,"className":"WTREES22_1_SUBQ3_ITEM1","name":"Teresh Pollen","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"NO"}},{"itemId":663298,"className":"WTREES22_1_SUBQ4_ITEM1","name":"White Apple","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"NO"}},{"itemId":663299,"className":"WTREES22_1_SUBQ5_ITEM1","name":"Raspberry","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"NO"}},{"itemId":663300,"className":"WTREES22_1_SUBQ5_ITEM4","name":"Raspberry Juice","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"NO"}},{"itemId":663301,"className":"WTREES22_1_SUBQ5_ITEM3","name":"Bottle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_WTREES22_1_SUBQ5_ITEM3"}},{"itemId":663302,"className":"WTREES22_1_SUBQ6_ITEM1","name":"Raspberry-flavored twigs","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_WTREES22_1_SUBQ6_ITEM1"}},{"itemId":663303,"className":"WTREES22_1_SUBQ7_ITEM1","name":"Yellow Apple","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"NO"}},{"itemId":663304,"className":"WTREES22_1_SUBQ8_ITEM1","name":"Blue Apple","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"NO"}},{"itemId":663305,"className":"WTREES22_2_SUBQ4_ITEM1","name":"Sporgimo flower","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_WTREES22_2_SUBQ4_ITEM1"}},{"itemId":663306,"className":"WTREES22_2_SUBQ2_ITEM1","name":"Monk's Note","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_WTREES22_2_SUBQ2_ITEM1"}},{"itemId":663307,"className":"FLURRY_CERTIFICATE1","name":"Contract Token","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663308,"className":"WTREES22_3_SUBQ2_ITEM1","name":"Essence of Hohen","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663309,"className":"WTREES22_3_SUBQ6_ITEM1","name":"Energy Storing Globe","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_WTREES22_3_SUBQ6_ITEM1"}},{"itemId":663310,"className":"ABBEY22_4_SUBQ2_ITEM1","name":"Strong Essence of Demon","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663311,"className":"ABBEY22_4_SUBQ3_ITEM1","name":"Demon's Blood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ABBEY22_4_SUBQ3_ITEM1"}},{"itemId":663312,"className":"ABBEY22_4_SUBQ4_ITEM1","name":"Corrupted Holy Water","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663313,"className":"ABBEY22_4_SUBQ7_ITEM1","name":"Magic Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663314,"className":"ABBEY22_5_SUBQ3_ITEM1","name":"Absorbing Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ABBEY22_5_SUBQ3_ITEM1"}},{"itemId":663315,"className":"ABBEY22_5_SUBQ3_ITEM2","name":"Flurry Facility Component","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663316,"className":"ABBEY22_5_SUBQ4_ITEM1","name":"Flesh of Black Hohen Olben","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663317,"className":"ABBEY22_5_SUBQ5_ITEM1","name":"King Hammer's Blood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663318,"className":"ABBEY22_5_SUBQ5_ITEM2","name":"Transformation Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ABBEY22_5_SUBQ5_ITEM2"}},{"itemId":663319,"className":"ABBEY22_5_SUBQ6_ITEM1","name":"Condensed Magic Source","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663320,"className":"FLURRY_CERTIFICATE2","name":"Token of twisted contract","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663321,"className":"ABBEY22_5_SUBQ1_ITEM3","name":"Green Power Device","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663322,"className":"ABBEY22_5_SUBQ7_ITEM1","name":"Globus of Record","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ABBEY22_5_SUBQ7_ITEM1"}},{"itemId":663323,"className":"ABBEY22_5_SUBQ9_ITEM1","name":"Essence of Harugal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663324,"className":"ABBEY22_5_SUBQ9_ITEM2","name":"Mark of Identification","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ABBEY22_5_SUBQ9_ITEM2"}},{"itemId":663325,"className":"JOB_PLAGUEDOCTOR71_ITEM1","name":"King's Plateau Report","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663326,"className":"JOB_PLAGUEDOCTOR71_ITEM2","name":"Viltis Forest Report","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663327,"className":"JOB_PLAGUEDOCTOR71_ITEM3","name":"Goddess' Ancient Garden Report","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663328,"className":"JOB_PLAGUEDOCTOR71_ITEM4","name":"Knidos Jungle Report","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663329,"className":"ABBEY22_5_SUBQ12_1","name":"Central Control Terminal Parts","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663330,"className":"ABBEY22_4_SUBQ8_ITEM1","name":"Apparition Generator","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663331,"className":"HIDDEN_GRASS_WHITETREES231","name":"Good Condition Cocoon","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663332,"className":"HIDDEN_MINERAL_CMINE661_ITEM1","name":"Quality Iron Ore","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663333,"className":"HIDDEN_HOHEN_HORN_ITEM1","name":"Intact Blue Hohen Gulak Horns","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663334,"className":"HIDDEN_MATADOR_MSTEP3_3_ITEM1","name":"Fine Cockatrice Leather","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663335,"className":"HIDDEN_MATADOR_MSTEP3_3_ITEM2","name":"Tough Beetow Feeler","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663336,"className":"HIDDEN_MATADOR_MSTEP3_3_ITEM3","name":"Solid Minivern Hide","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663337,"className":"HIDDEN_MATADOR_MSTEP3_3_ITEM4","name":"Rimantas' Note","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"CHAR119_MSTEP3_3_1_MEMO1"}},{"itemId":663338,"className":"HIDDEN_BULLET_MSTEP3_ITEM1","name":"Demon Magic Dust","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663339,"className":"BULLETMARKER_QUEST_SKILL1","name":"Chill","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_THROW_BULLETMARKER_QUEST_SKILL","strArg":"BULLETMARKER_QUEST_SKILL1"}},{"itemId":663340,"className":"BULLETMARKER_QUEST_SKILL2","name":"Flame","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_THROW_BULLETMARKER_QUEST_SKILL","strArg":"BULLETMARKER_QUEST_SKILL2"}},{"itemId":663341,"className":"BULLETMARKER_QUEST_SKILL3","name":"Lightning","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_THROW_BULLETMARKER_QUEST_SKILL","strArg":"BULLETMARKER_QUEST_SKILL3"}},{"itemId":663342,"className":"HIDDEN_BULLET_MSTEP3_1_ITEM1","name":"Pure Frost Fragments","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663343,"className":"HIDDEN_BULLET_MSTEP2_1_ITEM1","name":"Bullet Marker Master's Memo","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"HIDDEN_BULLET_MSTEP2_1_ITEM1"}},{"itemId":663344,"className":"HIDDEN_BULLET_MSTEP2_1_ITEM2","name":"Surveillance Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663345,"className":"HIDDEN_BULLET_MSTEP3_ITEM2","name":"Demonic Monster Flesh","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663346,"className":"HIDDEN_BULLET_MSTEP3_3ITEM2","name":"Lantern","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHAR318_MSTEP3_3ITEM2"}},{"itemId":663347,"className":"HIDDEN_BULLET_MSTEP3_3_1ITEM1","name":"Electric Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663348,"className":"JOB_MATADOR1_ITEM","name":"Capote","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_MATADOR1_ITEM"}},{"itemId":663349,"className":"CHAR120_HOSHINBOO_ITEM","name":"Amulet","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHAR120_HOSHINBOO_ITEM"}},{"itemId":663350,"className":"CHAR120_MSTEP5_1_ITEM","name":"Red Meduja Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663351,"className":"CHAR120_MSTEP5_3_ITEM1","name":"Bright Ellom Bell","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663352,"className":"CHAR120_MSTEP5_3_ITEM2","name":"Medicine","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663353,"className":"CHAR120_MSTEP5_4_ITEM1","name":"House Sculpture","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663354,"className":"CHAR120_MSTEP5_4_ITEM2","name":"Dandelion","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663355,"className":"CHAR120_MSTEP5_4_ITEM3","name":"Dandelion Spore","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHAR120_MSTEP5_4_ITEM3"}},{"itemId":663356,"className":"CHAR120_MSTEP5_5_ITEM1","name":"Box","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHAR120_MSTEP5_5_ITEM1"}},{"itemId":663357,"className":"CHAR120_MSTEP5_5_ITEM2","name":"Letter","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHAR120_MSTEP5_5_ITEM2","strArg":"CHAR120_MSTEP5_5_ITEM2_LETTER"}},{"itemId":663358,"className":"CHAR120_MSTEP5_5_ITEM3","name":"Stonecrops","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663359,"className":"CHAR120_MSTEP5_5_ITEM4","name":"Statice","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663360,"className":"CHAR120_MSTEP5_1_ITEM2","name":"Strawberry Cupcake","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663361,"className":"CHAR120_MSTEP5_5_ITEM5","name":"Iona's Box","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663362,"className":"CHAR118_MSTEP2_ITEM1","name":"Food","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHAR121_MSTEP2_ITEM1"}},{"itemId":663363,"className":"CHAR118_MSTEP2_1_ITEM1","name":"Training Dumbbell","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHAR118_MSTEP2_1_ITEM1"}},{"itemId":663364,"className":"CHAR118_MSTEP2_2_ITEM1","name":"Training Sandbag","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHAR118_MSTEP2_2_ITEM1"}},{"itemId":663365,"className":"CHAR118_MSTEP2_2_ITEM2","name":"Map","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHAR118_MSTEP2_2_ITEM2"}},{"itemId":663366,"className":"CHAR420_MSTEP3_1_ITEM1","name":"The History of Exorcism Volume 1","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHAR420_MSTEP3_1_ITEM1"}},{"itemId":663367,"className":"CHAR420_MSTEP3_1_ITEM2","name":"The History of Exorcism Book 2","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHAR420_MSTEP3_1_ITEM2"}},{"itemId":663368,"className":"CHAR420_MSTEP3_1_ITEM3","name":"The History of Exorcism Book 3","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHAR420_MSTEP3_1_ITEM3"}},{"itemId":663369,"className":"CHAR420_MSTEP3_1_ITEM4","name":"The History of Exorcism Book 4","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHAR420_MSTEP3_1_ITEM4"}},{"itemId":663370,"className":"CHAR4_20_STEP2_2","name":"Cure","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663371,"className":"EXORCIST_MSTEP322_ITEM1","name":"Cure","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663372,"className":"EXORCIST_MSTEP323_ITEM1","name":"Prayer Book","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EXORCIST_MSTEP323_ITEM1"}},{"itemId":663373,"className":"EXORCIST_MSTEP33_ITEM1","name":"Topaz Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663374,"className":"EXORCIST_MSTEP33_ITEM2","name":"Blessed Goddess Statue","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EXORCIST_MSTEP33_ITEM2"}},{"itemId":663375,"className":"EXORCIST_MSTEP321_ITEM1","name":"Goods for Offering","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EXORCIST_MSTEP321_ITEM1"}},{"itemId":663377,"className":"EXORCIST_MSTEP21_ITEM1","name":"Krivis Master's Certificate of Approval","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663378,"className":"EXORCIST_MSTEP22_ITEM1","name":"Cleric Master's Certificate of Approval","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663379,"className":"EXORCIST_MSTEP23_ITEM1","name":"Inquisitor Master's Certificate of Approval","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663380,"className":"EXORCIST_MSTEP_ITEM1","name":"Exorcist Master's Note","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"EXORCIST_MSTEP_ITEM1"}},{"itemId":663381,"className":"EXORCIST_MSTEP33_ITEM3","name":"Exorcist Master's Parchment","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"EXORCIST_MSTEP33_ITEM3"}},{"itemId":663382,"className":"EXORCIST_JOB_QUEST_ITEM1","name":"Prayer Book","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EXORCIST_JOB_QUEST_ITEM1"}},{"itemId":663383,"className":"EXORCIST_JOB_QUEST_ITEM2","name":"Prayer Book","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EXORCIST_JOB_QUEST_ITEM2"}},{"itemId":663384,"className":"EXORCIST_JOB_QUEST_ITEM3","name":"Prayer Book","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EXORCIST_JOB_QUEST_ITEM3"}},{"itemId":663385,"className":"EXORCIST_JOB_QUEST_ITEM4","name":"Prayer Book","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EXORCIST_JOB_QUEST_ITEM4"}},{"itemId":663386,"className":"CHAR118_MSTEP2_ITEM2","name":"Retiarius Training Check Orb","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CHAR118_MSTEP2_ITEM2"}},{"itemId":663387,"className":"EXORCIST_JOB_HIDDEN_ITEM","name":"Orb of Guidance","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EXORCIST_JOB_HIDDEN_ITEM"}},{"itemId":663388,"className":"VELCOFFER_MQ1_ITEM","name":"Velcoffer Spirit Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663389,"className":"GM_WHITETREES_OBJ_ITEM1","name":"Sack","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663390,"className":"GM_WHITETREES_OBJ_ITEM2","name":"Bomb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GM_WHITETREES_OBJ_ITEM2"}},{"itemId":663391,"className":"GM_WHITETREES_OBJ_ITEM3","name":"Varistor","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GM_WHITETREES_OBJ_ITEM3"}},{"itemId":663392,"className":"GM_WHITETREES_OBJ_ITEM4","name":"Turret","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GM_WHITETREES_OBJ_ITEM4"}},{"itemId":663393,"className":"GM_WHITETREES_OBJ_ITEM5","name":"Stake Stockades","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_GM_WHITETREES_OBJ_ITEM5"}},{"itemId":663394,"className":"USKA_HMSTEP_ITEM1","name":"Royal Templar Appointment Letter","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_USKA_HMSTEP_ITEM1"}},{"itemId":663395,"className":"NICOPOLIS_811_SUBQ1_ITEM1","name":"Magic Block","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_NICOPOLIS_811_SUBQ1_ITEM1"}},{"itemId":663396,"className":"NICOPOLIS811_SUBQ22_ITEM1","name":"Ball of Electricity","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663397,"className":"NICOPOLIS_812_SUBQ3_ITEM1","name":"Resident Log No. 562","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_NICOPOLIS_812_SUBQ3_ITEM1"}},{"itemId":663398,"className":"NICOPOLIS_812_SUBQ3_ITEM2","name":"Resident Log No. 563","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_NICOPOLIS_812_SUBQ3_ITEM2"}},{"itemId":663399,"className":"NICOPOLIS_812_SUBQ3_ITEM3","name":"Resident Log No. 564","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_NICOPOLIS_812_SUBQ3_ITEM3"}},{"itemId":663400,"className":"NICOPOLIS_812_SUBQ3_ITEM4","name":"Resident Log No. 565","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_NICOPOLIS_812_SUBQ3_ITEM4"}},{"itemId":663401,"className":"NICOPOLIS_812_SUBQ5_ITEM1","name":"Burnt Clothes","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_NICOPOLIS_812_SUBQ5_ITEM1"}},{"itemId":663402,"className":"NICOPOLIS_812_SUBQ7_ITEM1","name":"Ingredy Powder","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663403,"className":"NICOPOLIS_812_SUBQ10_ITEM1","name":"Detecting Solution","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_NICOPOLIS_812_SUBQ10_ITEM1"}},{"itemId":663404,"className":"NICOPOLIS_812_SUBQ11_ITEM1","name":"Sealing Coin","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_NICOPOLIS_812_SUBQ11_ITEM1"}},{"itemId":663405,"className":"NICOPOLIS_813_SUBQ03_ITEM1","name":"Micro Magic Detector","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_NICOPOLIS_813_SUBQ03_ITEM1"}},{"itemId":663406,"className":"NICOPOLIS_813_SUBQ043_ITEM1","name":"Scroll of Gravity","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_NICOPOLIS_813_SUBQ043_ITEM1"}},{"itemId":663407,"className":"NICO813_SUBQ042_ITEM1","name":"Old Research Papers","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663408,"className":"NICO813_SUBQ044_ITEM1","name":"Old Research Papers","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663409,"className":"NICO813_SUBQ06_ITEM1","name":"Old Research Papers","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663410,"className":"NICO813_SUBQ06_ITEM2","name":"Old Research Papers","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":663411,"className":"NICOPOLIS_811_SUBQ5_ITEM1","name":"Special Glass Bottle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_NICOPOLIS_811_SUBQ5_ITEM1"}},{"itemId":663412,"className":"RAID_BRACKEN_BOSS2_KEY_ITEM","name":"Pereja Bead","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664000,"className":"FLASH59_SQ_04_ITEM","name":"Absorption Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FLASH59_SQ_04_ITEM"}},{"itemId":664002,"className":"FLASH60_SQ_05_ITEM","name":"Symbol of Silt","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FLASH60_SQ_05_ITEM"}},{"itemId":664003,"className":"FLASH60_SQ_06_ITEM","name":"Petrification Detector Activation Core","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664004,"className":"FLASH61_SQ_04_ITEM","name":"Stolen Supplies","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664005,"className":"FLASH61_SQ_07_1_ITEM","name":"Petrified Cargo Rubbings","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664006,"className":"FLASH63_SQ_02_ITEM","name":"Monster Stimulant","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FLASH63_SQ_02_ITEM"}},{"itemId":664007,"className":"FLASH63_SQ_02_1_ITEM","name":"Smelly Supplies","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664009,"className":"FLASH63_SQ_08_ITEM","name":"Improved Time Bomb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664010,"className":"FLASH63_SQ_07_ITEM","name":"Sticky Fluid","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664011,"className":"FLASH63_SQ_06_ITEM","name":"Processed Bomb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FLASH63_SQ_06_ITEM"}},{"itemId":664012,"className":"FLASH63_SQ_05_ITEM","name":"Hardened Explosives","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664013,"className":"FLASH63_SQ_04_ITEM","name":"Royal Army Propaganda","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664014,"className":"FLASH63_SQ_08_1_ITEM","name":"Frosty Core","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664015,"className":"FLASH63_SQ_12_ITEM","name":"Recruitment Notice","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664016,"className":"VPRISON511_MQ_03_ITEM","name":"Blut's Mark","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664017,"className":"VPRISON512_MQ_02_ITEM","name":"Hauberk's Mark","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664018,"className":"VPRISON512_MQ_03_ITEM","name":"Necromantic Orb of Arune","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_VPRISON512_MQ_03_ITEM"}},{"itemId":664019,"className":"VPRISON512_MQ_05_ITEM","name":"Sleeping Hauberk's Seal Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664020,"className":"VPRISON514_MQ_04_ITEM","name":"Evening Star Key","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664021,"className":"VPRISON513_MQ_02_ITEM","name":"Hauberk's Soul Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664022,"className":"VPRISON513_MQ_03_ITEM","name":"Night Star Spectral Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_VPRISON513_MQ_03_ITEM"}},{"itemId":664023,"className":"VPRISON515_MQ_RUNE_ITEM","name":"Evening Star Rune","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_VPRISON515_MQ_RUNE_ITEM"}},{"itemId":664024,"className":"VPRISON515_MQ_05_ITEM","name":"Sealing Token","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664025,"className":"VPRISON_HAUBERK_SEAL","name":"Hauberk's Seal Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_VPRISON512_MQ_03_ITEM"}},{"itemId":664026,"className":"VPRISON512_SQ_02_ITEM","name":"Nuaele's Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664027,"className":"VPRISON515_MQ_RUNE_EMPTY_ITEM","name":"Trace of Transference","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664028,"className":"VPRISON515_SQ_02_ITEM","name":"Empty Soul","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664029,"className":"VPRISON511_SQ_02_ITEM","name":"Expedition Memento","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664030,"className":"VPRISON514_SQ_03_ITEM","name":"Mark of Star","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664031,"className":"VPRISON514_SQ_02_ITEM","name":"Dionys' Claws","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664032,"className":"VPRISON513_SQ_03_ITEM","name":"Demon Teeth","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664033,"className":"UNDERF593_TYPED_BOMB_ITEM","name":"Explosives","type":"Quest","group":"Quest","weight":0,"maxStack":2,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664034,"className":"UNDERF592_TYPEB_POTION","name":"Flask of the King's Voice","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_UNDERF592_TYPEB_POTION"}},{"itemId":664035,"className":"FLASH60_SQ_04_ITEM","name":"Reaction Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664036,"className":"FLASH60_SQ_08_ITEM","name":"Velas Grass","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664037,"className":"FLASH61_SQ_06_ITEM","name":"Damaged Artifacts","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664038,"className":"FD_FTOWER611_TYPE_A_ITEM","name":"Silt Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664039,"className":"FD_FTOWER611_TYPE_A_ITEM_01","name":"Magic Catalyst","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664040,"className":"FD_UNDERF591_TYPED_LAMP_ITEM","name":"Old Oilsack","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664041,"className":"PILGRIM311_SQ_02_ITEM","name":"Flare","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PILGRIM311_SQ_02_ITEM"}},{"itemId":664042,"className":"PILGRIM311_SQ_03_ITEM","name":"Red Leaf","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664043,"className":"PILGRIM311_SQ_04_ITEM","name":"Flare Trap","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PILGRIM311_SQ_04_ITEM"}},{"itemId":664044,"className":"PILGRIM311_SQ_05_ITEM","name":"Locked Box","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664045,"className":"PILGRIM311_SQ_07_ITEM","name":"Sealed Envelope","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664048,"className":"PILGRIM312_SQ_01_ITEM","name":"Dark Blue Herb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664049,"className":"PILGRIM312_SQ_03_ITEM","name":"Shadow Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664050,"className":"PILGRIM312_SQ_04_ITEM","name":"Fragmented Soul Piece","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PILGRIM312_SQ_04_ITEM"}},{"itemId":664051,"className":"PILGRIM312_SQ_07_ITEM","name":"Soul Separation Potion","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664052,"className":"PILGRIM313_SQ_01_ITEM","name":"Blue Paint","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664053,"className":"PILGRIM313_SQ_05_ITEM","name":"Corrupt Fangs","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664054,"className":"PILGRIM313_SQ_02_ITEM","name":"Scroll of the Dead","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664055,"className":"PILGRIM313_SQ_03_ITEM","name":"Mochia Stems","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664056,"className":"PILGRIM313_SQ_04_ITEM","name":"Spirit Incense","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664057,"className":"PILGRIM313_SQ_07_ITEM","name":"Blessing Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664058,"className":"PILGRIM312_SQ_05_ITEM","name":"Soul Stone of Hauberk","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664059,"className":"SIAU16_MQ_04_ITEM","name":"Grass Leaf Ointment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664060,"className":"SIAU16_SQ_01_ITEM","name":"Red Leaf","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664061,"className":"SIAU16_SQ_02_ITEM","name":"Rampar Mucus","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664062,"className":"SIAU16_SQ_05_ITEM","name":"Useful Object","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664063,"className":"SIAU15RE_MQ_01_ITEM","name":"Priest Irma's Journal Page","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664064,"className":"SIAU15RE_MQ_01_1_ITEM","name":"Priest Irma's Journal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664065,"className":"SIAU15RE_MQ_03_ITEM","name":"Half-burned Note","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664066,"className":"SIAU15RE_MQ_05_ITEM","name":"Urbonas' Diary","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664067,"className":"SIAU15RE_SQ_02_ITEM","name":"Flint","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664068,"className":"SIAU15RE_SQ_03_ITEM","name":"Monster Stimulant","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SIAU15RE_SQ_03_ITEM"}},{"itemId":664069,"className":"SIAU11RE_MQ_01_ITEM","name":"Priest Gelija's Memo","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664070,"className":"SIAU11RE_MQ_03_ITEM","name":"Jolly's Whistle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SIAU11RE_MQ_03_ITEM"}},{"itemId":664071,"className":"SIAU11RE_MQ_06_ITEM","name":"Leftover Box","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664072,"className":"SIAU11RE_SQ_05_ITEM","name":"Corrupted Blood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664073,"className":"SIAU11RE_SQ_08_ITEM","name":"Chaser's Package","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664074,"className":"PRISON621_SQ_01_ITEM","name":"Red Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664075,"className":"PRISON621_SQ_02_ITEM","name":"Black Wooden Piece","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664076,"className":"PRISON621_SQ_03_ITEM","name":"Unidentified Package","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664077,"className":"PRISON621_SQ_04_ITEM","name":"Unidentified Package","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PRISON621_SQ_04_ITEM"}},{"itemId":664078,"className":"PRISON622_MQ_05_ITEM","name":"Restored Orb of Return","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664079,"className":"PRISON622_SQ_01_ITEM","name":"Twinkling Pearl Powder","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664080,"className":"PRISON622_SQ_02_ITEM","name":"Pearly Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PRISON622_SQ_02_ITEM"}},{"itemId":664081,"className":"PRISON623_MQ_05_ITEM","name":"Demon Orders","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664082,"className":"PRISON623_SQ_02_ITEM","name":"Priest Gelija's Medicine Pouch","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664083,"className":"PRISON623_SQ_03_ITEM","name":"Holy Water Cloth","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664084,"className":"PRISON611_MAP_ITEM","name":"Ashaq Underground Prison 1F Map","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PRISON611_MAP_ITEM"}},{"itemId":664085,"className":"PRISON621_MQ_07_ITEM","name":"Orb of Return","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664086,"className":"PRISON622_MQ_04_ITEM","name":"Cracked Orb of Return","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664087,"className":"PRISON623_SQ_01_ITEM","name":"Marnox's Insignia","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664088,"className":"PRISON622_MQ_06_ITEM","name":"Restored Orb of Return","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664089,"className":"CMINE6_RP_1_ITEM","name":"Emergency Power Source","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664090,"className":"PRISON622_RP_1_ITEM","name":"Faulty Trap","type":"Quest","group":"Quest","weight":0,"maxStack":100,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664091,"className":"BRACKEN631_RP_1_ITEM","name":"Blue Coal","type":"Quest","group":"Quest","weight":0,"maxStack":100,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664092,"className":"CHAPLE576_RP_1_ITEM","name":"Orb Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":100,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664093,"className":"BRACKEN632_RP_1_ITEM","name":"Lapasape Wand Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":100,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664094,"className":"BRACKEN633_RP_1_ITEM","name":"Dry Dadania Leaves","type":"Quest","group":"Quest","weight":0,"maxStack":1000,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664095,"className":"CM3LAKE83_RP_1_ITEM","name":"Antidote Sample","type":"Quest","group":"Quest","weight":0,"maxStack":1000,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664096,"className":"KATYN12_RP_1_ITEM","name":"Fading Spirit","type":"Quest","group":"Quest","weight":0,"maxStack":1000,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664097,"className":"ROKAS24_RP_2_ITEM","name":"Worn Ancient Scriptures","type":"Quest","group":"Quest","weight":0,"maxStack":1000,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664098,"className":"ROKAS31_RP_1_ITEM","name":"Dirty Pouch","type":"Quest","group":"Quest","weight":0,"maxStack":1000,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664099,"className":"ZACHA33_RP_1_ITEM","name":"Guardian's Essence","type":"Quest","group":"Quest","weight":0,"maxStack":1000,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664100,"className":"CASTLE652_RP_2_ITEM","name":"Concentrated Evil Energy","type":"Quest","group":"Quest","weight":0,"maxStack":1000,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664101,"className":"CASTLE653_RP_2_ITEM","name":"Maroulu Grass","type":"Quest","group":"Quest","weight":0,"maxStack":1000,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664102,"className":"FARM471_RP_1_ITEM","name":"Hidden Farming Tools","type":"Quest","group":"Quest","weight":0,"maxStack":1000,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664103,"className":"REMAINS38_RP_1_ITEM","name":"Offering Pouch","type":"Quest","group":"Quest","weight":0,"maxStack":1000,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664104,"className":"ORCHARD324_RP_1_ITEM","name":"Ceyral Saplings","type":"Quest","group":"Quest","weight":0,"maxStack":1000,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664105,"className":"PILGRIM48_RP_1_ITEM","name":"Manaryll Tombstone","type":"Quest","group":"Quest","weight":0,"maxStack":1000,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664106,"className":"PILGRIM49_RP_1_ITEM","name":"Sticky Wings","type":"Quest","group":"Quest","weight":0,"maxStack":1000,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664107,"className":"FIRETOWER691_ITEM_1","name":"Goddess Gegute's Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FIRETOWER691_ITEM_1"}},{"itemId":664108,"className":"FIRETOWER691_SQ_1_ITEM","name":"Magic Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664109,"className":"FIRETOWER691_SQ_2_ITEM","name":"Faint Magic Sources","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664110,"className":"FIRETOWER691_SQ_3_ITEM","name":"Discharged Magic Sources","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664111,"className":"LSCAVE551_BOOK_1","name":"Locations of Legend : Revised Edition","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664112,"className":"LSCAVE551_SQ_4_ITEM","name":"Heranda's Traces","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664113,"className":"LSCAVE551_SQ_6_ITEM","name":"Mecenary Company Antidote","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664114,"className":"LSCAVE551_SQ_7_ITEM","name":"Edeline's Silver Necklace","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664115,"className":"LSCAVE551_SQB_1_ITEM","name":"Records of Alembique Cave","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664116,"className":"LSCAVE551_SQB_2_ITEM","name":"Stalactite Chunk","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664118,"className":"NUNNERY_KQ_1_ITEM","name":"Convent Records","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":260},{"itemId":664119,"className":"NUNNERY_KQ_2_ITEM","name":"Lake Rafene Claw","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":260},{"itemId":664120,"className":"CASTLE_ID2_KQ_1_ITEM","name":"Magic Horn","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":260},{"itemId":664121,"className":"RANDBOX_GIMMICK_1_ITEM","name":"Fluflu Bomb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":260},{"itemId":664122,"className":"FTOWER692_KQ_1_ITEM","name":"Shaman Doll Summoning Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":300,"script":{"function":"SCR_USE_FTOWER692_KQ_1_ITEM"}},{"itemId":664123,"className":"PRISON81_KQ_1_ITEM","name":"Old Tool","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664124,"className":"LSCAVE551_KQ_1_ITEM","name":"Cave Sap","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664125,"className":"PILGRIM412_KQ_1_ITEM","name":"Magic Tracer Map: Salvia Forest","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":260,"script":{"function":"SCR_USE_PILGRIM412_KQ_1_ITEM"}},{"itemId":664126,"className":"LSCAVE521_KQ_1_ITEM","name":"Magic Tracer Map: Tevhrin Stalactite Cave Section 1","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":260,"script":{"function":"SCR_USE_LSCAVE521_KQ_1_ITEM"}},{"itemId":664127,"className":"FANTASYLIB481_MQ_2_ITEM","name":"Scattered Records","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664128,"className":"FANTASYLIB481_MQ_4_ITEM","name":"Dimensional Search Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FANTASYLIB481_MQ_4_ITEM"}},{"itemId":664129,"className":"FANTASYLIB481_SQ_2_ITEM","name":"Unidentified Record","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664130,"className":"FANTASYLIB482_MQ_3_ITEM","name":"Trasium Piece","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664131,"className":"FANTASYLIB481_SQ_1_ITEM","name":"mone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664132,"className":"FANTASYLIB483_MQ_4_ITEM","name":"Nobrenal Power Blueprint","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664133,"className":"FANTASYLIB483_MQ_6_1_ITEM","name":"Dimensional Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664134,"className":"FANTASYLIB483_MQ_6_2_ITEM","name":"Demon's Magic Source","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664135,"className":"FANTASYLIB483_MQ_7_ITEM","name":"Protective Crystal Maintenance Tools","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FANTASYLIB483_MQ_7_ITEM"}},{"itemId":664136,"className":"FANTASYLIB483_MQ_8_ITEM","name":"Record: Giltine","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664137,"className":"FANTASYLIB484_MQ_3_ITEM","name":"Monumental Magic Source","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664138,"className":"FANTASYLIB485_MQ_ITEM","name":"Torsium Key","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FANTASYLIB485_MQ_ITEM"}},{"itemId":664139,"className":"DCAPITAL105_SQ_2_ITEM","name":"Baltinel Parish Relic","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664140,"className":"DCAPITAL105_SQ_9_ITEM","name":"Kupoles' Belongings","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664141,"className":"DCAPITAL107_SQ_6_ITEM","name":"Neutralizing Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664142,"className":"DCAPITAL107_SQ_7_ITEM","name":"Fake Keepsake","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664143,"className":"DCAPITAL107_SQ_9_ITEM","name":"Grisia's Everything","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664144,"className":"PAYAUTA_EP11_2_ITEM","name":"Stolen Repair Supplies","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664145,"className":"PAYAUTA_EP11_7_ITEM","name":"Magnetic Dirt","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664146,"className":"CASTLE96_MQ_2_ITEM","name":"Topaz Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664147,"className":"CASTLE96_MQ_5_ITEM","name":"Shiny Glass Shard","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664148,"className":"CASTLE96_MQ_7_ITEM","name":"Cornerstone Piece","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664149,"className":"CASTLE96_MQ_10_ITEM","name":"Ancient Tree Essence","type":"Quest","group":"Quest","weight":15,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664150,"className":"CASTLE98_MQ_CORE_ITEM","name":"Time Meter Necklace","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CASTLE98_MQ_CORE_ITEM"}},{"itemId":664151,"className":"CASTLE98_MQ_2_ITEM","name":"Lever Piece","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664152,"className":"CASTLE98_MQ_3_ITEM","name":"Broken Goddess Statue","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664153,"className":"CASTLE98_MQ_4_ITEM","name":"Broken Wheel Piece","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664154,"className":"CASTLE98_MQ_5_ITEM","name":"Burnt Arrow","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664155,"className":"CASTLE98_MQ_6_ITEM","name":"Broken Arrow","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664156,"className":"CASTLE98_MQ_7_ITEM","name":"Lost Pendant","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664157,"className":"CASTLE98_MQ_END_ITEM","name":"Pajauta's Pendant","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664160,"className":"EP14_3LINE_TUTO_MQ_5_ITEM","name":"Letter from Kaoneela Henrjusi","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664161,"className":"EP14_3LINE_TUTO_MQ_7_1_ITEM","name":"Soul Projector","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EP14_3LINE_TUTO_MQ_7_1_ITEM"}},{"itemId":664162,"className":"EP14_3LINE_TUTO_MQ_12_ITEM","name":"Crude Kingdom Map","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":664163,"className":"EP14_3LINE_TUTO_MQ_13_ITEM","name":"Kingdom's Order","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666000,"className":"FARM49_1_MQ01_ITEM","name":"Lizardman Leather","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666001,"className":"FARM49_1_MQ02_ITEM1","name":"Second Corrupted Soil Sample","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666002,"className":"FARM49_1_MQ02_ITEM2","name":"First Corrupted Soil Sample","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666003,"className":"FARM49_1_MQ04_ITEM","name":"Tama Body Fluid","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666005,"className":"FARM49_1_MQ05_ITEM","name":"Mysterious Small Box","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666006,"className":"FARM49_1_SQ04_ITEM","name":"Miren's Old Bag","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666007,"className":"FARM49_1_SQ05_ITEM","name":"Rambear Fur","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666008,"className":"FARM49_1_SQ06_ITEM","name":"Young Grapevine Root","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666010,"className":"FARM49_2_MQ01_ITEM","name":"Stumpy Tree Horn Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666011,"className":"FARM49_2_MQ02_ITEM","name":"Stolen Grain Bag","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666012,"className":"FARM49_2_MQ04_ITEM","name":"Druid's Antidote","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666013,"className":"FARM49_2_MQ05_ITEM","name":"Obedience Stick","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FARM49_2_MQ05_ITEM"}},{"itemId":666014,"className":"FARM49_2_MQ06_ITEM1","name":"Druid's Empty Stone Bowl","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_FARM49_2_MQ06_ITEM1"}},{"itemId":666015,"className":"FARM49_2_MQ06_ITEM2","name":"Water-Filled Stone Bowl","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666016,"className":"FARM49_2_SQ06_ITEM","name":"Weiss' Seed Pouch","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666017,"className":"FARM49_3_MQ02_ITEM","name":"Bloody Necklace","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666018,"className":"FARM49_3_MQ03_ITEM","name":"Pink Tree Root Mole's Horn","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666019,"className":"FARM49_3_SQ02_ITEM","name":"Valen's Medicine Bag","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666020,"className":"THORN39_2_MQ03_ITEM_1","name":"Wedge Needle","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666021,"className":"THORN39_2_MQ03_ITEM_2","name":"Antidote ","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_THORN39_2_MQ03_ITEM_2"}},{"itemId":666022,"className":"THORN39_2_MQ05_ITEM","name":"Working Trap","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666023,"className":"THORN39_2_SQ01_ITEM","name":"Scripture Sheet","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666024,"className":"THORN39_2_SQ03_ITEM","name":"Tempas Mushroom","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666025,"className":"THORN39_2_SQ04_ITEM","name":"Rocktor's Stony Leg","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666026,"className":"THORN39_1_MQ03_ITEM","name":"Chafperor Thorn Venom","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666027,"className":"THORN39_1_MQ04_ITEM","name":"Toxic Thorn Tree Stump Goo","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666028,"className":"THORN39_1_MQ05_ITEM","name":"Spring Water Venom","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666029,"className":"THORN39_1_MQ03_BOWL","name":"Precipitation Bowl","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_THORN39_1_MQ03_BOWL"}},{"itemId":666030,"className":"THORN39_1_MQ06_ITEM","name":"Woodluwa Leaf","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666031,"className":"THORN39_1_SQ01_ITEM","name":"Chevas' Medicinal Herb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666032,"className":"THORN39_1_SQ02_ITEM","name":"Empty Beehive","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666033,"className":"THORN39_1_SQ03_ITEM","name":"Woodluwa Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666034,"className":"THORN39_3_MQ02_ITEM_1","name":"Liverwort Cap","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666035,"className":"THORN39_3_MQ02_ITEM_2","name":"Stonecon Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666036,"className":"THORN39_3_MQ05_ITEM","name":"Old Book","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666037,"className":"THORN39_3_MQ06_ITEM","name":"Seal Stamped Letter","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666038,"className":"THORN39_3_SQ02_ITEM","name":"Acylado Hydrophyte","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666039,"className":"ABBEY39_4_MQ07_ITEM","name":"Monastery Crystal Ball","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666040,"className":"ABBEY39_4_SQ01_ITEM","name":"Deodorizing Potion","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666041,"className":"ABBEY39_4_SQ03_ITEM","name":"Tyla Monastery Scriptures","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666042,"className":"TABLELAND28_1_SQ04_ITEM","name":"Assistant Commander Gomen's Given Memo","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_TABLELAND28_1_SQ04_ITEM"}},{"itemId":666043,"className":"TABLELAND28_1_SQ07_ITEM","name":"Lepusbunny Assassin Fur","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666044,"className":"TABLELAND28_1_SQ08_ITEM","name":"Flint","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666045,"className":"TABLELAND28_2_SQ01_ITEM","name":"Message from Mesafasla","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666046,"className":"TABLELAND28_2_SQ02_ITEM","name":"Siaulav Mage's Emergency Food","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666047,"className":"TABLELAND28_2_SQ03_ITEM","name":"Plateau Potatoes","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666048,"className":"TABLELAND28_2_SQ04_ITEM","name":"Usable Bar Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666049,"className":"TABLELAND28_2_SQ05_ITEM","name":"Blue Lapasape Spotted Mushroom","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666050,"className":"TABLELAND28_2_SQ06_ITEM1","name":"Horace's Handknife","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_TABLELAND28_2_SQ06_ITEM1"}},{"itemId":666051,"className":"TABLELAND28_2_SQ06_ITEM2","name":"Plateau Tree's Inner Barks","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666052,"className":"JOB_2_PELTASTA2_ITEM1","name":"Dry Wood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666053,"className":"JOB_2_PELTASTA2_ITEM2","name":"Pokuborn Tusk","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666054,"className":"JOB_2_KRIVIS2_ITEM1","name":"Torch Gem","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666055,"className":"JOB_2_KRIVIS2_ITEM2","name":"Repleted Torch Gem","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_2_KRIVIS2_ITEM2"}},{"itemId":666056,"className":"JOB_2_PRIEST2_ITEM1","name":"Holy Water for Blessings","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666057,"className":"JOB_2_PELTASTA3_ITEM","name":"Combat Enemy Counter","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666058,"className":"JOB_2_CLERIC3_ITEM","name":"Special Medicine from Orsha","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_2_CLERIC3_ITEM"}},{"itemId":666059,"className":"JOB_2_KRIVIS3_ITEM","name":"Goods for Offering","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_2_KRIVIS3_ITEM"}},{"itemId":666060,"className":"JOB_2_PRIEST3_ITEM1","name":"Wormwood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666061,"className":"JOB_2_PRIEST3_ITEM2","name":"Hemostasis Herb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666062,"className":"JOB_2_PRIEST3_ITEM3","name":"Moonlight Flower","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666063,"className":"JOB_2_DIEVDIRBYS3_ITEM1","name":"Ore Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666064,"className":"JOB_2_DIEVDIRBYS3_ITEM2","name":"Special Order Chisel","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666065,"className":"JOB_2_HOPLITE4_ITEM","name":"Aidas' Lost Spear Tip","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666066,"className":"JOB_2_KRIVIS4_ITEM1","name":"Glowing Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_2_KRIVIS4_ITEM1"}},{"itemId":666067,"className":"JOB_2_KRIVIS4_ITEM2","name":"Purified Monster's Ash","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666068,"className":"JOB_2_DIEVDIRBYS4_ITEM","name":"Sparnasman's Horn","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666069,"className":"JOB_2_SADHU4_ITEM","name":"Sadhu's Energy","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_2_SADHU4_ITEM"}},{"itemId":666070,"className":"JOB_2_HOPLITE5_ITEM1","name":"Hoplites' Broken Spear Parts","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666071,"className":"JOB_2_HOPLITE5_ITEM2","name":"Hoplites' Broken Off Armor Pieces","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666072,"className":"JOB_2_BARBARIAN5_ITEM","name":"Barbarian's Medicinal Liquid","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_2_BARBARIAN5_ITEM"}},{"itemId":666073,"className":"JOB_2_DIEVDIRBYS5_ITEM","name":"Papayam Greasy Pulp","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666074,"className":"JOB_2_PALADIN5_ITEM","name":"Old Sacred Object","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666075,"className":"CASTLE65_1_MQ02_ITEM","name":"Spell Detector Compass","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CASTLE65_1_MQ02_ITEM"}},{"itemId":666076,"className":"CASTLE65_1_MQ03_ITEM1","name":"Empty Magic Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666077,"className":"CASTLE65_1_MQ03_ITEM2","name":"Fully-charged Magic Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666078,"className":"CASTLE65_1_MQ04_ITEM","name":"Cast Releasing Amulet","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666079,"className":"CASTLE65_1_MQ05_ITEM","name":"Magic Orb Pouch","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666080,"className":"CASTLE65_1_SQ02_ITEM1","name":"Ardel's Diary, Page 1","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CASTLE65_1_SQ02_ITEM1"}},{"itemId":666081,"className":"CASTLE65_1_SQ02_ITEM2","name":"Ardel's Diary, Page 2","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CASTLE65_1_SQ02_ITEM2"}},{"itemId":666082,"className":"CASTLE65_1_SQ02_ITEM3","name":"Ardel's Diary, Page 3","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CASTLE65_1_SQ02_ITEM3"}},{"itemId":666083,"className":"CASTLE65_1_SQ04_ITEM","name":"Useful Arrow","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666084,"className":"CASTLE65_2_MQ02_ITEM","name":"Spell Detector Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CASTLE65_2_MQ02_ITEM"}},{"itemId":666085,"className":"CASTLE65_2_SQ01_ITEM","name":"Useful Wooden Board","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666086,"className":"CASTLE65_2_SQ03_ITEM","name":"Thorn Mushroom","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666087,"className":"CASTLE65_2_SQ04_ITEM","name":"Charog Sap","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666088,"className":"CASTLE65_3_MQ05_ITEM","name":"Yane's Shaman Doll","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666089,"className":"CASTLE65_3_SQ01_ITEM","name":"Ominous Magic Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CASTLE65_3_SQ01_ITEM"}},{"itemId":666090,"className":"CASTLE65_3_SQ04_ITEM","name":"Magic Amplifier","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666091,"className":"Bocors_doll2_resource1","name":"Raffly Soul Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666092,"className":"Bocors_doll2_resource2","name":"Vubbe Warrior Mind Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666093,"className":"PILGRIM41_1_SQ01_ITEM","name":"Tini's Shining Horn","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666094,"className":"PILGRIM41_1_SQ02_ITEM","name":"Taumas Herb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666095,"className":"PILGRIM41_1_SQ03_ITEM","name":"Jacob's Lost Luggage","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666096,"className":"PILGRIM41_1_SQ04_ITEM","name":"Sturdy Branch","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666097,"className":"PILGRIM41_1_SQ06_ITEM","name":"Tini Meat","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666098,"className":"PILGRIM41_1_SQ08_ITEM","name":"Firewood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666099,"className":"PILGRIM41_2_SQ01_ITEM","name":"Spion Fur","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666100,"className":"PILGRIM41_2_SQ02_ITEM","name":"Salvia Bramble Fruit","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666101,"className":"PILGRIM41_2_SQ05_ITEM","name":"Order's Secret Medicine","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PILGRIM41_2_SQ05_ITEM"}},{"itemId":666102,"className":"PILGRIM41_2_SQ09_ITEM","name":"Flammable Leaves","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666103,"className":"PILGRIM41_4_SQ03_ITEM","name":"Maven Abbey Rosary","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666104,"className":"PILGRIM41_4_SQ05_ITEM","name":"Monk Dorma's Holy Water","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PILGRIM41_4_SQ05_ITEM"}},{"itemId":666105,"className":"PILGRIM41_4_SQ09_ITEM","name":"Abandoned Plant Roots","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666106,"className":"PILGRIM41_4_SQ15_ITEM","name":"Lepusbunny Meat","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666107,"className":"PILGRIM41_3_SQ03_ITEM","name":"Mirror of Truth","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666108,"className":"PILGRIM41_3_SQ04_ITEM","name":"Replenished Mirror of Truth","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666109,"className":"PILGRIM41_3_SQ07_ITEM","name":"Monk Stella's Rosary","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666110,"className":"PILGRIM41_5_SQ02_1_ITEM","name":"Empty Holy Water Flask","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PILGRIM41_5_SQ02_1_ITEM"}},{"itemId":666111,"className":"PILGRIM41_5_SQ02_2_ITEM","name":"Ouaas Tree Sap","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666112,"className":"PILGRIM41_5_SQ06_ITEM","name":"Magic Scroll of Holy Power Enhancement","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666113,"className":"PILGRIM41_5_SQ10_ITEM","name":"Suppression Device Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666114,"className":"ABBEY41_6_SQ06_ITEM","name":"Maven Abbey Orb","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666115,"className":"ABBEY41_6_SQ09_ITEM","name":"Well-preserved Food","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666116,"className":"ABBEY41_6_SQ10_ITEM","name":"Herb of Restoration","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666117,"className":"BRACKEN42_1_SQ04_ITEM","name":"Debris from the Wall","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666118,"className":"BRACKEN42_1_SQ06_ITEM","name":"Ruklys' Document Chest","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_BRACKEN42_1_SQ06_ITEM"}},{"itemId":666119,"className":"BRACKEN42_1_SQ07_ITEM","name":"Ruklys' Document Chest","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_BRACKEN42_1_SQ07_ITEM"}},{"itemId":666120,"className":"BRACKEN42_1_SQ08_1_ITEM","name":"Blue Gosaru Magic Stone Shards","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666121,"className":"BRACKEN42_1_SQ08_2_ITEM","name":"Document Chest's Key","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666122,"className":"BRACKEN42_2_SQ03_ITEM","name":"Strong Solvent","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666123,"className":"BRACKEN42_2_SQ04_ITEM","name":"Yega Bracken Spores","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666124,"className":"BRACKEN42_2_SQ05_ITEM","name":"Sleep Powder","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_BRACKEN42_2_SQ05_ITEM"}},{"itemId":666125,"className":"BRACKEN42_2_SQ06_ITEM","name":"Refined Spores","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_BRACKEN42_2_SQ06_ITEM"}},{"itemId":666126,"className":"BRACKEN42_2_SQ07_ITEM","name":"Astrus Herbs","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666127,"className":"BRACKEN42_2_SQ10_ITEM","name":"Centaurus Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666128,"className":"BRACKEN42_2_SQ11_ITEM","name":"Centaurus Dust","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_BRACKEN42_2_SQ11_ITEM"}},{"itemId":666129,"className":"BRACKEN42_2_SQ12_1_ITEM","name":"Blue Beetow Wings","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666130,"className":"BRACKEN42_2_SQ12_2_ITEM","name":"Dry Bracken Leaves","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666131,"className":"WHITETREES23_1_SQ01_ITEM","name":"Whitetailed Grass","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666132,"className":"WHITETREES23_1_SQ06_ITEM1","name":"Kugheri Stimulant","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_WHITETREES23_1_SQ06_ITEM1"}},{"itemId":666133,"className":"WHITETREES23_1_SQ06_ITEM2","name":"Stimulated Poison Sacks","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666134,"className":"WHITETREES23_1_SQ08_ITEM","name":"Kugheri Paralysis Poison","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666135,"className":"WHITETREES23_1_SQ09_ITEM","name":"Vilhelmas' Trap","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666136,"className":"MAPLE23_2_SQ01_ITEM","name":"Leafnut Tailfruit","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666137,"className":"MAPLE23_2_SQ02_ITEM","name":"Sturdy Stick","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666138,"className":"MAPLE23_2_SQ04_ITEM","name":"Pystis Grass Roots","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666139,"className":"MAPLE23_2_SQ05_ITEM","name":"Orange Grummer Legs","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666140,"className":"MAPLE23_2_SQ06_ITEM1","name":"Red Colimen Fluid","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_MAPLE23_2_SQ06_ITEM1"}},{"itemId":666141,"className":"MAPLE23_2_SQ06_ITEM2","name":"Small Jeweled Chest","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666142,"className":"MAPLE23_2_SQ09_ITEM","name":"Joquvas Family Shield","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666143,"className":"WHITETREES23_3_SQ01_ITEM","name":"Syla Dandelion Dew","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666144,"className":"WHITETREES23_3_SQ03_ITEM","name":"Demon Orders","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666145,"className":"WHITETREES23_3_SQ05_ITEM","name":"Royal Family Chest","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666146,"className":"WHITETREES23_3_SQ06_ITEM1","name":"Map to the Magical Trees","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_WHITETREES23_3_SQ06_ITEM1"}},{"itemId":666147,"className":"WHITETREES23_3_SQ06_ITEM2","name":"Seal of the Royal Family","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_WHITETREES23_3_SQ06_ITEM2"}},{"itemId":666148,"className":"WHITETREES23_3_SQ06_ITEM3","name":"Dull Royal Family Seal","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666149,"className":"WHITETREES23_3_SQ06_ITEM4","name":"Dull Royal Family Seal","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666150,"className":"WHITETREES23_3_SQ06_ITEM5","name":"Dull Royal Family Seal","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666151,"className":"WHITETREES23_3_SQ06_ITEM6","name":"Dull Royal Family Seal","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666152,"className":"WHITETREES23_3_SQ06_ITEM7","name":"Dull Royal Family Seal","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666153,"className":"WHITETREES23_3_SQ07_ITEM","name":"Indraja's note","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_WHITETREES23_3_SQ07_ITEM"}},{"itemId":666154,"className":"WHITETREES23_3_SQ10_ITEM","name":"Kugheri Shaman Staff","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666155,"className":"DCAPITAL103_SQ01_ITEM","name":"Ancient Parchment Book","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666156,"className":"DCAPITAL103_SQ03_ITEM1","name":"Ella's Handknife","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_DCAPITAL103_SQ03_ITEM1"}},{"itemId":666157,"className":"DCAPITAL103_SQ03_ITEM2","name":"Tree Root Juice","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666158,"className":"DCAPITAL103_SQ04_ITEM","name":"Fake Parchment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666159,"className":"DCAPITAL103_SQ07_ITEM","name":"Acceptable Book","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666160,"className":"DCAPITAL103_SQ08_ITEM","name":"Advance Party's Keepsakes","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666161,"className":"DCAPITAL103_SQ09_ITEM1","name":"Investigation Team's Pendulum","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_DCAPITAL103_SQ09_ITEM1"}},{"itemId":666162,"className":"DCAPITAL103_SQ09_ITEM2","name":"Hidden Slate","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666163,"className":"DCAPITAL103_SQ11_ITEM","name":"Usable Vines","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666164,"className":"DCAPITAL103_SQ12_ITEM","name":"Goblin Shaman's Jewel","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666165,"className":"EVENT_MONSTER_ITEM1","name":"Monster Badge","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666170,"className":"3CMLAKE261_SQ02_ITEM01","name":"Beholder's Orb","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666171,"className":"3CMLAKE261_SQ02_ITEM02","name":"Magic Infused Orb","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666172,"className":"3CMLAKE261_SQ03_ITEM","name":"Light Blue Wing","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666173,"className":"3CMLAKE261_SQ05_ITEM","name":"Empty Dispel Magic Tool","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666174,"className":"3CMLAKE261_SQ06_ITEM","name":"Magic Infused Dispel Tool","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666175,"className":"3CMLAKE261_SQ09_ITEM","name":"Resistance Supplies Match","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_3CMLAKE261_SQ11_ITEM"}},{"itemId":666176,"className":"3CMLAKE261_SQ10_ITEM01","name":"Records Parchment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_3CMLAKE261_SQ10_ITEM01"}},{"itemId":666177,"className":"3CMLAKE261_SQ10_ITEM02","name":"Zibukas Crossroas Report","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666178,"className":"3CMLAKE261_SQ11_ITEM","name":"Scout's Oil Bottle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666179,"className":"3CMLAKE262_SQ08_ITEM","name":"Lakeland Leaves","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666180,"className":"3CMLAKE262_SQ04_ITEM01","name":"Unprocessed Bomb","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666181,"className":"3CMLAKE262_SQ05_ITEM","name":"Magic Nullification Bomb","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666182,"className":"3CMLAKE262_SQ04_ITEM02","name":"Moist Roots","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666183,"className":"3CMLAKE262_SQ09_ITEM","name":"Magical Catalyst Powder","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666184,"className":"3CMLAKE262_SQ10_ITEM01","name":"Resistance Supplies Bottle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666185,"className":"3CMLAKE262_SQ10_ITEM02","name":"Spiritually Infused Lakeland Sap","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_3CMLAKE262_SQ10_ITEM02"}},{"itemId":666186,"className":"3CMLAKE261_SQ13_ITEM01","name":"Used Arrow","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666187,"className":"3CMLAKE261_SQ13_ITEM02","name":"Blue-colored Cloth","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666188,"className":"3CMLAKE261_SQ13_ITEM03","name":"Someone's Pendant","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666189,"className":"3CMLAKE261_SQ14_ITEM","name":"Dirk Inside Tutu's Body","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666190,"className":"F_CO_OP_SIAULIAI_50_GRESS","name":"Dead Crops","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666191,"className":"F_CO_OP_REMAINS_40_TRADE_GOODS","name":"Lost Goods","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666192,"className":"F_CO_OP_REMAINS_40_BONUS_GOODS1","name":"Expensive Goods","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666193,"className":"F_CO_OP_REMAINS_40_BONUS_GOODS2","name":"Merchant Ledger","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666194,"className":"F_CO_OP_PILGRIMROAD_46_HOLY_WATER","name":"Priest-grade Holy Water","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666195,"className":"JOB_SHADOWMANCER_BRACKEN_43_3_TRACE","name":"Shadow Trace of Ziburynas Forest","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666196,"className":"JOB_SHADOWMANCER_BRACKEN_42_1_TRACE","name":"Shadow Trace of Khonot Forest","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666197,"className":"JOB_SHADOWMANCER_MAPLE_25_3_TRACE","name":"Shadow Trace of Lhadar Forest","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666198,"className":"JOB_SHADOWMANCER_REMAINS_37_2_TRACE","name":"Shadow Trace of Namu Temple Ruins","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666199,"className":"JOB_SHADOWMANCER_OBJECT","name":"Shadowmancer Master's Research Device","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666200,"className":"EXPLORERS_TOKEN","name":"Adventurer's Token","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666201,"className":"MASTER_SAPPER1_1_ITEM","name":"A pouch given by the Sapper Master.","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666202,"className":"SUBMASTER_LINKER1_2_ITEM","name":"A Key from the Linker Submaster","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666204,"className":"STARTOWER_88_MQ_30_ITEM","name":"Portal Suppressor","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STARTOWER_88_MQ_30_ITEM"}},{"itemId":666205,"className":"STARTOWER_88_MQ_40_ITEM","name":"Portal Bomb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666206,"className":"STARTOWER_88_MQ_60_ITEM","name":"Magic Stone Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666207,"className":"STARTOWER_88_MQ_70_ITEM","name":"Magic Stone Bomb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666208,"className":"STARTOWER_89_MQ_30_ITEM","name":"First Device Lever","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666209,"className":"STARTOWER_89_MQ_40_ITEM","name":"Written Instructions","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666210,"className":"STARTOWER_89_MQ_50_ITEM","name":"Second Device Lever","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666211,"className":"STARTOWER_89_MQ_80_ITEM","name":"Elder Henika's Key","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666212,"className":"STARTOWER_89_SQ_10_ITEM","name":"Schaffenstar Emergency Meds","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666213,"className":"STARTOWER_90_MQ_20_ITEM","name":"Control Device Handle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666214,"className":"STARTOWER_90_MQ_30_ITEM","name":"First Device Lever","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666215,"className":"STARTOWER_90_MQ_70_ITEM","name":"Second Device Lever","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666216,"className":"STARTOWER_90_MQ_90_ITEM","name":"Elder Adaux's Key","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666217,"className":"STARTOWER_91_MQ_30_ITEM","name":"Suspicious Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STARTOWER_91_MQ_30_ITEM"}},{"itemId":666218,"className":"STARTOWER_91_MQ_50_ITEM","name":"Defensive Device Lever","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666219,"className":"STARTOWER_91_MQ_70_ITEM","name":"First General Office Key","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STARTOWER_91_MQ_70_ITEM"}},{"itemId":666220,"className":"STARTOWER_91_MQ_80_ITEM","name":"Second General Office Key","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666221,"className":"STARTOWER_91_MQ_90_ITEM01","name":"Magic Arrow","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_STARTOWER_91_MQ_90_ITEM01"}},{"itemId":666222,"className":"STARTOWER_91_MQ_90_ITEM02","name":"Elder Cezaris' Key","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666223,"className":"STARTOWER_92_MQ_20_ITEM","name":"Magic Residue","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666224,"className":"stonetablet09","name":"Astral Tower Revelation","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"stonetablet09","numArg1":10}},{"itemId":666225,"className":"UNIQUE_RAID_GIMMICK_ITEM_01","name":"Red Bookmark","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":10}},{"itemId":666226,"className":"UNIQUE_RAID_GIMMICK_ITEM_02","name":"Yellow Bookmark","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":10}},{"itemId":666227,"className":"UNIQUE_RAID_GIMMICK_ITEM_03","name":"Green Bookmark","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":10}},{"itemId":666228,"className":"UNIQUE_RAID_GIMMICK_ITEM_04","name":"Blue Bookmark","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":10}},{"itemId":666229,"className":"MASTER_HUNTER1_1_ITEM","name":"Lydia Schaffen and the Fletcher","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":10}},{"itemId":666230,"className":"MASTER_HUNTER1_2_ITEM","name":"Lydia Schaffen Crossroads","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":10}},{"itemId":666231,"className":"MASTER_HUNTER1_3_ITEM","name":"The Notch of Lydia Schaffen","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":10}},{"itemId":666232,"className":"MASTER_HUNTER1_4_ITEM","name":"Lydia Schaffen and Rumpelstiltskin ","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":10}},{"itemId":666233,"className":"SUBMASTER_LINKER1_2_ITEM02","name":"Atman Extension","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":10}},{"itemId":666234,"className":"MASTER_ICEMAGE2_2_ITEM","name":"Kadumel Era Armor","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":10}},{"itemId":666235,"className":"MASTER_SAGE1_ITEM01","name":"Sage Baseline","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"JOB_SAGE_book1"}},{"itemId":666236,"className":"MASTER_SAGE1_ITEM02","name":"The Goddess' Abode of Mount Monderor Volume I","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"JOB_SAGE_book2"}},{"itemId":666237,"className":"MASTER_SAGE1_ITEM03","name":"Book of the Void","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"JOB_SAGE_book3"}},{"itemId":666238,"className":"NICOPOLIS_RAID_ITEM","name":"Mana Lamp","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_NICOPOLIS_RAID_ITEM","numArg1":10}},{"itemId":666239,"className":"E_Balloon_11","name":"Balloon: 평","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_E_Balloon","strArg":"kor11"}},{"itemId":666240,"className":"E_Balloon_12","name":"Balloon: 생","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_E_Balloon","strArg":"kor12"}},{"itemId":666241,"className":"E_Balloon_13","name":"Balloon: 겜","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_E_Balloon","strArg":"kor13"}},{"itemId":666242,"className":"E_Balloon_14","name":"Balloon: ♥","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_E_Balloon","strArg":"kor14"}},{"itemId":666243,"className":"CASTLE93_MAIN03_ITEM","name":"Demon Orders","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666244,"className":"CASTLE93_MAIN04_ITEM","name":"Transformation Potion","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CASTLE93_MAIN04_ITEM"}},{"itemId":666245,"className":"CASTLE94_MAIN03_ITEM","name":"Purifier","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666246,"className":"CASTLE94_MAIN04_ITEM","name":"Purifying Holy Water","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CASTLE94_MAIN04_ITEM"}},{"itemId":666247,"className":"CASTLE94_MAIN07_ITEM","name":"Statue of Purification","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666248,"className":"CASTLE95_MAIN03_ITEM01","name":"Grenade","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666249,"className":"CASTLE95_MAIN03_ITEM02","name":"Explosives","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666250,"className":"CASTLE95_MAIN05_ITEM01","name":"Red Crystal Piece","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666251,"className":"CASTLE95_MAIN05_ITEM02","name":"Blue Crystal Piece","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666252,"className":"CASTLE95_MAIN05_ITEM03","name":"Yellow Crystal Piece","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666254,"className":"CASTLE95_MAIN05_ITEM04","name":"Green Crystal Piece","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666255,"className":"CASTLE95_MAIN07_ITEM","name":"Portal Suppressor","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666256,"className":"CASTLE95_MAIN02_BOOK","name":"Antanina's Note","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"CASTLE95_MAIN02_BOOK"}},{"itemId":666257,"className":"EVENT_HALLOWEENCANDY_3","name":"Spoiled Candy","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666258,"className":"EP12_PRELUDE_03_ITEM","name":"Sacred Namott","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666259,"className":"EP12_PRELUDE_06_ITEM","name":"Transparent Orb","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666260,"className":"EP12_PRELUDE_07_ITEM","name":"Orb with Divine Power","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666261,"className":"EP12_MAINSTREAM_NERINGA_CANDLE_ITEM","name":"Neringa’s Candle","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EP12_MAINSTREAM_NERINGA_CANDLE_ITEM"}},{"itemId":666262,"className":"EP12_MAINSTREAM_RAIMA_WHEEL_ITEM","name":"Laima's Wheel","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EP12_MAINSTREAM_RAIMA_WHEEL_ITEM"}},{"itemId":666263,"className":"Quest_Ancient_Card_Escarot","name":"[Escarot] Assister Card","type":"Quest","group":"Quest","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Escarot"}},{"itemId":666264,"className":"Quest_Ancient_Card_Grimreaper","name":"[Grim Reaper] Assister Card","type":"Quest","group":"Quest","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Grimreaper"}},{"itemId":666265,"className":"Quest_Ancient_Card_Naktis","name":"[Naktis] Assister Card","type":"Quest","group":"Quest","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Naktis"}},{"itemId":666266,"className":"Quest_Ancient_Card_Prisoncutter","name":"[Prison Cutter] Assister Card","type":"Quest","group":"Quest","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Prisoncutter"}},{"itemId":666267,"className":"Quest_Ancient_Card_Fireload","name":"[Fire Lord] Assister Card","type":"Quest","group":"Quest","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Fireload"}},{"itemId":666268,"className":"Quest_Ancient_Card_Saltistter","name":"[Saltistter] Assister Card","type":"Quest","group":"Quest","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Saltistter"}},{"itemId":666269,"className":"Quest_Ancient_Card_Velniamonkey","name":"[Velnia Monkey] Assister Card","type":"Quest","group":"Quest","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Velniamonkey"}},{"itemId":666270,"className":"Quest_Ancient_Card_Canceril","name":"[Canceril] Assister Card","type":"Quest","group":"Quest","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Canceril"}},{"itemId":666271,"className":"Quest_Ancient_Card_FerretMarauder","name":"[Ferret Marauder] Assister Card","type":"Quest","group":"Quest","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_FerretMarauder"}},{"itemId":666272,"className":"Quest_Ancient_Card_Lapene","name":"[Rafene] Assister Card","type":"Quest","group":"Quest","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Lapene"}},{"itemId":666273,"className":"Quest_Ancient_Card_Mothstem","name":"[Mothstem] Assister Card","type":"Quest","group":"Quest","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Mothstem"}},{"itemId":666274,"className":"Quest_Ancient_Card_Colimencia","name":"[Colimencia] Assister Card","type":"Quest","group":"Quest","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Colimencia"}},{"itemId":666275,"className":"Quest_Ancient_Card_Orkan","name":"[Organ] Assister Card","type":"Quest","group":"Quest","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Orkan"}},{"itemId":666276,"className":"Quest_Ancient_Card_Sequoia","name":"[Sequoia] Assister Card","type":"Quest","group":"Quest","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Sequoia"}},{"itemId":666277,"className":"Quest_Ancient_Card_Mandara","name":"[Mandara] Assister Card","type":"Quest","group":"Quest","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Mandara"}},{"itemId":666278,"className":"Quest_Ancient_Card_Castle_princess","name":"[Castle Princess] Assister Card","type":"Quest","group":"Quest","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"ANCIENT_MONSTER_PIECE_USE","strArg":"Ancient_Castle_princess"}},{"itemId":666279,"className":"EP14_1_FCASTLE1_MQ_4_ITEM1","name":"Royal Army Sword","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666280,"className":"EP14_1_FCASTLE1_MQ_4_ITEM2","name":"Royal Army Spear","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666290,"className":"EP14_1_FCASTLE1_MQ_4_ITEM3","name":"Royal Army Arrow","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666291,"className":"EP14_1_FCASTLE2_MQ_2_ITEM1","name":"Broken Material","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666292,"className":"EP14_1_FCASTLE2_MQ_2_ITEM2","name":"Usable Tent Meterial","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666293,"className":"EP14_1_FCASTLE2_MQ_3_ITEM1","name":"Crude Barricade","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666294,"className":"EP14_1_FCASTLE3_MQ_2_ITEM1","name":"Delmore Hamlet Defense Plan","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666295,"className":"EP14_1_FCASTLE3_MQ_2_ITEM2","name":"Delmore Manor Defense Plan","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666296,"className":"EP14_1_FCASTLE3_MQ_6_ITEM1","name":"Delmore Outskirts Defense Plan","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666297,"className":"EP14_1_FCASTLE3_MQ_8_ITEM1","name":"Delmore Citadel Defense Plan","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666298,"className":"EP14_1_FCASTLE3_MQ_8_ITEM2","name":"Delmore Garden Defense Plan","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666299,"className":"EP14_1_FCASTLE3_MQ_8_ITEM3","name":"Operation Proposal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666300,"className":"EP14_1_FCASTLE4_MQ_7_ITEM1","name":"Mirtinas Piece","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EP14_1_FCASTLE4_MQ_7_ITEM1"}},{"itemId":666301,"className":"EP14_1_FCASTLE5_MQ_1_ITEM1","name":"Urgent Repair Kit","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EP14_1_FCASTLE4_MQ_7_ITEM1"}},{"itemId":666302,"className":"EP14_1_FCASTLE5_MQ_1_ITEM2","name":"Orsha Flag","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EP14_1_FCASTLE4_MQ_7_ITEM1"}},{"itemId":666303,"className":"EP14_1_FCASTLE5_MQ_1_ITEM3","name":"Royal Army Flag","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EP14_1_FCASTLE4_MQ_7_ITEM1"}},{"itemId":666304,"className":"EP14_1_FCASTLE5_MQ_1_ITEM4","name":"Spear","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666305,"className":"EP14_2_DCASTLE1_MQ_5_ITEM1","name":"Crystal Piece with Kruvina's power","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666306,"className":"EP14_2_DCASTLE1_MQ_6_ITEM1","name":"Crystal Piece with Rune Craved","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666307,"className":"EP14_2_DCASTLE1_MQ_9_ITEM1","name":"Barrier Removal Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666308,"className":"EP14_2_DCASTLE2_MQ_4_ITEM1","name":"Pendant from Inesa","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666309,"className":"EP15_1_FABBEY1_MQ_4_ITEM1","name":"Red Bracken","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666310,"className":"EP15_1_FABBEY1_MQ_6_ITEM1","name":"Pokubu Meat","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666311,"className":"EP15_1_F_ABBEY2_MQ_2_ITEM1","name":"ITEM_20230130_028362","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666312,"className":"EP15_1_F_ABBEY2_MQ_5_ITEM1","name":"ITEM_20230130_028364","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666313,"className":"EP15_1_F_ABBEY2_MQ_6_ITEM1","name":"Melody of Destruction","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666314,"className":"EP15_1_ABBEY1_SQ2_ITEM","name":"ITEM_20230130_028367","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":666315,"className":"EP15_1_ABBEY2_SQ2_ITEM","name":"ITEM_20230130_028369","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667000,"className":"CATACOMB_33_1_SQ_04_FIRE","name":"Gravekeeper's Match","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CATACOMB_33_1_SQ_04_FIRE"}},{"itemId":667001,"className":"CATACOMB_33_1_SQ_05_DOLL","name":"Grave Keeper's Spell Doll","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CATACOMB_33_1_SQ_05_DOLL"}},{"itemId":667002,"className":"CATACOMB_33_2_SQ_02_ORB","name":"Evil Thoughts Stone","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CATACOMB_33_2_SQ_02_ORB"}},{"itemId":667003,"className":"CATACOMB_33_2_SQ_03_BURN","name":"Gintas' Flint","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CATACOMB_33_2_SQ_03_BURN"}},{"itemId":667004,"className":"CATACOMB_33_2_SQ_SYMBOL","name":"Full Soul Stone","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CATACOMB_33_2_SQ_SYMBOL"}},{"itemId":667005,"className":"CATACOMB_33_2_SQ_DOC","name":"Manor Owner List","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CATACOMB_33_2_SQ_DOC"}},{"itemId":667006,"className":"CATACOMB_33_1_SQ_09_ITEM","name":"Evil Magic Trace","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667007,"className":"CATACOMB_33_2_SQ_BOOK_1","name":"Hidden List (1)","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667008,"className":"CATACOMB_33_2_SQ_BOOK_2","name":"Hidden List (2)","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667009,"className":"CATACOMB_33_2_SQ_BOOK_3","name":"Hidden List (3)","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667010,"className":"CATACOMB_33_2_SQ_BOOK_4","name":"Hidden List (4)","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667011,"className":"ORCHARD_323_MQ_01_ITEM","name":"Bellai Forest Healing Herb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667012,"className":"ORCHARD_323_MQ_03_ITEM2","name":"Stolen Food by Ferrets","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667013,"className":"ORCHARD_323_SQ_01_ITEM","name":"Gigantic Fruit Juice","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667014,"className":"ORCHARD_323_SQ_WATER","name":"Dirty Red Water from the Well","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ORCHARD_323_SQ_WATER"}},{"itemId":667015,"className":"ORCHARD_323_SQ_CARVE","name":"Widas' Statue","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ORCHARD_323_SQ_CARVE"}},{"itemId":667016,"className":"ORCHARD_342_MQ_04_ITEM","name":"Drowsy Herb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667017,"className":"ORCHARD_342_MQ_05_ITEM","name":"Bag of Drowsy Herb Incense","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ORCHARD_342_MQ_05_ITEM"}},{"itemId":667018,"className":"ORCHARD_342_MQ_HOLLY_SPHERE","name":"Goddess' Orb","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ORCHARD_342_MQ_HOLLY_SPHERE"}},{"itemId":667019,"className":"ORCHARD_342_SQ_01_SCROLL","name":"Empty Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ORCHARD_342_SQ_01_SCROLL"}},{"itemId":667020,"className":"ORCHARD_342_SQ_02_TRANSFORM","name":"Ferret Transformation Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ORCHARD_342_SQ_02_TRANSFORM"}},{"itemId":667021,"className":"ORCHARD_342_SQ_03_WOOD","name":"Voodooed Wooden Piece","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ORCHARD_342_SQ_03_WOOD"}},{"itemId":667022,"className":"ORCHARD_342_SQ_04_ITEM","name":"Terrible Scent","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ORCHARD_342_SQ_04_ITEM"}},{"itemId":667023,"className":"ORCHARD_324_MQ_04_ITEM","name":"Demon Blood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667024,"className":"ORCHARD_324_SQ_SCROLL","name":"Purification Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ORCHARD_324_SQ_SCROLL"}},{"itemId":667025,"className":"ORCHARD_324_SQ_04_SEED","name":"Earth Flower Seed","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ORCHARD_324_SQ_04_SEED"}},{"itemId":667026,"className":"ORCHARD_324_SQ_04_FLOWER","name":"Earth Flower of Vigor","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667027,"className":"FD_CASTLE671_BURNIGSTONE","name":"Burning Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667028,"className":"FD_CASTLE672_REDSOUL","name":"Red Cursed Soul","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667029,"className":"FD_CASTLE672_BLUESOUL","name":"Blue Cursed Soul","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667030,"className":"HIDENSEEK_GIMMICK_PENDULUM","name":"Pendulum","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_HIDENSEEK_GIMMICK_PENDULUM"}},{"itemId":667031,"className":"TABLELAND_11_1_SQ_01_MSG","name":"Adomas' Note","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667032,"className":"TABLELAND_11_1_SQ_10_LETTER","name":"Old Letter","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_TABLELAND_11_1_SQ_10_LETTER"}},{"itemId":667033,"className":"TABLELAND_11_1_SQ_05_PARTS","name":"Monster Corpse Piece","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667034,"className":"TABLELAND_11_1_SQ_06_CHARM","name":"Lemija's Amulet","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_TABLELAND_11_1_SQ_06_CHARM"}},{"itemId":667035,"className":"TABLELAND_11_1_SQ_11_PAPER","name":"Assistant Commander's Note","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_TABLELAND_11_1_SQ_11_PAPER"}},{"itemId":667036,"className":"TABLELAND_11_1_SQ_13_OBJ","name":"Vedas Plateau Soldier's Belongings","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667037,"className":"TABLELAND_11_1_SQ_12_RING","name":"Engagement Ring","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667038,"className":"SIAULIAI_35_1_SQ_POTION","name":"Base Reagent","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667039,"className":"SIAULIAI_35_1_SQ_6_LEAF","name":"Spion Tree Leaves","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667040,"className":"SIAULIAI_35_1_SQ_7_REAGENT","name":"Lucienne's Reagent","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_SIAULIAI_35_1_SQ_7_REAGENT"}},{"itemId":667041,"className":"SIAULIAI_35_1_SQ_11_TOOTH","name":"Spion Teeth","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667042,"className":"SIAULIAI_35_1_SQ_10_BAISIE","name":"Vaidotas' Neutralizer","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667043,"className":"SIAULIAI_35_1_SQ_12_HERB","name":"Experiment Herb Seeds","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667044,"className":"ABBEY_35_3_SQ_ORB","name":"Soul Sphere","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ABBEY_35_3_SQ_ORB"}},{"itemId":667045,"className":"ABBEY_35_3_EVIL_BLOOD","name":"The red blood of the demons","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667046,"className":"ABBEY_35_4_SQ_HOLLYORB","name":"Purified Soul Sphere","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ABBEY_35_4_SQ_HOLLYORB"}},{"itemId":667047,"className":"ABBEY_35_3_SQ_11_FAKE_BIBLE","name":"False Scriptures","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667048,"className":"ABBEY_35_4_SQ_2_FOOD","name":"Edible Food Items","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667049,"className":"ABBEY_35_3_SQ_10_REAGENT","name":"Lucienne's Special Reagent","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ABBEY_35_3_SQ_10_REAGENT"}},{"itemId":667050,"className":"CORAL_35_2_SQ_2_STONEPIECE","name":"Stone","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CORAL_35_2_SQ_2_STONEPIECE"}},{"itemId":667051,"className":"CORAL_35_2_SQ_3_HORNPIECE","name":"Coral Horn Piece","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CORAL_35_2_SQ_3_HORNPIECE"}},{"itemId":667053,"className":"CORAL_35_2_SQ_6_TERRASTONE","name":"Earth Magic Stone","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CORAL_35_2_SQ_6_TERRASTONE"}},{"itemId":667054,"className":"CORAL_35_2_SQ_8_MARINESTONE","name":"Sea Magic Stone","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CORAL_35_2_SQ_8_MARINESTONE"}},{"itemId":667055,"className":"CORAL_35_2_SQ_7_HARMONYSTONE","name":"Balance Magic Stone","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CORAL_35_2_SQ_7_HARMONYSTONE"}},{"itemId":667056,"className":"CORAL_35_2_SQ_13_SCROLL","name":"Binding Magic Circle Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667057,"className":"CORAL_35_2_SQ_14_FINDER","name":"Magic Searching Stone","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CORAL_35_2_SQ_14_FINDER"}},{"itemId":667058,"className":"LIMESTONE_52_1_MQ_4_CRYSTAL","name":"Broken Magic Core Pieces","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667059,"className":"LIMESTONE_52_1_MQ_5_EVILCORE","name":"Evil Demon Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667060,"className":"LIMESTONE_52_1_MQ_6_CLEARCORE","name":"Purified Monster Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667061,"className":"LIMESTONE_52_1_MQ_10_CRYSTAL","name":"Unstable Magic Core","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_LIMESTONE_52_1_MQ_10_CRYSTAL"}},{"itemId":667062,"className":"LIMESTONE_52_1_SQ_1_POWDER","name":"Tala Sleep Powder","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_LIMESTONE_52_1_SQ_1_POWDER"}},{"itemId":667063,"className":"LIMESTONE_52_1_SQ_1_NECK","name":"Tala Tribe Necklaces","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667064,"className":"LIMESTONE_52_1_SQ_1_NECK_1","name":"Purified Tala Necklace","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_LIMESTONE_52_1_SQ_1_NECK_1"}},{"itemId":667065,"className":"LIMESTONE_52_2_MQ_7_STONE","name":"Demon Magic Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667066,"className":"LIMESTONE_52_2_MQ_8_HEALSTONE","name":"Materialized Recovery","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667067,"className":"LIMESTONE_52_2_MQ_8_HEALSTONE_F","name":"Unstable Orb of Restoration","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667068,"className":"LIMESTONE_52_3_MQ_8_MOSS","name":"Mysterious Moss","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667069,"className":"LIMESTONE_52_4_MQ_3_CHARM","name":"Green Zolem Core","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667070,"className":"LIMESTONE_52_4_HOLY_CHARM","name":"Purified Zolem Core","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_LIMESTONE_52_4_HOLY_CHARM"}},{"itemId":667071,"className":"LIMESTONE_52_5_MQ_4_FINDER","name":"Kupole's Detection Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_LIMESTONE_52_5_MQ_4_FINDER"}},{"itemId":667072,"className":"LIMESTONE_52_3_SQ_2_PENDENT","name":"Siute's Pendant","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667073,"className":"LIMESTONE_52_4_MQ_8_KEY","name":"Saule's Divine Utensil","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667074,"className":"LIMESTONE_52_4_MQ_8_KEY_HOLY","name":"Restored Saule's Divine Utensil","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667075,"className":"LIMESTONE_52_4_MQ_3_CHARM2","name":"Evil Talismans","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667100,"className":"CHATHEDRAL53_SQ07_ITEM","name":"First Wand Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667101,"className":"CHATHEDRAL53_SQ08_ITEM","name":"Second Wand Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667102,"className":"CHATHEDRAL54_SQ07_ITEM","name":"Unstable Wand","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667103,"className":"PILGRIMROAD55_SQ12_ITEM","name":"Roana's Holy Water","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PILGRIMROAD55_SQ12_ITEM"}},{"itemId":667104,"className":"FARM49_1_SQ07_ITEM1","name":"Edward's Dagger","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667105,"className":"FARM49_1_SQ07_ITEM2","name":"Edward's Bow","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667106,"className":"FARM49_1_SQ08_ITEM","name":"Unknown Flower","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667107,"className":"FARM49_2_SQ07_ITEM1","name":"Edward's Empty Flask","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667108,"className":"FARM49_2_SQ07_ITEM2","name":"Flask With Cyst Fluid","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667109,"className":"FARM49_3_SQ07_ITEM","name":"Melbania Herb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667110,"className":"FARM49_3_SQ08_ITEM","name":"Davelae Flower","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667111,"className":"THORN39_2_SQ06_ITEM","name":"Cockat Meat","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667112,"className":"THORN39_1_SQ04_ITEM1","name":"Potent Fragrance","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_THORN39_1_SQ04_ITEM1"}},{"itemId":667113,"className":"THORN39_1_SQ04_ITEM2","name":"Small Glass Flask","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667114,"className":"THORN39_1_SQ04_ITEM3","name":"Flask Of Honey","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667115,"className":"THORN39_1_SQ06_ITEM","name":"Blocking Sphere","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_THORN39_1_SQ06_ITEM"}},{"itemId":667116,"className":"THORN39_3_SQ05_ITEM","name":"Loftlem Eye","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667117,"className":"THORN39_3_SQ06_ITEM","name":"Dead Liverwort Spores","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667118,"className":"THORN39_3_SQ07_ITEM","name":"Hallucination Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_THORN39_3_SQ07_ITEM"}},{"itemId":667119,"className":"FLASH60_SQ10_ITEM","name":"Sparkling Stones","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667120,"className":"FLASH60_SQ11_ITEM","name":"Saltisdaughter Crystal Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667121,"className":"FLASH63_SQ13_ITEM","name":"Faded Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667122,"className":"FLASH63_SQ14_ITEM","name":"Emergency Food Supplies","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667123,"className":"FLASH29_1_SQ_090_ITEM","name":"Heavy Bag","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667124,"className":"FLASH29_1_SQ_100_ITEM","name":"Old Ring","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667150,"className":"F_3CMLAKE_85_MQ_02_3_ITEM_01","name":"Hand Net","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_F_3CMLAKE_85_MQ_02_3_ITEM_01"}},{"itemId":667151,"className":"F_3CMLAKE_85_MQ_02_3_ITEM_02","name":"Lake Fish","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667152,"className":"F_3CMLAKE_85_MQ_03_ITEM_01","name":"Water Facility Management","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_F_3CMLAKE_85_MQ_03_ITEM_01"}},{"itemId":667153,"className":"F_3CMLAKE_85_MQ_03_ITEM_02","name":"Bloody Note","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667154,"className":"F_3CMLAKE_85_MQ_04_ITEM","name":"Good Magic Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667155,"className":"F_3CMLAKE_85_MQ_08_ITEM","name":"Water Bag","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_F_3CMLAKE_85_MQ_08_ITEM"}},{"itemId":667156,"className":"F_3CMLAKE_85_SQ_01_ITEM","name":"Rias Weeds","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667157,"className":"F_3CMLAKE_85_SQ_02_ITEM","name":"Refined Rias Weed Powder","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_F_3CMLAKE_85_SQ_02_ITEM"}},{"itemId":667158,"className":"F_3CMLAKE_85_MQ_09_ITEM","name":"Water Bag","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_F_3CMLAKE_85_MQ_09_ITEM"}},{"itemId":667160,"className":"F_3CMLAKE86_MQ2_ITEM","name":"Trap Removal Tool","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_F_3CMLAKE86_MQ2_ITEM"}},{"itemId":667161,"className":"F_3CMLAKE86_MQ4_ITEM","name":"Small Poison Bottle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667162,"className":"F_3CMLAKE86_MQ8_ITEM","name":"Magic Detector","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_F_3CMLAKE86_MQ8_ITEM"}},{"itemId":667163,"className":"F_3CMLAKE86_MQ10_ITEM","name":"First Half of Ancient Disc","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667164,"className":"F_3CMLAKE86_MQ11_ITEM","name":"Second Half of Ancient Disc","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667165,"className":"F_3CMLAKE86_MQ14_ITEM","name":"Revealing Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_F_3CMLAKE86_MQ14_ITEM"}},{"itemId":667166,"className":"F_3CMLAKE86_SQ1_ITEM","name":"Stone with Lake Energy","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667170,"className":"F_3CMLAKE87_MQ2_ITEM","name":"Absorbing Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_F_3CMLAKE87_MQ2_ITEM"}},{"itemId":667171,"className":"F_3CMLAKE87_MQ4_ITEM1","name":"Powerful Arrow Recipe","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667172,"className":"F_3CMLAKE87_MQ4_ITEM2","name":"Earth Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667173,"className":"F_3CMLAKE87_MQ5_ITEM","name":"Natural Obsidian","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667174,"className":"F_3CMLAKE87_MQ6_ITEM","name":"Humming Duke Feather","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667175,"className":"F_3CMLAKE87_MQ7_ITEM","name":"Ziburyte","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667176,"className":"F_3CMLAKE87_MQ8_ITEM","name":"Poisonous Trap","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_F_3CMLAKE87_MQ8_ITEM"}},{"itemId":667177,"className":"F_3CMLAKE87_SQ1_ITEM","name":"Humming Duke Meat","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667178,"className":"F_3CMLAKE87_SQ2_ITEM","name":"Pasto","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667180,"className":"FD_LIMESTONECAVE711_MANASOUL","name":"Magic Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667181,"className":"FD_LIMESTONECAVE712_EVENT2_ITEM","name":"Damaged Stone Plate","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667182,"className":"FD_LIMESTONECAVE711_EVENT2_ITEM1","name":"Concentrated Blue Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667183,"className":"FD_LIMESTONECAVE711_EVENT2_ITEM2","name":"Concentrated Red Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667184,"className":"FD_LIMESTONECAVE711_EVENT2_ITEM3","name":"Concentrated Yellow Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667200,"className":"CHAR220_MSTEP1_ITEM1","name":"List of Supporters","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_ONMYOJI_MSTEP1_ITEM1"}},{"itemId":667201,"className":"CHAR220_MSTEP2_1_1_ITEM1","name":"Saltisdaughter Fur","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_ONMYOJI_MSTEP2_1_1_ITEM1"}},{"itemId":667202,"className":"CHAR220_MSTEP2_1_1_ITEM2","name":"Saltisdaughter Fur Piece","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667203,"className":"CHAR220_MSTEP2_1_2_ITEM1","name":"Dry Wood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667204,"className":"CHAR220_MSTEP2_2_1_ITEM1","name":"Mushroom Samples","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667205,"className":"CHAR220_MSTEP2_2_2_ITEM1","name":"Grape Seed Samples","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667206,"className":"CHAR220_MSTEP2_3_ITEM1","name":"Ducky Leather","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_ONMYOJI_MSTEP2_3_ITEM1"}},{"itemId":667207,"className":"CHAR220_MSTEP2_3_ITEM2","name":"Processed Ducky Leather","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667208,"className":"CHAR220_MSTEP2_4_ITEM1","name":"Simple Brooch ","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667209,"className":"CHAR220_MSTEP2_5_ITEM1","name":"Hard Thistle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667210,"className":"CHAR220_MSTEP2_6_ITEM1","name":"Dimensional Stone Detector","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_ONMYOJI_MSTEP2_6_ITEM1"}},{"itemId":667211,"className":"CHAR220_MSTEP2_6_ITEM2","name":"Sample Dimensional Stone Sack","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667212,"className":"CHAR220_MSTEP2_7_ITEM1","name":"Spell Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_ONMYOJI_MSTEP2_7_ITEM1"}},{"itemId":667213,"className":"JOB_ONMYOJI_Q1_ITEM","name":"Training Shikiban ","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_ONMYOJI_Q1_ITEM"}},{"itemId":667220,"className":"CHAR312_PRE_MSTEP_ITEM","name":"Oracle Master's Note","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_PIED_PIPER_PRE_MSTEP_ITEM"}},{"itemId":667221,"className":"CHAR312_MSTEP1_ITEM1","name":"Perilla","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667222,"className":"CHAR312_MSTEP1_ITEM2","name":"Cure for Mental Illness","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667223,"className":"CHAR312_MSTEP2_ITEM1","name":"Empty Glass Bottle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_PIED_PIPER_MSTEP2_ITEM1"}},{"itemId":667224,"className":"CHAR312_MSTEP2_ITEM2","name":"Full Glass Bottle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667225,"className":"CHAR312_MSTEP2_ITEM3","name":"Mental Illness Cure","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667226,"className":"CHAR312_MSTEP3_ITEM","name":"Blessed Cure for Mental Illness","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667227,"className":"JOB_PIED_PIPER_Q1_ITEM","name":"Old Flute","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_PIED_PIPER_Q1_ITEM"}},{"itemId":667228,"className":"JOB_ASSASSIN_Q1_ITEM","name":"Hasisas Base Potion","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_ASSASSIN_Q1_ITEM"}},{"itemId":667230,"className":"F_MAPLE_243_MQ_02_ITEM_01","name":"Yellow Flower","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667231,"className":"F_MAPLE_243_MQ_02_ITEM_02","name":"Red Flower","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667232,"className":"F_MAPLE_243_MQ_02_ITEM_03","name":"White Flower","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667233,"className":"F_MAPLE_243_MQ_03_ITEM_01","name":"Yellow Butterfly Leaf","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667234,"className":"F_MAPLE_243_MQ_03_ITEM_02","name":"Red Butterfly Leaf","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667235,"className":"F_MAPLE_243_MQ_03_ITEM_03","name":"White Butterfly Leaf","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667236,"className":"F_MAPLE_243_MQ_05_ITEM","name":"Transparent Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667237,"className":"F_MAPLE_243_MQ_07_ITEM_01","name":"Sealing Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_F_MAPLE_243_MQ_07_ITEM_01"}},{"itemId":667238,"className":"F_MAPLE_243_MQ_07_ITEM_02","name":"Binding Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_F_MAPLE_243_MQ_07_ITEM_02"}},{"itemId":667239,"className":"F_MAPLE_243_MQ_09_ITEM","name":"Mysterious Seed","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667240,"className":"F_MAPLE_241_MQ_01_ITEM","name":"Sealing Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_F_MAPLE_241_MQ_01_ITEM"}},{"itemId":667241,"className":"F_MAPLE_241_MQ_03_ITEM_01","name":"Seed of the Divine Tree","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667242,"className":"F_MAPLE_241_MQ_03_ITEM_02","name":"Vivacious Grass","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667243,"className":"F_MAPLE_241_MQ_04_1_ITEM","name":"Holy Branch","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667244,"className":"F_MAPLE_242_MQ_02_ITEM","name":"Unbinding Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667245,"className":"F_MAPLE_242_MQ_03_ITEM","name":"Orb filled with Natural Energy","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_F_MAPLE_242_MQ_03_ITEM"}},{"itemId":667246,"className":"F_MAPLE_242_MQ_06_ITEM","name":"Red Banterer Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667247,"className":"F_MAPLE_242_MQ_08_ITEM","name":"Sealing Scroll","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_F_MAPLE_242_MQ_08_ITEM"}},{"itemId":667248,"className":"F_MAPLE_242_MQ_10_ITEM","name":"Sealed Seed of the Divine Tree","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667249,"className":"F_MAPLE_242_MQ_04_2_ITEM","name":"Sealed Seed of the Divine Tree","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":667250,"className":"PRISON_82_MQ_11_BOOK","name":"Book authored by an unnamed demon","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"PRISON_82_MQ_11_BOOK"}},{"itemId":667251,"className":"PRISON_82_MQ_11_NECKLACE","name":"Bracken Necklace","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_PRISON_82_MQ_11_NECKLACE"}},{"itemId":667252,"className":"D_CASTLE_19_1_MQ_05_ITEM","name":"Goddess Austeja’s Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_D_CASTLE_19_1_MQ_05_ITEM"}},{"itemId":668001,"className":"F_3CMLAKE_83_MQ_ITEM1","name":"Old Disc","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_F_3CMLAKE_83_MQ_ITEM1"}},{"itemId":668002,"className":"F_3CMLAKE_83_MQ_ITEM2","name":"Red Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668003,"className":"F_3CMLAKE_83_SQ_ITEM1","name":"Rajatadpole Meat","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668004,"className":"F_3CMLAKE_83_MQ_ITEM3","name":"Burnt Diary","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668005,"className":"F_3CMLAKE_83_MQ_ITEM4","name":"Note With Content From Burnt Diary","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668006,"className":"F_3CMLAKE_84_MQ_ITEM1","name":"Burnt Painting","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668007,"className":"F_3CMLAKE_84_MQ_ITEM2","name":"Blue Herb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668008,"className":"F_3CMLAKE_84_MQ_ITEM3","name":"Bait Meat","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668009,"className":"F_3CMLAKE_84_SQ_ITEM1","name":"Markazi Flower","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668010,"className":"F_3CMLAKE_84_SQ_ITEM2","name":"Gooey Grease","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668011,"className":"F_3CMLAKE_84_SQ_ITEM3","name":"Rajapearlite Lard","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668012,"className":"F_3CMLAKE_83_MQ_ITEM5","name":"Modis' Special Bait","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668013,"className":"F_3CMLAKE_83_SQ_ITEM2","name":"Sack with Offerings","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668014,"className":"UNDERFORTRESS_68_ITEM1","name":"Sparkly Blue Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668015,"className":"UNDERFORTRESS_68_ITEM2","name":"Sparkly Red Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668016,"className":"UNDERFORTRESS_68_ITEM3","name":"Sicarius Key","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668017,"className":"CORAL_32_1_SQ_4_ITEM","name":"Suspicious Pouch","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668018,"className":"CORAL_32_1_SQ_9_ITEM","name":"Peculiar Coral Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668019,"className":"CORAL_32_1_SQ_10_ITEM1","name":"Greentoshell Shell Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668020,"className":"CORAL_32_1_SQ_10_ITEM2","name":"Blue Lapasape Moss","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668021,"className":"CORAL_32_1_SQ_11_ITEM1","name":"Merchant's Magic Detector","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CORAL_32_1_SQ_11_ITEM1"}},{"itemId":668022,"className":"CORAL_32_1_SQ_11_ITEM2","name":"Old Backpack","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668023,"className":"CORAL_32_1_SQ_9_ITEM2","name":"Arnim Coral Piece","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668024,"className":"KATYN_45_3_SQ_7_ITEM","name":"Yellow Griba Pollen","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668025,"className":"KATYN_45_1_SQ_6_ITEM","name":"Yellow Sapous","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668026,"className":"KATYN_45_1_SQ_9_ITEM1","name":"Spirit Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668027,"className":"KATYN_45_1_SQ_9_ITEM2","name":"Ritual Pouch","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668028,"className":"KATYN_45_1_SQ_10_ITEM","name":"Protective Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668029,"className":"KATYN_45_1_SQ_5_ITEM1","name":"Sticky Liquid","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668030,"className":"KATYN_45_1_SQ_5_ITEM2","name":"Broken Bow","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668031,"className":"KATYN_45_2_SQ_4_ITEM","name":"Shrivelled Black Stem","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668032,"className":"KATYN_45_2_SQ_8_ITEM1","name":"Black Old Kepa Stems","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668033,"className":"KATYN_45_2_SQ_8_ITEM2","name":"Red Puragi Hook","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668034,"className":"KATYN_45_2_SQ_8_ITEM3","name":"Blue Ridimed Leaves","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668035,"className":"KATYN_45_2_SQ_9_ITEM","name":"Peculiarly Scented Fruit","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668036,"className":"KATYN_45_2_SQ_11_ITEM","name":"Old Carving Knife","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668037,"className":"KATYN_45_3_SQ_3_ITEM1","name":"Evil Energy Dagger","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668038,"className":"KATYN_45_3_SQ_3_ITEM2","name":"Broken Amulet","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668039,"className":"KATYN_45_3_SQ_5_ITEM","name":"Suppressing Sculpture","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668040,"className":"KATYN_45_2_SQ_6_ITEM","name":"Faintly Glowing Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668041,"className":"KATYN_45_2_SQ_5_ITEM","name":"Purifying Sculpture","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668042,"className":"KATYN_45_3_SQ_13_ITEM","name":"Blue Sakmoli Leaves","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668043,"className":"KATYN_45_3_SQ_11_ITEM","name":"Carve Owl","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668044,"className":"CORAL_32_2_SQ_3_ITEM","name":"Blue Coral","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668045,"className":"CORAL_32_2_SQ_5_ITEM","name":"Odd-Smelling Pouch","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CORAL_32_2_SQ_5_ITEM"}},{"itemId":668046,"className":"CORAL_32_2_SQ_8_ITEM","name":"Intact Gap Crab Shell Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668047,"className":"CORAL_32_2_SQ_8_ITEM2","name":"Crafted Coral","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668048,"className":"CORAL_32_2_SQ_12_ITEM","name":"Cerulean Stone","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668049,"className":"CORAL_32_2_SQ_11_ITEM","name":"Daroul's Pendant","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668050,"className":"KATYN_45_3_SQ_15_ITEM","name":"Purified Dagger","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668051,"className":"CORAL_32_2_SQ_12_ITEM2","name":"Ocean's Divine Water","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CORAL_32_2_SQ_12_ITEM2"}},{"itemId":668052,"className":"CATACOMB_25_4_SQ_20_ITEM","name":"Pag Clamper's Core","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668053,"className":"CATACOMB_25_4_SQ_30_ITEM","name":"Keepsakes Containing the Resentment of the Dead","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668054,"className":"CATACOMB_25_4_SQ_60_ITEM1","name":"Temporary Doctrine Chapter 1","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668055,"className":"CATACOMB_25_4_SQ_60_ITEM2","name":"Temporary Doctrine Chapter 2","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668056,"className":"CATACOMB_25_4_SQ_60_ITEM3","name":"Temporary Doctrine Chapter 3","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668057,"className":"CATACOMB_25_4_SQ_70_ITEM","name":"Pag Doper's Oil Bottle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668058,"className":"CATACOMB_25_4_SQ_90_ITEM","name":"Damaged Temporary Doctrine","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668059,"className":"CATACOMB_25_4_SQ_100_ITEM","name":"Book of Judgment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668060,"className":"MAPLE_25_3_SQ_20_ITEM","name":"Nutta Fluid","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668061,"className":"MAPLE_25_3_SQ_30_ITEM","name":"Fallen Leaves","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668062,"className":"MAPLE_25_3_SQ_40_ITEM","name":"Lina's Supplement Bottle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668063,"className":"MAPLE_25_3_SQ_120_ITEM1","name":"Tranquilizer","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_MAPLE_25_3_SQ_120_ITEM1"}},{"itemId":668064,"className":"MAPLE_25_3_SQ_120_ITEM2","name":"Rodejokel Essence","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668065,"className":"MAPLE_25_3_SQ_120_ITEM","name":"Glimmering Powder","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668066,"className":"MAPLE_25_1_SQ_20_ITEM","name":"Blue Nheto Moss","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668067,"className":"MAPLE_25_1_SQ_30_ITEM","name":"Lyciu Herbs","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668068,"className":"MAPLE_25_1_SQ_40_ITEM","name":"Cesaris' Whistle","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_MAPLE_25_1_SQ_40_ITEM"}},{"itemId":668069,"className":"MAPLE_25_1_SQ_40_ITEM2","name":"Vhelis Roots","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668070,"className":"MAPLE_25_1_SQ_50_ITEM","name":"Brown Powder","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668071,"className":"MAPLE_25_1_SQ_70_ITEM","name":"Blood Sample","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668072,"className":"MAPLE_25_1_SQ_80_ITEM","name":"Solidified Blood Sample","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668073,"className":"MAPLE_25_1_SQ_ITEM1","name":"Forest Ranger's Report","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668074,"className":"MAPLE_25_1_SQ_ITEM2","name":"Herbalist's Report","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668075,"className":"MAPLE_25_1_SQ_ITEM3","name":"Lumberjack's Report","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668076,"className":"MAPLE_25_1_SQ_ITEM4","name":"Report on the Relation Between the Forest and Medzio Diena","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"MAPLE_25_1_SQ_BOOK"}},{"itemId":668077,"className":"MAPLE_25_2_SQ_40_ITEM","name":"Rag Doll Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668078,"className":"MAPLE_25_2_SQ_100_ITEM","name":"Sturdy Roots","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668079,"className":"MAPLE_25_1_SQ_100_ITEM2","name":"Willitte's Shovel","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_MAPLE_25_2_SQ_100_ITEM2"}},{"itemId":668080,"className":"MAPLE_25_2_SQ_20_ITEM","name":"Organic Solvent","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668081,"className":"MAPLE_25_2_SQ_50_ITEM","name":"Hidden Necklace","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668082,"className":"MAPLE_25_1_SQ_ITEM5","name":"Ida's Report","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668083,"className":"KATYN_45_2_SQ_11_ITEM2","name":"Old Carving Knife","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668084,"className":"F_DCAPITAL_20_5_SQ_10_ITEM","name":"Demon Orders","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668085,"className":"F_DCAPITAL_20_5_SQ_30_ITEM","name":"Small Stone Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668086,"className":"F_DCAPITAL_20_5_SQ_40_ITEM","name":"Essence Collection Orb","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668087,"className":"F_DCAPITAL_20_5_SQ_60_ITEM","name":"Orb of Divine Detection","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_DCAPITAL_20_5_SQ_60_ITEM"}},{"itemId":668088,"className":"F_DCAPITAL_20_6_SQ_100_ITEM","name":"Sealed Demon's Power","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668089,"className":"F_DCAPITAL_20_6_SQ_110_ITEM","name":"Kupole's Alarm Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668090,"className":"F_DCAPITAL_20_5_SQ_ITEM1","name":"Ausrine's First Trace","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668091,"className":"F_DCAPITAL_20_5_SQ_ITEM2","name":"Ausrine's Second Trace","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668092,"className":"F_DCAPITAL_20_5_SQ_ITEM3","name":"Ausrine's Third Trace","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668093,"className":"F_DCAPITAL_20_5_SQ_90_ITEM","name":"Lieutenant's Demon Orders","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668094,"className":"F_DCAPITAL_20_6_SQ_80_ITEM","name":"An Unknown Object","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668095,"className":"F_DCAPITAL_20_5_SQ_ITEM4","name":"Ausrine's Fourth Trace","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668096,"className":"F_DCAPITAL_20_5_SQ_ITEM5","name":"Ausrine's Fifth Trace","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668097,"className":"F_DCAPITAL_20_6_SQ_55_ITEM1","name":"Demon Magic Stone Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668098,"className":"F_DCAPITAL_20_6_SQ_55_ITEM2","name":"Interferance Magic Circle Debris","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668099,"className":"JOB_FALCONER_8_1_ITEM","name":"Gosal Horn","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668100,"className":"JOB_HACKAPELL_8_1_ITEM","name":"Crystal of Restoration","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668101,"className":"JOB_SCHWARZEREITER_8_1_ITEM","name":"Old Commemorative Coin","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668102,"className":"JOB_DRAGOON_8_1_ITEM1","name":"The Hummil Family's Red Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_DRAGOON_8_1_ITEM1"}},{"itemId":668103,"className":"JOB_DRAGOON_8_1_ITEM2","name":"The Hummil Family's Blue Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668104,"className":"JOB_LANCER_8_1_ITEM","name":"Suspicious Documents","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668105,"className":"LOWLV_MASTER_ENCY_SQ_10_ITEM1","name":"Sage Master's Letter","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668106,"className":"LOWLV_MASTER_ENCY_SQ_10_ITEM2","name":"Sage Master's Letter","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668107,"className":"LOWLV_MASTER_ENCY_SQ_20_ITEM","name":"Druid Master's Reply","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668108,"className":"LOWLV_MASTER_ENCY_SQ_40_ITEM","name":"Fencer Master's Reply","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668109,"className":"LOWLV_MASTER_ENCY_SQ_50_ITEM","name":"Necromancer Master's Reply","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668110,"className":"LOWLV_MASTER_ENCY_SQ_40_ITEM2","name":"Hutton's Swordsmanship Textbook","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668111,"className":"LOWLV_EYEOFBAIGA_SQ_10_ITEM","name":"Linker Master's Magic Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668112,"className":"LOWLV_EYEOFBAIGA_SQ_30_ITEM","name":"Gazing Golem Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668113,"className":"LOWLV_EYEOFBAIGA_SQ_40_ITEM","name":"Gazing Golem Magic Core","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668114,"className":"LOWLV_EYEOFBAIGA_SQ_50_ITEM","name":"Link Tracking Device","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668115,"className":"LOWLV_EYEOFBAIGA_SQ_50_ITEM2","name":"Camouflage Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668116,"className":"LOWLV_GREEN_SQ_10_ITEM","name":"Gina Greene's Certificate","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668117,"className":"LOWLV_GREEN_SQ_50_ITEM","name":"Calsis' Diary","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_LOWLV_GREEN_SQ_50_ITEM"}},{"itemId":668118,"className":"LOWLV_GREEN_SQ_60_ITEM","name":"Arzeli","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668119,"className":"LOWLV_BOASTER_SQ_10_ITEM","name":"Holy Powder","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668120,"className":"LOWLV_BOASTER_SQ_20_ITEM","name":"Suspicious Crystal Pouch","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_LOWLV_BOASTER_SQ_20_ITEM"}},{"itemId":668121,"className":"LOWLV_BOASTER_SQ_30_ITEM","name":"Nheto Forest Leaves","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668122,"className":"LOWLV_BOASTER_SQ_40_ITEM","name":"Munchausen's Reagent","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668123,"className":"LOWLV_BOASTER_SQ_50_ITEM","name":"Anti-ghost Crystal","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668124,"className":"CORAL_44_1_SQ_10_ITEM","name":"Stolen Supplies","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668125,"className":"CORAL_44_1_SQ_60_ITEM","name":"Coral powder of Nimrah Damsel","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668126,"className":"CORAL_44_1_SQ_80_ITEM","name":"Zeteor Coast's Blue Coral Reef","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668127,"className":"CORAL_44_1_SQ_110_ITEM","name":"Nasty Red Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668128,"className":"CORAL_44_2_SQ_20_ITEM","name":"Sealed Holy Artifact of Jurate","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668129,"className":"CORAL_44_2_SQ_10_ITEM","name":"Jurate's First Holy Artifact","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668130,"className":"CORAL_44_2_SQ_30_ITEM","name":"Jurate's Second Holy Artifact","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668131,"className":"CORAL_44_2_SQ_60_ITEM1","name":"Loremaster Bottle","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CORAL_44_2_SQ_60_ITEM1"}},{"itemId":668132,"className":"CORAL_44_2_SQ_60_ITEM2","name":"Jurate's Moss","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668133,"className":"CORAL_44_2_SQ_90_ITEM","name":"Blessed Coral Talisman","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668136,"className":"QUEST_HAIRCOLOR_01","name":"Pink Hair Dye","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_HAIRCOLOR","strArg":"pink"}},{"itemId":668142,"className":"CORAL_44_3_SQ_90_ITEM","name":"Loremaster Bottle","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_CORAL_44_3_SQ_90_ITEM"}},{"itemId":668143,"className":"JOB_ZEALOT_QUEST_COSTUME_ITEM","name":"Zealot Crystal Necklace","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_JOB_ZEALOT_QUEST_COSTUME_ITEM"}},{"itemId":668144,"className":"AGARIO_CANDY_DUNGEON","name":"Sugar Treat","type":"Quest","group":"Quest","weight":0,"maxStack":300,"price":10,"sellPrice":10,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668146,"className":"ZEALOT_BOOK1","name":"The Zealot Order: Fervor and Devotion","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ZEALOT_BOOK1"}},{"itemId":668147,"className":"ZEALOT_BOOK2","name":"Zealots: A History","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ZEALOT_BOOK2"}},{"itemId":668148,"className":"ZEALOT_BOOK3","name":"Zealots and Divine Power","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_ITEM_BOOK","strArg":"ZEALOT_BOOK3"}},{"itemId":668149,"className":"SNOW_RAID_BOOK_01","name":"Glacia's Letter","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_PARCHMENT","strArg":"SNOW_RAID_LATER_DLG01"}},{"itemId":668150,"className":"SNOW_RAID_Q_ITEM_01","name":"Red Liquid with Thin Ice on Top","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668151,"className":"SNOW_RAID_Q_ITEM_02","name":"Kruvina Liquid Mixed with Blood","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668152,"className":"SNOW_RAID_BOOK_02","name":"A Mysterious Order","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_SCROLL","strArg":"SNOW_RAID_LATER_DLG02"}},{"itemId":668153,"className":"F_TABLELAND_28_2_RAID_02_ITEM","name":"Ordinary Plant","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668154,"className":"F_TABLELAND_28_2_RAID_05_ITEM","name":"Worn out Shackle","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668155,"className":"F_TABLELAND_28_2_RAID_09_ITEM","name":"Twinkling Bead","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_F_TABLELAND_28_2_RAID_09_ITEM"}},{"itemId":668156,"className":"F_TABLELAND_28_2_RAID_12_ITEM","name":"Bottle with Suspicious Piece","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668157,"className":"F_TABLELAND_28_2_RAID_13_ITEM","name":"Bottle with Piece that contains Beholder's power ","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668158,"className":"EP12_2_F_CASTLE_101_MQ03_2_ITEM_01","name":"Broken Headstone Piece","type":"Quest","group":"Quest","weight":8000,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668159,"className":"EP12_2_F_CASTLE_101_MQ03_2_ITEM_02","name":"Broken Headstone Piece","type":"Quest","group":"Quest","weight":8000,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668160,"className":"EP12_2_F_CASTLE_101_MQ03_3_ITEM_01","name":"Bower Branch","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668161,"className":"EP12_2_F_CASTLE_101_MQ04_1_ITEM_01","name":"Rangda Dagger","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_EP12_2_F_CASTLE_101_MQ04_1_ITEM"}},{"itemId":668162,"className":"EP12_2_F_CASTLE_101_MQ04_2_ITEM_01","name":"Eyeball of Bower Interferer ","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668163,"className":"EP12_2_F_CASTLE_101_MQ04_2_ITEM_02","name":"Heart of Bower Guillotine","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668164,"className":"EP12_2_F_CASTLE_101_MQ04_2_ITEM_03","name":"Hair of Bower Obstructor","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668165,"className":"EP12_2_F_CASTLE_101_MQ04_2_ITEM_04","name":"Bower Oblivion Core","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668166,"className":"EP12_2_F_CASTLE_101_MQ05_ITEM_01","name":"Decipher guide of Atspalvis Ancient Headstone","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_ITEM_PARCHMENT","strArg":"EP12_2_F_CASTLE_101_MQ05_DLG_6"}},{"itemId":668167,"className":"EP13_F_SIAULIAI_1_MQ_03_ITEM_01","name":"Unidentified Ore","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668168,"className":"EP13_F_SIAULIAI_1_MQ_05_ITEM_01","name":"Goddess Lada's Blessing","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_UES_EP13_F_SIAULIAI_1_MQ_05_ITEM_01"}},{"itemId":668169,"className":"EP13_F_SIAULIAI_1_MQ_06_ITEM_01","name":"Crystal Piece of Liepsna Firebug","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668170,"className":"EP13_F_SIAULIAI_2_MQ_04_ITEM_01","name":"Goddess Lada's Blessing","type":"Quest","group":"Quest","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"function":"SCR_USE_EP13_F_SIAULIAI_2_MQ_04_ITEM_01"}},{"itemId":668171,"className":"EP13_F_SIAULIAI_3_MQ_02_ITEM_01","name":"Token of Demon King Baiga","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668172,"className":"EP13_F_SIAULIAI_3_MQ_03_ITEM_01","name":"Demon God Ragana's Token","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668173,"className":"Drug_Detoxifiy_EXORCIST","name":"Antidote ","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668174,"className":"EP13_F_SIAULIAI_2_SQ_ITEM_01","name":"Someone's Pickaxe","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668175,"className":"EP13_F_SIAULIAI_2_SQ_ITEM_02","name":"Someone's Shovel","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668176,"className":"EP13_F_SIAULIAI_2_SQ_ITEM_03","name":"Someone's Stone Pile","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668177,"className":"EP13_2_DPRISON2_MQ_ITEM_1","name":"Mokslas' Research Data","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668178,"className":"EP13_2_DPRISON2_MQ_ITEM_2","name":"Quipmage's Experiment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668179,"className":"EP13_2_DPRISON2_MQ_ITEM_3","name":"Valuable of the Nobles","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668180,"className":"EP13_2_DPRISON2_MQ_ITEM_4","name":"Soul Binder","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668181,"className":"EP13_2_DPRISON3_MQ_ITEM_1","name":"Pajauta's Trap","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":668182,"className":"EP13_2_DPRISON3_MQ_ITEM_2","name":"Pajauta's Soul Arrow","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":687001,"className":"UNDER302_STAFF_TOP","name":"Cane's Upper Part Piece Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":687002,"className":"UNDER302_STAFF_MID","name":"Cane's Central Part Piece Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":687003,"className":"UNDER302_STAFF_BOT","name":"Cane's Lower Part Piece Fragment","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":687004,"className":"UNDER302_STAFF","name":"Old Cane","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":870001,"className":"P_D_EP13_6_ITEM_1","name":"Tissue of Liepsna at the Lemprasa Pond","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":870002,"className":"P_D_EP13_7_ITEM_1","name":"Supply of Darbas at the Woods of the Linked Bridges","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":870003,"className":"P_D_EP13_8_ITEM_1","name":"Blood of Demon at Paupys Crossing","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":870004,"className":"P_D_EP13_9_ITEM_1","name":"Soul of Saugumas at Issaugoti Forest ","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":870005,"className":"P_D_EP13_10_ITEM_1","name":"Fragment of Demon at Kirtimas Forest","type":"Quest","group":"Quest","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":910000,"className":"Default_Recipe","name":"Recipe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911001,"className":"R_timber_01","name":"Recipe - Oak Wood","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911002,"className":"R_timber_02","name":"Recipe - Ash Wood","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911003,"className":"R_timber_03","name":"Recipe - Pine Wood","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911004,"className":"R_timber_04","name":"Recipe - Cedar Wood","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911010,"className":"R_drakeResc","name":"Recipe - Drake Epaulet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911011,"className":"R_Potion_Demon_DMG_UP","name":"Recipe - Goddess' Retribution Potion: Demon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911012,"className":"R_Potion_MIX_DMG_UP","name":"Recipe - Goddess' Retribution Potion: Mutant","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911013,"className":"R_Potion_Bug_DMG_UP","name":"Recipe - Goddess' Retribution Potion: Insect","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911014,"className":"R_Potion_Plant_DMG_UP","name":"Recipe - Goddess' Retribution Potion: Plant","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911015,"className":"R_Potion_Wild_DMG_UP","name":"Recipe - Goddess' Retribution Potion: Beast","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911016,"className":"R_Potion_Demon_DMG_DOWN","name":"Recipe - Goddess' Aegis Potion: Demon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911017,"className":"R_Potion_MIX_DMG_DOWN","name":"Recipe - Goddess' Aegis Potion: Mutant","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911018,"className":"R_Potion_Bug_DMG_DOWN","name":"Recipe - Goddess' Aegis Potion: Insect","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911019,"className":"R_Potion_Plant_DMG_DOWN","name":"Recipe - Goddess' Aegis Potion: Plant","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911020,"className":"R_Potion_Wild_DMG_DOWN","name":"Recipe - Goddess' Aegis Potion: Beast","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911021,"className":"R_Potion_Demon_Low_DMG_UP","name":"Recipe - Hero's Retribution Potion: Demon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911022,"className":"R_Potion_MIX_Low_DMG_UP","name":"Recipe - Hero's Retribution Potion: Mutant","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911023,"className":"R_Potion_Bug_Low_DMG_UP","name":"Recipe - Hero's Retribution Potion: Insect","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911024,"className":"R_Potion_Plant_Low_DMG_UP","name":"Recipe - Hero's Retribution Potion: Plant","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911025,"className":"R_Potion_Wild_Low_DMG_UP","name":"Recipe - Hero's Retribution Potion: Beast","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911026,"className":"R_Potion_Demon_Low_DMG_DOWN","name":"Recipe - Hero's Aegis Potion: Demon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911027,"className":"R_Potion_MIX_Low_DMG_DOWN","name":"Recipe - Hero's Aegis Potion: Mutant","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911028,"className":"R_Potion_Bug_Low_DMG_DOWN","name":"Recipe - Hero's Aegis Potion: Insect","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911029,"className":"R_Potion_Plant_Low_DMG_DOWN","name":"Recipe - Hero's Aegis Potion: Plant","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":911030,"className":"R_Potion_Wild_Low_DMG_DOWN","name":"Recipe - Hero's Aegis Potion: Beast","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":912001,"className":"R_rsc_2_1","name":"Recipe - White Mucus","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":912002,"className":"R_rsc_2_2","name":"Recipe - Florr","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":912003,"className":"R_rsc_2_3","name":"Recipe - Rough Bone Powder","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":912004,"className":"R_rsc_2_4","name":"Recipe - Tendon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":912005,"className":"R_hrsc_2_1","name":"Recipe - Spell Device","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":912006,"className":"R_misc_jore12","name":"Recipe - Pyrostone","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":912007,"className":"R_misc_jore13","name":"Recipe - Cryostone","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":912008,"className":"R_rsc_3_1","name":"Recipe - Hardener","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":912009,"className":"R_rsc_3_2","name":"Recipe - Tough Tendon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":912010,"className":"R_rsc_4_1","name":"Recipe - Resinate","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":912011,"className":"R_UNDER302_STAFF","name":"Recipe - Old Cane Restoration Tome","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":912012,"className":"R_KLAIPE_CHAR313_ITEM2","name":"Recipe - Reagent","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":913001,"className":"R_Drug_AriesAtk_PC","name":"Recipe - Attack Boost Potion: Pierce","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913002,"className":"R_Drug_SlashAtk_PC","name":"Recipe - Attack Boost Potion: Slash","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913003,"className":"R_Drug_StrikeAtk_PC","name":"Recipe - Attack Boost Potion: Strike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913004,"className":"R_Drug_MissileAtk_PC","name":"Recipe - Attack Boost Potion: Missile","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913005,"className":"R_Drug_FireAtk_PC","name":"Recipe - Attack Boost Potion: Fire","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913006,"className":"R_Drug_IceAtk_PC","name":"Recipe - Attack Boost Potion: Ice","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913007,"className":"R_Drug_PoisonAtk_PC","name":"Recipe - Attack Boost Potion: Poison","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913008,"className":"R_Drug_LightningAtk_PC","name":"Recipe - Attack Boost Potion: Lightning","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913009,"className":"R_Drug_EarthAtk_PC","name":"Recipe - Attack Boost Potion: Earth","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913010,"className":"R_Drug_HolyAtk_PC","name":"Recipe - Attack Boost Potion: Holy","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913011,"className":"R_Drug_DarkAtk_PC","name":"Recipe - Attack Boost Potion: Dark","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913012,"className":"R_Drug_AriesDef_PC","name":"Recipe - Defense Boost Potion: Pierce","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913013,"className":"R_Drug_SlashDef_PC","name":"Recipe - Defense Boost Potion: Slash","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913014,"className":"R_Drug_StrikeDef_PC","name":"Recipe - Defense Boost Potion: Strike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913015,"className":"R_Drug_MissileDef_PC","name":"Recipe - Defense Boost Potion: Missile","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913016,"className":"R_Drug_FireDef_PC","name":"Recipe - Defense Boost Potion: Fire","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913017,"className":"R_Drug_IceDef_PC","name":"Recipe - Defense Boost Potion: Ice","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913018,"className":"R_Drug_PoisonDef_PC","name":"Recipe - Defense Boost Potion: Poison","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913019,"className":"R_Drug_LightningDef_PC","name":"Recipe - Defense Boost Potion: Lightning","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913020,"className":"R_Drug_EarthDef_PC","name":"Recipe - Defense Boost Potion: Earth","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913021,"className":"R_Drug_HolyDef_PC","name":"Recipe - Defense Boost Potion: Holy","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913022,"className":"R_Drug_DarkDef_PC","name":"Recipe - Defense Boost Potion: Dark","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913023,"className":"R_Guild_Academy01","name":"Recipe - Academy","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913024,"className":"R_Guild_Forge01","name":"Recipe - Forge","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913025,"className":"R_Guild_ShieldCharger01","name":"Recipe - Shield Charger","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913026,"className":"R_Event_160908_5","name":"Recipe - Sweet Dumpling","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913027,"className":"R_Event_160908_6","name":"Recipe - Jumbo Dumpling","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913028,"className":"R_Premium_Clear_dungeon_02","name":"Recipe - Instance Clear Voucher (2 Stars)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":913029,"className":"R_Premium_Clear_dungeon_03","name":"Recipe - Instance Clear Voucher (3 Stars)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":913030,"className":"R_Gacha_G_009","name":"Recipe - Mystical Cube","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":913031,"className":"R_recipe_Gachacube","name":"Recipe - Mystical Cube Recipe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":919001,"className":"R_Bocors_doll","name":"Recipe - Bokor Doll","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":919003,"className":"R_TEST2","name":"Recipe - Gladius","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":1},{"itemId":919004,"className":"R_SIAULIAI50_DRUG01","name":"Recipe - Antidote","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":919005,"className":"R_FLASH_58_SQ_070_ITEM_3","name":"Recipe - Svitrigaila's Orb","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":919006,"className":"R_Bocors_doll2","name":"Recipe - Bokor Doll","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":919007,"className":"R_ABBAY643_SQ4_ITEM1","name":"Recipe - Protection Barrier Crystal","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":919008,"className":"R_JOB_SHINOBI_HIDDEN_1","name":"Recipe - Scout Master's Special Medicine","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":919009,"className":"R_JOB_SHINOBI_HIDDEN_2","name":"Recipe - Letter Scroll","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":919010,"className":"R_BlessedStone_1","name":"Recipe - Goddesses' Blessed Gem: Weapon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":919011,"className":"R_BlessedStone_2","name":"Recipe - Goddesses' Blessed Gem: Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":919012,"className":"R_BlessedStone_3","name":"Recipe - Goddesses' Blessed Gem: Accessory","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":919013,"className":"R_Premium_boostToken02","name":"Recipe - x4 EXP Tome","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":919014,"className":"R_Premium_boostToken03","name":"Recipe - x8 EXP Tome","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":919015,"className":"R_misc_TruthMirror","name":"Recipe - Mirror of Truth","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":919016,"className":"R_CHOCO_01","name":"Recipe - Valentine Chocolates Recipe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":919017,"className":"R_WHITE_01","name":"Recipe - Candy Basket","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":919018,"className":"R_BlessedStone_Multi","name":"Recipe - Goddesses' Blessed Gem","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":919019,"className":"R_3CMLAKE262_SQ04","name":"Recipe - Magic Nullification Bomb","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":919020,"className":"R_3CMLAKE262_SQ10","name":"Recipe - Infused Lakeland Sap","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":919021,"className":"R_DANOH_01","name":"Recipe - Zongzi","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":919022,"className":"R_misc_ore21","name":"Recipe - Ominous Spirit Crystal","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":919023,"className":"R_Steam_YC_Event","name":"Recipe - [Event] Restored Goddess Sculpture","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":919024,"className":"R_Dungeon_Key01","name":"Recipe - Raid Portal Stone","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":919025,"className":"R_Old_Socket_Gold","name":"Recipe - Ancient Golden Socket","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":919026,"className":"R_Ominous_Card_Book","name":"Recipe - Monster Card Album: Black","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":300},{"itemId":919027,"className":"R_misc_ore24","name":"Recipe - Pheltremin","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":919028,"className":"R_misc_ore25","name":"Recipe - Ulstermite","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":919029,"className":"R_GuildColony_Item_mysticCristal","name":"Recipe - [GTW] Mysterious Crystal","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":919030,"className":"R_GuildColony_Item_AoE_Revive_Scroll","name":"Recipe - [GTW] Wide Regeneration Scroll","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":919031,"className":"R_Dungeon_Key02","name":"Recipe - Legend Raid Portal Stone","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":919032,"className":"R_Legend_Misc_Moringponia","name":"Recipe - Moringponia Crown","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":919033,"className":"R_Legend_Misc_Misrus","name":"Recipe - Misrus Chain","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":919034,"className":"R_Moru_Ruby_Charge","name":"Recipe - Ruby Anvil","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":919035,"className":"R_Ruby_noCharge","name":"Recipe - Shining Ruby Anvil","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":919036,"className":"R_misc_ore23_stone","name":"Recipe - Sierra Stone","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":919037,"className":"R_God_Potion_ATK","name":"Recipe - Goddess' Support Box: Punishment","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":919038,"className":"R_God_Potion_DEF","name":"Recipe - Goddess' Support Box: Protection","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":919039,"className":"R_Premium_Sandra_Glass_MAX_4line","name":"Recipe - Sandra's Perfect Magnifier","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":919040,"className":"R_Premium_Sandra_Glass_MAX_6line","name":"Recipe - Sandra's Ultimate Magnifier","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":919041,"className":"R_Premium_boostToken05","name":"Recipe - x16 EXP Tome","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":919042,"className":"R_Premium_boostToken06","name":"Recipe - x32 EXP Tome","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":919043,"className":"R_Dungeon_Key02_NoTrade","name":"Recipe - Legend Raid Portal Stone (Untradable)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":919044,"className":"R_BlessedStone_Misc","name":"Recipe - Blessed Shard x10","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":920006,"className":"R_SWD01_109","name":"Recipe - Kris","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":40},{"itemId":920008,"className":"R_SWD01_116","name":"Recipe - Moplah","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":75},{"itemId":920010,"className":"R_SWD02_101","name":"Recipe - Panto Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":15},{"itemId":920012,"className":"R_SWD02_106","name":"Recipe - Silver Falchion","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":40},{"itemId":920013,"className":"R_SWD02_104","name":"Recipe - Golden Falchion","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":75},{"itemId":920015,"className":"R_SWD02_102","name":"Recipe - Flonas Sabre","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":75},{"itemId":920016,"className":"R_SWD02_108","name":"Recipe - Wizard Blade","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":120},{"itemId":920018,"className":"R_SWD02_110","name":"Recipe - Austas","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":170},{"itemId":920019,"className":"R_SWD02_111","name":"Recipe - Miskas Sabre","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":75},{"itemId":920022,"className":"R_SWD03_101","name":"Recipe - Trinity Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":120},{"itemId":920024,"className":"R_SWD03_103","name":"Recipe - Velniup","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":120},{"itemId":920025,"className":"R_SWD03_104","name":"Recipe - Fortis","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":120},{"itemId":920027,"className":"R_SWD04_101","name":"Recipe - Bendras Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":120},{"itemId":920028,"className":"R_SWD04_102","name":"Recipe - Illizia","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":120},{"itemId":920029,"className":"R_SWD02_115","name":"Recipe - Aras' Falchion","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":1},{"itemId":920041,"className":"R_SWD02_116","name":"Recipe - Smith Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":1},{"itemId":920042,"className":"R_SWD02_117","name":"Recipe - Klavis Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":15},{"itemId":920055,"className":"R_SWD01_130","name":"Recipe - Kozuka","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":75},{"itemId":920056,"className":"R_SWD01_131","name":"Recipe - Badelaire","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":120},{"itemId":920057,"className":"R_SWD01_132","name":"Recipe - Saif","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":120},{"itemId":920058,"className":"R_SWD01_133","name":"Recipe - Colichemarde","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":120},{"itemId":920059,"className":"R_SWD01_134","name":"Recipe - Firangi","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":170},{"itemId":920060,"className":"R_SWD01_135","name":"Recipe - Thorn Cutter","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":170},{"itemId":920061,"className":"R_SWD01_136","name":"Recipe - Demion Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":170},{"itemId":920067,"className":"R_SWD02_127","name":"Recipe - Escanciu Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":75},{"itemId":920068,"className":"R_SWD02_128","name":"Recipe - Krag Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":75},{"itemId":920069,"className":"R_SWD02_129","name":"Recipe - Pilgrim Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":120},{"itemId":920070,"className":"R_SWD02_130","name":"Recipe - Istora Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":170},{"itemId":920071,"className":"R_SWD01_138","name":"Recipe - Koperon Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":220},{"itemId":920072,"className":"R_SWD01_139","name":"Recipe - Superior Koperon Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":220},{"itemId":920073,"className":"R_SWD03_110","name":"Recipe - Shark Cutter","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":220},{"itemId":920083,"className":"R_SWD03_111","name":"Recipe - Seimos Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":120},{"itemId":920085,"className":"R_SWD04_104","name":"Recipe - Ruma Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":120},{"itemId":920089,"className":"R_SWD03_113","name":"Recipe - Magas Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":170},{"itemId":920092,"className":"R_SWD04_106","name":"Recipe - Catacombs Blade","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":170},{"itemId":920093,"className":"R_SWD02_138","name":"Recipe - Vienie Koperon Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":220},{"itemId":920094,"className":"R_SWD02_139","name":"Recipe - Futere Scimitar","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":220},{"itemId":920095,"className":"R_SWD02_140","name":"Recipe - Magi Shamshir","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":220},{"itemId":920096,"className":"R_SWD03_120","name":"Recipe - Pierene Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":315},{"itemId":920097,"className":"R_SWD04_109","name":"Recipe - Abdochar","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":315},{"itemId":920098,"className":"R_SWD04_117","name":"Recipe - Masinios Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":350},{"itemId":921006,"className":"R_TSW01_107","name":"Recipe - Caliburn","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":40},{"itemId":921008,"className":"R_TSW01_111","name":"Recipe - Ilwoon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":75},{"itemId":921010,"className":"R_TSW02_101","name":"Recipe - Potentia","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":15},{"itemId":921011,"className":"R_TSW02_103","name":"Recipe - Didel Colossus","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":40},{"itemId":921013,"className":"R_TSW02_105","name":"Recipe - Hogma Greatsword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":75},{"itemId":921016,"className":"R_TSW02_108","name":"Recipe - Kindzal","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":75},{"itemId":921018,"className":"R_TSW02_110","name":"Recipe - Prieblanda","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":120},{"itemId":921019,"className":"R_TSW02_111","name":"Recipe - Lapis Katzbalger","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":75},{"itemId":921020,"className":"R_TSW03_101","name":"Recipe - Flamini","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":75},{"itemId":921021,"className":"R_TSW03_102","name":"Recipe - Wizard Slayer","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":120},{"itemId":921022,"className":"R_TSW03_103","name":"Recipe - Naktis","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":120},{"itemId":921023,"className":"R_TSW03_104","name":"Recipe - Luciduce","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":170},{"itemId":921024,"className":"R_TSW03_105","name":"Recipe - Hell and Heaven","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":170},{"itemId":921025,"className":"R_TSW04_101","name":"Recipe - Nulis","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":120},{"itemId":921036,"className":"R_TSW02_112","name":"Recipe - Smith Two-handed Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":1},{"itemId":921037,"className":"R_TSW02_113","name":"Recipe - Klavis Two-handed Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":75},{"itemId":921046,"className":"R_TSW01_122","name":"Recipe - Greatsword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":75},{"itemId":921047,"className":"R_TSW01_123","name":"Recipe - Katzbalger","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":120},{"itemId":921048,"className":"R_TSW01_124","name":"Recipe - Dress Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":120},{"itemId":921049,"className":"R_TSW01_125","name":"Recipe - Zweihander","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":120},{"itemId":921050,"className":"R_TSW01_126","name":"Recipe - Executioner's Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":170},{"itemId":921051,"className":"R_TSW01_127","name":"Recipe - Lumai Two-handed Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":170},{"itemId":921052,"className":"R_TSW01_128","name":"Recipe - Overknife","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":170},{"itemId":921059,"className":"R_TSW02_123","name":"Recipe - Escanciu Two-handed Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":75},{"itemId":921060,"className":"R_TSW02_124","name":"Recipe - Krag Two-handed Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":75},{"itemId":921061,"className":"R_TSW02_125","name":"Recipe - Pilgrim Two-handed Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":120},{"itemId":921062,"className":"R_TSW02_126","name":"Recipe - Istora Two-handed Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":170},{"itemId":921063,"className":"R_TSW01_130","name":"Recipe - Twin Blade","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":220},{"itemId":921064,"className":"R_TSW01_131","name":"Recipe - Superior Twin Blade","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":220},{"itemId":921065,"className":"R_TSW03_111","name":"Recipe - Spell Breaker","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":220},{"itemId":921072,"className":"R_TSW03_112","name":"Recipe - Seimos Two-handed Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":120},{"itemId":921073,"className":"R_TSW03_113","name":"Recipe - Tilly Two-handed Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":120},{"itemId":921078,"className":"R_TSW03_114","name":"Recipe - Khasti Two-handed Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":170},{"itemId":921081,"className":"R_TSW04_106","name":"Recipe - Magi Two-handed Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":170},{"itemId":921082,"className":"R_TSW02_134","name":"Recipe - Duris Twin Blade","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":220},{"itemId":921083,"className":"R_TSW02_135","name":"Recipe - Eki Lumai Two-handed Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":220},{"itemId":921084,"className":"R_TSW02_136","name":"Recipe - Vienie Twin Blade","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":220},{"itemId":921085,"className":"R_TSW03_120","name":"Recipe - Gale Slasher","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":315},{"itemId":921086,"className":"R_TSW04_109","name":"Recipe - Sarkmis","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":315},{"itemId":921087,"className":"R_TSW04_117","name":"Recipe - Masinios Two-handed Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":350},{"itemId":922007,"className":"R_STF01_109","name":"Recipe - Rune Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":40},{"itemId":922009,"className":"R_STF01_116","name":"Recipe - Battle Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":75},{"itemId":922011,"className":"R_STF02_102","name":"Recipe - Ice Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":40},{"itemId":922012,"className":"R_STF02_103","name":"Recipe - Fire Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":75},{"itemId":922014,"className":"R_STF02_105","name":"Recipe - Magic Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":40},{"itemId":922015,"className":"R_STF02_106","name":"Recipe - Grynas Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":120},{"itemId":922017,"className":"R_STF02_108","name":"Recipe - Arch Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":120},{"itemId":922019,"className":"R_STF03_101","name":"Recipe - Temere","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":120},{"itemId":922020,"className":"R_STF03_102","name":"Recipe - Ignition","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":170},{"itemId":922021,"className":"R_STF03_103","name":"Recipe - Secretum","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":75},{"itemId":922022,"className":"R_STF04_101","name":"Recipe - Zaima","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":120},{"itemId":922024,"className":"R_STF02_110","name":"Recipe - Aras' Long Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":1},{"itemId":922036,"className":"R_STF02_111","name":"Recipe - Smith Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":1},{"itemId":922037,"className":"R_STF02_112","name":"Recipe - Klavis Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":15},{"itemId":922051,"className":"R_STF01_130","name":"Recipe - Snake Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":75},{"itemId":922052,"className":"R_STF01_131","name":"Recipe - Alter Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":120},{"itemId":922053,"className":"R_STF01_132","name":"Recipe - Nald Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":120},{"itemId":922054,"className":"R_STF01_133","name":"Recipe - Elder Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":120},{"itemId":922055,"className":"R_STF01_134","name":"Recipe - Meteor Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":170},{"itemId":922056,"className":"R_STF01_135","name":"Recipe - Ring Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":170},{"itemId":922057,"className":"R_STF01_136","name":"Recipe - Servant Rod ","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":170},{"itemId":922063,"className":"R_STF02_122","name":"Recipe - Escanciu Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":75},{"itemId":922064,"className":"R_STF02_123","name":"Recipe - Krag Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":75},{"itemId":922065,"className":"R_STF02_124","name":"Recipe - Pilgrim Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":120},{"itemId":922066,"className":"R_STF02_125","name":"Recipe - Istora Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":170},{"itemId":922067,"className":"R_STF01_138","name":"Recipe - Corona Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":220},{"itemId":922068,"className":"R_STF01_139","name":"Recipe - Superior Corona Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":220},{"itemId":922069,"className":"R_STF03_108","name":"Recipe - Circle Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":220},{"itemId":922074,"className":"R_STF03_109","name":"Recipe - Seimos Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":120},{"itemId":922075,"className":"R_STF03_110","name":"Recipe - Tilly Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":120},{"itemId":922081,"className":"R_STF03_111","name":"Recipe - Khasti Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":170},{"itemId":922084,"className":"R_STF04_107","name":"Recipe - Maga Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":170},{"itemId":922085,"className":"R_STF02_133","name":"Recipe - Vitt Corona Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":220},{"itemId":922086,"className":"R_STF02_134","name":"Recipe - Duris Battle Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":220},{"itemId":922087,"className":"R_STF02_135","name":"Recipe - Artie Snake Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":220},{"itemId":922088,"className":"R_STF03_120","name":"Recipe - Windia Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":315},{"itemId":922089,"className":"R_STF04_110","name":"Recipe - Heart of Glory","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":315},{"itemId":922090,"className":"R_STF04_118","name":"Recipe - Masinios Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":350},{"itemId":923007,"className":"R_TSF01_107","name":"Recipe - Geometry Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":40},{"itemId":923009,"className":"R_TSF01_109","name":"Recipe - Storm Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":75},{"itemId":923013,"className":"R_TSF02_103","name":"Recipe - Ludas Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":40},{"itemId":923014,"className":"R_TSF02_104","name":"Recipe - Saltas Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":75},{"itemId":923016,"className":"R_TSF02_106","name":"Recipe - Karsto Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":75},{"itemId":923017,"className":"R_TSF02_107","name":"Recipe - Expecta Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":120},{"itemId":923020,"className":"R_TSF02_108","name":"Recipe - Black Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":120},{"itemId":923021,"className":"R_TSF02_109","name":"Recipe - Welsh Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":170},{"itemId":923022,"className":"R_TSF03_101","name":"Recipe - Candle Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":75},{"itemId":923023,"className":"R_TSF03_102","name":"Recipe - Audra","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":170},{"itemId":923024,"className":"R_TSF03_103","name":"Recipe - Sunflower","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":120},{"itemId":923026,"className":"R_TSF03_105","name":"Recipe - Maledoom","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":170},{"itemId":923027,"className":"R_TSF04_101","name":"Recipe - Arca Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":120},{"itemId":923028,"className":"R_TSF04_102","name":"Recipe - Raganos Horn","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":120},{"itemId":923038,"className":"R_TSF02_111","name":"Recipe - Smith Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":1},{"itemId":923039,"className":"R_TSF02_112","name":"Recipe - Klavis Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":15},{"itemId":923051,"className":"R_TSF01_122","name":"Recipe - Drake Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":75},{"itemId":923052,"className":"R_TSF01_123","name":"Recipe - Superior Drake Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":120},{"itemId":923053,"className":"R_TSF01_124","name":"Recipe - Cross Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":120},{"itemId":923054,"className":"R_TSF01_125","name":"Recipe - Superior Cross Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":120},{"itemId":923055,"className":"R_TSF01_126","name":"Recipe - Astro Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":170},{"itemId":923056,"className":"R_TSF01_127","name":"Recipe - Superior Astro Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":170},{"itemId":923057,"className":"R_TSF01_128","name":"Recipe - Bokun Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":170},{"itemId":923063,"className":"R_TSF02_122","name":"Recipe - Escanciu Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":75},{"itemId":923064,"className":"R_TSF02_123","name":"Recipe - Krag Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":75},{"itemId":923065,"className":"R_TSF02_124","name":"Recipe - Pilgrim Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":120},{"itemId":923066,"className":"R_TSF02_125","name":"Recipe - Istora Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":170},{"itemId":923067,"className":"R_TSF01_130","name":"Recipe - Evil Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":220},{"itemId":923068,"className":"R_TSF01_131","name":"Recipe - Superior Evil Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":220},{"itemId":923069,"className":"R_TSF03_109","name":"Recipe - Power Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":220},{"itemId":923075,"className":"R_TSF03_110","name":"Recipe - Seimos Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":120},{"itemId":923082,"className":"R_TSF03_112","name":"Recipe - Magas Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":170},{"itemId":923085,"className":"R_TSF04_106","name":"Recipe - Catacombs Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":170},{"itemId":923086,"className":"R_TSF02_133","name":"Recipe - Dellis Evil Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":220},{"itemId":923087,"className":"R_TSF02_134","name":"Recipe - Ice Evil Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":220},{"itemId":923088,"className":"R_TSF02_135","name":"Recipe - Artie Stag Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":220},{"itemId":923089,"className":"R_TSF03_120","name":"Recipe - Vienarazis Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":315},{"itemId":923090,"className":"R_TSF04_109","name":"Recipe - Regard Horn Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":315},{"itemId":923091,"className":"R_TSF04_117","name":"Recipe - Masinios Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":350},{"itemId":924006,"className":"R_TBW01_109","name":"Recipe - Gulail","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":40},{"itemId":924008,"className":"R_TBW01_116","name":"Recipe - Gendawa","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":75},{"itemId":924009,"className":"R_TBW02_111","name":"Recipe - Strong Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":1},{"itemId":924011,"className":"R_TBW02_102","name":"Recipe - Iron Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":40},{"itemId":924012,"className":"R_TBW02_103","name":"Recipe - Hawk Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":40},{"itemId":924014,"className":"R_TBW02_105","name":"Recipe - Hunting Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":75},{"itemId":924016,"className":"R_TBW02_107","name":"Recipe - Savage Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":75},{"itemId":924017,"className":"R_TBW02_108","name":"Recipe - Snake Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":120},{"itemId":924019,"className":"R_TBW02_110","name":"Recipe - Lethena Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":170},{"itemId":924020,"className":"R_TBW03_101","name":"Recipe - Wildling Bane","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":120},{"itemId":924021,"className":"R_TBW03_102","name":"Recipe - Equalizer","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":75},{"itemId":924022,"className":"R_TBW03_103","name":"Recipe - Heart Seeker","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":75},{"itemId":924023,"className":"R_TBW03_104","name":"Recipe - Viper","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":170},{"itemId":924024,"className":"R_TBW04_101","name":"Recipe - Blood Gain","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":120},{"itemId":924025,"className":"R_TBW04_102","name":"Recipe - Tempest Shooter","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":120},{"itemId":924026,"className":"R_TBW02_112","name":"Recipe - Aras' Short Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":1},{"itemId":924032,"className":"R_TBW02_113","name":"Recipe - Pulley Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":15},{"itemId":924039,"className":"R_TBW02_114","name":"Recipe - Smith Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":1},{"itemId":924040,"className":"R_TBW02_115","name":"Recipe - Klavis Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":15},{"itemId":924053,"className":"R_TBW01_130","name":"Recipe - Recurve Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":75},{"itemId":924054,"className":"R_TBW01_131","name":"Recipe - Siege Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":120},{"itemId":924055,"className":"R_TBW01_132","name":"Recipe - Sniper Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":120},{"itemId":924056,"className":"R_TBW01_133","name":"Recipe - Skull Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":120},{"itemId":924057,"className":"R_TBW01_134","name":"Recipe - Wood Compound Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":170},{"itemId":924058,"className":"R_TBW01_135","name":"Recipe - Tag Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":170},{"itemId":924059,"className":"R_TBW01_136","name":"Recipe - Rogue Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":170},{"itemId":924065,"className":"R_TBW02_125","name":"Recipe - Escanciu Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":75},{"itemId":924066,"className":"R_TBW02_126","name":"Recipe - Krag Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":75},{"itemId":924067,"className":"R_TBW02_127","name":"Recipe - Pilgrim Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":120},{"itemId":924068,"className":"R_TBW02_128","name":"Recipe - Istora Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":170},{"itemId":924069,"className":"R_TBW01_138","name":"Recipe - Wreech Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":220},{"itemId":924070,"className":"R_TBW01_139","name":"Recipe - Superior Wreech Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":220},{"itemId":924071,"className":"R_TBW03_109","name":"Recipe - Marksman","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":220},{"itemId":924076,"className":"R_TBW03_110","name":"Recipe - Seimos Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":120},{"itemId":924077,"className":"R_TBW03_111","name":"Recipe - Tilly Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":120},{"itemId":924083,"className":"R_TBW03_112","name":"Recipe - Khasti Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":170},{"itemId":924086,"className":"R_TBW04_106","name":"Recipe - Maga Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":170},{"itemId":924088,"className":"R_TBW02_137","name":"Recipe - Magi Kaman","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":220},{"itemId":924089,"className":"R_TBW02_138","name":"Recipe - Light Gorithos","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":220},{"itemId":924090,"className":"R_TBW03_120","name":"Recipe - Aufgowle Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":315},{"itemId":924091,"className":"R_TBW04_109","name":"Recipe - Astra Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":315},{"itemId":924092,"className":"R_TBW04_117","name":"Recipe - Masinios Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":350},{"itemId":925008,"className":"R_BOW01_107","name":"Recipe - Catapult","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":40},{"itemId":925010,"className":"R_BOW01_111","name":"Recipe - Sniper Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":75},{"itemId":925011,"className":"R_BOW02_101","name":"Recipe - Superior Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":15},{"itemId":925012,"className":"R_BOW02_102","name":"Recipe - Wide Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":40},{"itemId":925013,"className":"R_BOW02_103","name":"Recipe - Grand Cross","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":40},{"itemId":925015,"className":"R_BOW02_105","name":"Recipe - Medina Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":75},{"itemId":925017,"className":"R_BOW02_107","name":"Recipe - Accuracy Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":120},{"itemId":925019,"className":"R_BOW02_109","name":"Recipe - Grave Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":170},{"itemId":925021,"className":"R_BOW03_102","name":"Recipe - Kateen Blaster","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":75},{"itemId":925022,"className":"R_BOW03_103","name":"Recipe - Grajus","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":170},{"itemId":925023,"className":"R_BOW04_101","name":"Recipe - Isbality","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":170},{"itemId":925024,"className":"R_BOW04_102","name":"Recipe - Morto","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":170},{"itemId":925035,"className":"R_BOW02_110","name":"Recipe - Smith Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":1},{"itemId":925036,"className":"R_BOW02_111","name":"Recipe - Klavis Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":15},{"itemId":925046,"className":"R_BOW01_123","name":"Recipe - Arbalest","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":75},{"itemId":925047,"className":"R_BOW01_124","name":"Recipe - Fedimian Turret","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":120},{"itemId":925048,"className":"R_BOW01_125","name":"Recipe - Veteran Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":120},{"itemId":925049,"className":"R_BOW01_126","name":"Recipe - Bullet Shooter","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":120},{"itemId":925050,"className":"R_BOW01_127","name":"Recipe - Black Tip Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":170},{"itemId":925051,"className":"R_BOW01_128","name":"Recipe - Spiked Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":170},{"itemId":925052,"className":"R_BOW01_129","name":"Recipe - Windlass","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":170},{"itemId":925058,"className":"R_BOW02_121","name":"Recipe - Escanciu Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":75},{"itemId":925059,"className":"R_BOW02_122","name":"Recipe - Krag Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":75},{"itemId":925060,"className":"R_BOW02_123","name":"Recipe - Pilgrim Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":120},{"itemId":925061,"className":"R_BOW02_124","name":"Recipe - Istora Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":170},{"itemId":925062,"className":"R_BOW03_108","name":"Recipe - Karacha Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":170},{"itemId":925063,"className":"R_BOW01_131","name":"Recipe - Kracked Shooter","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":220},{"itemId":925064,"className":"R_BOW01_132","name":"Recipe - Superior Kracked Shooter","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":220},{"itemId":925065,"className":"R_BOW03_109","name":"Recipe - Bandit","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":220},{"itemId":925066,"className":"R_BOW03_110","name":"Recipe - Didel Grand Cross","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":220},{"itemId":925071,"className":"R_BOW03_111","name":"Recipe - Seimos Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":120},{"itemId":925078,"className":"R_BOW03_113","name":"Recipe - Magas Shooter","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":170},{"itemId":925081,"className":"R_BOW04_106","name":"Recipe - Catacombs Shooter","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":170},{"itemId":925082,"className":"R_BOW02_132","name":"Recipe - Light Kracked Shooter","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":220},{"itemId":925083,"className":"R_BOW02_133","name":"Recipe - Adata Cranequin","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":220},{"itemId":925084,"className":"R_BOW02_134","name":"Recipe - Didel Kracked Shooter","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":220},{"itemId":925085,"className":"R_BOW03_202","name":"Recipe - Silver Hawk","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":315},{"itemId":925086,"className":"R_BOW04_109","name":"Recipe - Regard Horn Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":315},{"itemId":925087,"className":"R_BOW04_117","name":"Recipe - Masinios Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":350},{"itemId":926006,"className":"R_MAC01_109","name":"Recipe - Maul","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":40},{"itemId":926007,"className":"R_MAC01_110","name":"Recipe - Battle Hammer","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":75},{"itemId":926008,"className":"R_MAC01_116","name":"Recipe - Chekan","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":75},{"itemId":926009,"className":"R_MAC02_110","name":"Recipe - Miner Hammer","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":15},{"itemId":926010,"className":"R_MAC02_101","name":"Recipe - Five Hammer","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":40},{"itemId":926011,"className":"R_MAC02_102","name":"Recipe - Spiked Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":40},{"itemId":926012,"className":"R_MAC02_103","name":"Recipe - Shield Breaker","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":75},{"itemId":926013,"className":"R_MAC02_104","name":"Recipe - Skull Crusher","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":75},{"itemId":926016,"className":"R_MAC02_107","name":"Recipe - Valtas Morning Star","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":120},{"itemId":926019,"className":"R_MAC03_101","name":"Recipe - Holy Smasher","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":40},{"itemId":926020,"className":"R_MAC03_102","name":"Recipe - Kaloo Hammer","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":120},{"itemId":926021,"className":"R_MAC03_103","name":"Recipe - Drake Tail","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":170},{"itemId":926022,"className":"R_MAC03_104","name":"Recipe - Royal Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":40},{"itemId":926023,"className":"R_MAC04_101","name":"Recipe - Stunner","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":120},{"itemId":926024,"className":"R_MAC04_102","name":"Recipe - Valia","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":120},{"itemId":926025,"className":"R_MAC02_111","name":"Recipe - Aras' Iron Club","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":1},{"itemId":926038,"className":"R_MAC02_112","name":"Recipe - Smith Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":1},{"itemId":926039,"className":"R_MAC02_113","name":"Recipe - Klavis Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":15},{"itemId":926052,"className":"R_MAC01_129","name":"Recipe - Battle Maul","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":75},{"itemId":926053,"className":"R_MAC01_130","name":"Recipe - Fedimian Club","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":120},{"itemId":926054,"className":"R_MAC01_131","name":"Recipe - Rune Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":120},{"itemId":926055,"className":"R_MAC01_132","name":"Recipe - Spiked Club","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":120},{"itemId":926056,"className":"R_MAC01_133","name":"Recipe - Stirus Hammer","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":170},{"itemId":926057,"className":"R_MAC01_134","name":"Recipe - War Hammer","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":170},{"itemId":926058,"className":"R_MAC01_135","name":"Recipe - Sledgehammer","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":170},{"itemId":926065,"className":"R_MAC02_124","name":"Recipe - Escanciu Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":75},{"itemId":926066,"className":"R_MAC02_125","name":"Recipe - Krag Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":75},{"itemId":926067,"className":"R_MAC02_126","name":"Recipe - Pilgrim Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":120},{"itemId":926068,"className":"R_MAC02_127","name":"Recipe - Istora Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":170},{"itemId":926069,"className":"R_MAC01_137","name":"Recipe - Burawa","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":220},{"itemId":926070,"className":"R_MAC01_138","name":"Recipe - Superior Burawa","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":220},{"itemId":926071,"className":"R_MAC03_110","name":"Recipe - Iron Fist","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":220},{"itemId":926076,"className":"R_MAC03_111","name":"Recipe - Seimos Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":120},{"itemId":926083,"className":"R_MAC03_113","name":"Recipe - Magas Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":170},{"itemId":926086,"className":"R_MAC04_108","name":"Recipe - Catacombs Club","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":170},{"itemId":926087,"className":"R_MAC02_135","name":"Recipe - Dark Burawa","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":220},{"itemId":926088,"className":"R_MAC02_136","name":"Recipe - Artie Battle Hammer","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":220},{"itemId":926089,"className":"R_MAC02_137","name":"Recipe - Didel Burawa","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":220},{"itemId":926090,"className":"R_MAC03_204","name":"Recipe - Vienarazis Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":315},{"itemId":926091,"className":"R_MAC04_111","name":"Recipe - Skull Smasher","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":315},{"itemId":926092,"className":"R_MAC04_119","name":"Recipe - Masinios Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":350},{"itemId":927004,"className":"R_SPR01_104","name":"Recipe - Spontoon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":40},{"itemId":927006,"className":"R_SPR01_106","name":"Recipe - Long Hasta","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":75},{"itemId":927008,"className":"R_SPR02_102","name":"Recipe - Dory","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":40},{"itemId":927011,"className":"R_SPR02_105","name":"Recipe - Grand Spontoon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":75},{"itemId":927012,"className":"R_SPR02_106","name":"Recipe - Zega Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":120},{"itemId":927016,"className":"R_SPR02_110","name":"Recipe - Fedimian Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":75},{"itemId":927017,"className":"R_SPR03_101","name":"Recipe - Silver Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":40},{"itemId":927018,"className":"R_SPR03_102","name":"Recipe - Geras Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":170},{"itemId":927019,"className":"R_SPR03_103","name":"Recipe - Doom Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":75},{"itemId":927020,"className":"R_SPR03_104","name":"Recipe - Firnas","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":220},{"itemId":927021,"className":"R_SPR04_101","name":"Recipe - Adatag","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":75},{"itemId":927023,"className":"R_SPR04_103","name":"Recipe - Brandish","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":170},{"itemId":927033,"className":"R_SPR01_112","name":"Recipe - Long Spontoon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":75},{"itemId":927034,"className":"R_SPR01_113","name":"Recipe - Alchupiz","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":120},{"itemId":927035,"className":"R_SPR01_114","name":"Recipe - Gelti Alchupiz","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":120},{"itemId":927036,"className":"R_SPR01_115","name":"Recipe - Winged Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":120},{"itemId":927037,"className":"R_SPR01_116","name":"Recipe - Breach Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":170},{"itemId":927038,"className":"R_SPR01_117","name":"Recipe - Langdebeve","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":170},{"itemId":927039,"className":"R_SPR01_118","name":"Recipe - Chauve-souris ","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":170},{"itemId":927045,"className":"R_SPR02_119","name":"Recipe - Escanciu Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":75},{"itemId":927046,"className":"R_SPR02_120","name":"Recipe - Krag Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":75},{"itemId":927047,"className":"R_SPR02_121","name":"Recipe - Pilgrim Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":120},{"itemId":927048,"className":"R_SPR02_122","name":"Recipe - Istora Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":170},{"itemId":927049,"className":"R_SPR01_120","name":"Recipe - Corsesca","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":220},{"itemId":927050,"className":"R_SPR01_121","name":"Recipe - Superior Corsesca","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":220},{"itemId":927056,"className":"R_SPR03_107","name":"Recipe - Seimos Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":120},{"itemId":927057,"className":"R_SPR03_108","name":"Recipe - Tilly Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":120},{"itemId":927063,"className":"R_SPR03_109","name":"Recipe - Khasti Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":170},{"itemId":927066,"className":"R_SPR04_107","name":"Recipe - Maga Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":170},{"itemId":927068,"className":"R_SPR02_131","name":"Recipe - Artie Hasta","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":220},{"itemId":927069,"className":"R_SPR02_132","name":"Recipe - Vienie Corsesca","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":220},{"itemId":927070,"className":"R_SPR03_115","name":"Recipe - Pygry Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":315},{"itemId":927071,"className":"R_SPR04_110","name":"Recipe - Wingshard Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":315},{"itemId":927072,"className":"R_SPR04_118","name":"Recipe - Masinios Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":350},{"itemId":928002,"className":"R_TSP01_102","name":"Recipe - Partisan","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":75},{"itemId":928003,"className":"R_TSP01_103","name":"Recipe - Trident","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":75},{"itemId":928004,"className":"R_TSP01_104","name":"Recipe - Royal Partisan","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":120},{"itemId":928005,"className":"R_TSP01_105","name":"Recipe - Cone Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":120},{"itemId":928006,"className":"R_TSP01_106","name":"Recipe - Fedimian Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":120},{"itemId":928007,"className":"R_TSP02_101","name":"Recipe - Medina Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":75},{"itemId":928008,"className":"R_TSP02_102","name":"Recipe - Free Partisan","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":75},{"itemId":928010,"className":"R_TSP02_104","name":"Recipe - Entra Partisan","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":120},{"itemId":928011,"className":"R_TSP02_105","name":"Recipe - Galin Trident","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":120},{"itemId":928013,"className":"R_TSP02_107","name":"Recipe - Pine Cone Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":170},{"itemId":928015,"className":"R_TSP03_101","name":"Recipe - Tracksia","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":75},{"itemId":928017,"className":"R_TSP03_103","name":"Recipe - Lydeka","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":75},{"itemId":928018,"className":"R_TSP04_101","name":"Recipe - Flame Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":120},{"itemId":928023,"className":"R_TSP01_108","name":"Recipe - Royal Trident","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":170},{"itemId":928024,"className":"R_TSP01_109","name":"Recipe - Battle Fork","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":170},{"itemId":928025,"className":"R_TSP01_110","name":"Recipe - Halberd","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":170},{"itemId":928030,"className":"R_TSP02_114","name":"Recipe - Escanciu Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":75},{"itemId":928031,"className":"R_TSP02_115","name":"Recipe - Krag Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":75},{"itemId":928032,"className":"R_TSP02_116","name":"Recipe - Pilgrim Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":120},{"itemId":928033,"className":"R_TSP02_117","name":"Recipe - Istora Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":170},{"itemId":928034,"className":"R_TSP04_103","name":"Recipe - Elements","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":170},{"itemId":928035,"className":"R_TSP01_112","name":"Recipe - Demon Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":220},{"itemId":928036,"className":"R_TSP01_113","name":"Recipe - Superior Demon Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":220},{"itemId":928037,"className":"R_TSP03_106","name":"Recipe - Cripple","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":220},{"itemId":928042,"className":"R_TSP03_107","name":"Recipe - Seimos Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":120},{"itemId":928049,"className":"R_TSP03_109","name":"Recipe - Magas Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":170},{"itemId":928052,"className":"R_TSP04_107","name":"Recipe - Catacombs Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":170},{"itemId":928053,"className":"R_TSP02_125","name":"Recipe - Duris Demon Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":220},{"itemId":928054,"className":"R_TSP02_126","name":"Recipe - Holy Partisan","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":220},{"itemId":928055,"className":"R_TSP02_127","name":"Recipe - Hell's Demon Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":220},{"itemId":928059,"className":"R_TSP04_109","name":"Recipe - Plunger","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":220},{"itemId":928060,"className":"R_TSP03_115","name":"Recipe - Sacmet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":315},{"itemId":928061,"className":"R_TSP04_111","name":"Recipe - Regard Horn Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":315},{"itemId":928062,"className":"R_TSP04_119","name":"Recipe - Masinios Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":350},{"itemId":929001,"className":"R_RAP01_101","name":"Recipe - Rapier","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":170},{"itemId":929002,"className":"R_RAP01_102","name":"Recipe - Superior Rapier","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":170},{"itemId":929005,"className":"R_RAP02_102","name":"Recipe - Sharp Rapier","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":170},{"itemId":929006,"className":"R_RAP03_101","name":"Recipe - Duelist","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":170},{"itemId":929007,"className":"R_RAP04_101","name":"Recipe - Venier","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":170},{"itemId":929008,"className":"R_RAP01_104","name":"Recipe - Epee","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":170},{"itemId":929009,"className":"R_RAP01_105","name":"Recipe - Dual Rapier","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":220},{"itemId":929010,"className":"R_RAP01_106","name":"Recipe - Superior Dual Rapier","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":220},{"itemId":929011,"className":"R_RAP03_102","name":"Recipe - Spada","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":220},{"itemId":929015,"className":"R_RAP03_103","name":"Recipe - Magas Rapier","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":170},{"itemId":929018,"className":"R_RAP04_103","name":"Recipe - Catacombs Rapier","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":170},{"itemId":929019,"className":"R_RAP02_106","name":"Recipe - Coro Epee","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":220},{"itemId":929020,"className":"R_RAP02_107","name":"Recipe - Artie Dual Rapier","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":220},{"itemId":929021,"className":"R_RAP02_108","name":"Recipe - Slaake Dual Rapier","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":220},{"itemId":929022,"className":"R_RAP03_305","name":"Recipe - Elga Rapier","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":315},{"itemId":929023,"className":"R_RAP04_106","name":"Recipe - Black Horn","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":315},{"itemId":929024,"className":"R_RAP04_112","name":"Recipe - Masinios Rapier","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":350},{"itemId":930001,"className":"R_PST01_101","name":"Recipe - Revolver","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pistol","minLevel":170},{"itemId":930002,"className":"R_PST01_102","name":"Recipe - Snaphance","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pistol","minLevel":170},{"itemId":930003,"className":"R_PST02_103","name":"Recipe - Handgun","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pistol","minLevel":170},{"itemId":930004,"className":"R_PST04_101","name":"Recipe - Manamana","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pistol","minLevel":170},{"itemId":930005,"className":"R_PST02_104","name":"Recipe - Istora Revolver","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pistol","minLevel":170},{"itemId":930006,"className":"R_PST01_103","name":"Recipe - Long Pistol","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pistol","minLevel":170},{"itemId":930007,"className":"R_PST01_105","name":"Recipe - Royal Pistol","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pistol","minLevel":220},{"itemId":930008,"className":"R_PST01_106","name":"Recipe - Superior Royal Pistol","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pistol","minLevel":220},{"itemId":930009,"className":"R_PST02_109","name":"Recipe - Tevhrin Revolver","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pistol","minLevel":220},{"itemId":930010,"className":"R_PST02_105","name":"Recipe - Vienie Revolver","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pistol","minLevel":220},{"itemId":930011,"className":"R_PST03_101","name":"Recipe - Double Stack","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pistol","minLevel":315},{"itemId":930012,"className":"R_PST04_104","name":"Recipe - Aspana Revolver","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pistol","minLevel":315},{"itemId":930013,"className":"R_PST04_110","name":"Recipe - Masinios Pistol","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pistol","minLevel":350},{"itemId":931001,"className":"R_MUS01_101","name":"Recipe - Musket","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Musket","minLevel":220},{"itemId":931002,"className":"R_MUS01_102","name":"Recipe - Superior Musket","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Musket","minLevel":220},{"itemId":931003,"className":"R_MUS03_101","name":"Recipe - Finisher","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Musket","minLevel":220},{"itemId":931004,"className":"R_MUS02_101","name":"Recipe - Fire Musket","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Musket","minLevel":220},{"itemId":931005,"className":"R_MUS02_102","name":"Recipe - Eki Musket","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Musket","minLevel":220},{"itemId":931006,"className":"R_MUS02_103","name":"Recipe - Vienie Musket","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Musket","minLevel":220},{"itemId":931007,"className":"R_MUS03_104","name":"Recipe - Dragoon Piper","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Musket","minLevel":315},{"itemId":931008,"className":"R_MUS04_103","name":"Recipe - Emengard Musket","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Musket","minLevel":315},{"itemId":931009,"className":"R_MUS04_108","name":"Recipe - Masinios Musket","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Musket","minLevel":350},{"itemId":940029,"className":"R_HAND01_108","name":"Recipe - Grima Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":40},{"itemId":940030,"className":"R_FOOT01_108","name":"Recipe - Grima Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":40},{"itemId":940031,"className":"R_LEG01_108","name":"Recipe - Grima Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":40},{"itemId":940032,"className":"R_TOP01_108","name":"Recipe - Grima Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":40},{"itemId":940033,"className":"R_HAND01_109","name":"Recipe - Veris Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":40},{"itemId":940034,"className":"R_FOOT01_109","name":"Recipe - Veris Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":40},{"itemId":940035,"className":"R_LEG01_109","name":"Recipe - Veris Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":40},{"itemId":940036,"className":"R_TOP01_109","name":"Recipe - Veris Tunic","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":40},{"itemId":940037,"className":"R_HAND01_110","name":"Recipe - Scale Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":40},{"itemId":940038,"className":"R_FOOT01_110","name":"Recipe - Scale Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":40},{"itemId":940039,"className":"R_LEG01_110","name":"Recipe - Scale Leggings","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":40},{"itemId":940040,"className":"R_TOP01_110","name":"Recipe - Scale Mail","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":40},{"itemId":940061,"className":"R_TOP02_102","name":"Recipe - Pokubu Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":1},{"itemId":940062,"className":"R_FOOT02_101","name":"Recipe - Kabra Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":1},{"itemId":940063,"className":"R_TOP02_101","name":"Recipe - Crimson Leather Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":15},{"itemId":940064,"className":"R_HAND02_101","name":"Recipe - Carpenter Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":15},{"itemId":940065,"className":"R_LEG02_103","name":"Recipe - Tenet Chain Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":15},{"itemId":940066,"className":"R_TOP02_103","name":"Recipe - Tenet Chainmail","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":15},{"itemId":940067,"className":"R_HAND02_104","name":"Recipe - Zalia Leather Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":40},{"itemId":940068,"className":"R_FOOT02_104","name":"Recipe - Zalia Leather Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":40},{"itemId":940069,"className":"R_LEG02_104","name":"Recipe - Zalia Leather Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":40},{"itemId":940070,"className":"R_TOP02_104","name":"Recipe - Zalia Leather Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":40},{"itemId":940071,"className":"R_HAND02_105","name":"Recipe - Prova Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":40},{"itemId":940072,"className":"R_TOP02_105","name":"Recipe - Prova Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":40},{"itemId":940073,"className":"R_HAND02_106","name":"Recipe - Studded Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":40},{"itemId":940074,"className":"R_FOOT02_106","name":"Recipe - Studded Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":40},{"itemId":940075,"className":"R_LEG02_106","name":"Recipe - Studded Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":40},{"itemId":940076,"className":"R_TOP02_106","name":"Recipe - Studded Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":40},{"itemId":940077,"className":"R_HAND02_107","name":"Recipe - Insect Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":40},{"itemId":940078,"className":"R_FOOT02_107","name":"Recipe - Insect Greaves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":40},{"itemId":940079,"className":"R_LEG02_107","name":"Recipe - Insect Skirt","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":40},{"itemId":940080,"className":"R_TOP02_107","name":"Recipe - Insect Mail","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":40},{"itemId":940081,"className":"R_FOOT02_108","name":"Recipe - Protas Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":40},{"itemId":940082,"className":"R_LEG02_108","name":"Recipe - Protas Trousers","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":40},{"itemId":940083,"className":"R_HAND02_109","name":"Recipe - Red Veris Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":40},{"itemId":940084,"className":"R_TOP02_109","name":"Recipe - Red Veris Tunic","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":40},{"itemId":940085,"className":"R_LEG02_110","name":"Recipe - Light Plate Leggings","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":40},{"itemId":940086,"className":"R_TOP02_110","name":"Recipe - Light Plate Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":40},{"itemId":940087,"className":"R_HAND02_111","name":"Recipe - Magnus Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":75},{"itemId":940088,"className":"R_FOOT02_111","name":"Recipe - Magnus Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":75},{"itemId":940089,"className":"R_TOP02_111","name":"Recipe - Magnus Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":75},{"itemId":940090,"className":"R_LEG02_112","name":"Recipe - Pokubon Leather Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":75},{"itemId":940091,"className":"R_TOP02_112","name":"Recipe - Pokubon Leather Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":75},{"itemId":940092,"className":"R_HAND02_113","name":"Recipe - Drake Leather Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":75},{"itemId":940093,"className":"R_FOOT02_113","name":"Recipe - Drake Leather Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":75},{"itemId":940094,"className":"R_LEG02_113","name":"Recipe - Drake Leather Leggings","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":75},{"itemId":940095,"className":"R_TOP02_113","name":"Recipe - Drake Leather Tunic","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":75},{"itemId":940096,"className":"R_HAND02_114","name":"Recipe - Silver Plate Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":75},{"itemId":940097,"className":"R_FOOT02_114","name":"Recipe - Silver Plate Greaves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":75},{"itemId":940098,"className":"R_LEG02_114","name":"Recipe - Silver Plate Leggings","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":75},{"itemId":940099,"className":"R_TOP02_114","name":"Recipe - Silver Plate Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":75},{"itemId":940100,"className":"R_HAND03_101","name":"Recipe - Vubbe Fighter Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":15},{"itemId":940101,"className":"R_HAND03_102","name":"Recipe - Shield Crasher","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":40},{"itemId":940102,"className":"R_HAND03_103","name":"Recipe - Vine Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":75},{"itemId":940103,"className":"R_FOOT03_103","name":"Recipe - Vine Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":75},{"itemId":940104,"className":"R_LEG03_103","name":"Recipe - Vine Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":75},{"itemId":940105,"className":"R_TOP03_103","name":"Recipe - Vine Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":75},{"itemId":940106,"className":"R_TOP03_104","name":"Recipe - Saint Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":75},{"itemId":940107,"className":"R_HAND03_105","name":"Recipe - Soul Chaser Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":75},{"itemId":940108,"className":"R_FOOT03_105","name":"Recipe - Soul Chaser Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":75},{"itemId":940109,"className":"R_LEG03_105","name":"Recipe - Soul Chaser Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":75},{"itemId":940110,"className":"R_TOP03_105","name":"Recipe - Soul Chaser Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":75},{"itemId":940111,"className":"R_HAND03_106","name":"Recipe - Bone Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":75},{"itemId":940112,"className":"R_FOOT03_106","name":"Recipe - Bone Greaves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":75},{"itemId":940113,"className":"R_LEG03_106","name":"Recipe - Bone Skirt","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":75},{"itemId":940114,"className":"R_TOP03_106","name":"Recipe - Bone Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":75},{"itemId":940115,"className":"R_HAND03_107","name":"Recipe - Shade Hands","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":75},{"itemId":940116,"className":"R_FOOT03_107","name":"Recipe - Shade Runner","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":75},{"itemId":940117,"className":"R_LEG03_107","name":"Recipe - Shade Skirt","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":75},{"itemId":940118,"className":"R_TOP03_107","name":"Recipe - Shade Dancer","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":75},{"itemId":940119,"className":"R_FOOT04_101","name":"Recipe - Wind Runner","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":75},{"itemId":940122,"className":"R_TOP04_104","name":"Recipe - Banshee Veil","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":120},{"itemId":940123,"className":"R_HAND02_115","name":"Recipe - Wild Leather Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":1},{"itemId":940125,"className":"R_TOP02_118","name":"Recipe - Follower Leather Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":15},{"itemId":940144,"className":"R_TOP03_108","name":"Recipe - Rokas Leather Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":40},{"itemId":940145,"className":"R_TOP03_109","name":"Recipe - Rokas Mail","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":40},{"itemId":940146,"className":"R_TOP03_110","name":"Recipe - Rokas Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":40},{"itemId":940148,"className":"R_HAND02_122","name":"Recipe - Nepenthes Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":15},{"itemId":940258,"className":"R_TOP02_149","name":"Recipe - Formine Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":1},{"itemId":940259,"className":"R_LEG02_150","name":"Recipe - Riena Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":75},{"itemId":940260,"className":"R_TOP02_150","name":"Recipe - Riena Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":75},{"itemId":940261,"className":"R_LEG02_151","name":"Recipe - Riena Leather Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":75},{"itemId":940262,"className":"R_TOP02_151","name":"Recipe - Riena Leather Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":75},{"itemId":940263,"className":"R_LEG02_152","name":"Recipe - Riena Plate Leggings","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":75},{"itemId":940264,"className":"R_TOP02_152","name":"Recipe - Riena Plate Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":75},{"itemId":940277,"className":"R_HAND01_138","name":"Recipe - Fedimian Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":120},{"itemId":940278,"className":"R_FOOT01_138","name":"Recipe - Fedimian Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":120},{"itemId":940279,"className":"R_LEG01_138","name":"Recipe - Fedimian Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":120},{"itemId":940280,"className":"R_TOP01_138","name":"Recipe - Fedimian Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":120},{"itemId":940281,"className":"R_HAND01_139","name":"Recipe - Fedimian Leather Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":120},{"itemId":940282,"className":"R_FOOT01_139","name":"Recipe - Fedimian Leather Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":120},{"itemId":940283,"className":"R_LEG01_139","name":"Recipe - Fedimian Leather Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":120},{"itemId":940284,"className":"R_TOP01_139","name":"Recipe - Fedimian Leather Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":120},{"itemId":940285,"className":"R_HAND01_140","name":"Recipe - Fedimian Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":120},{"itemId":940286,"className":"R_FOOT01_140","name":"Recipe - Fedimian Greaves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":120},{"itemId":940287,"className":"R_LEG01_140","name":"Recipe - Fedimian Leggings","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":120},{"itemId":940288,"className":"R_TOP01_140","name":"Recipe - Fedimian Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":120},{"itemId":940301,"className":"R_HAND01_144","name":"Recipe - Mage Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":120},{"itemId":940302,"className":"R_FOOT01_144","name":"Recipe - Mage Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":120},{"itemId":940303,"className":"R_LEG01_144","name":"Recipe - Mage Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":120},{"itemId":940304,"className":"R_TOP01_144","name":"Recipe - Mage Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":120},{"itemId":940305,"className":"R_HAND01_145","name":"Recipe - Skirmisher Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":120},{"itemId":940306,"className":"R_FOOT01_145","name":"Recipe - Skirmisher Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":120},{"itemId":940307,"className":"R_LEG01_145","name":"Recipe - Skirmisher Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":120},{"itemId":940308,"className":"R_TOP01_145","name":"Recipe - Skirmisher Tunic","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":120},{"itemId":940309,"className":"R_HAND01_146","name":"Recipe - Infantry Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":120},{"itemId":940310,"className":"R_FOOT01_146","name":"Recipe - Infantry Greaves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":120},{"itemId":940311,"className":"R_LEG01_146","name":"Recipe - Infantry Leggings","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":120},{"itemId":940312,"className":"R_TOP01_146","name":"Recipe - Infantry Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":120},{"itemId":940313,"className":"R_HAND01_147","name":"Recipe - Archmage Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":170},{"itemId":940314,"className":"R_FOOT01_147","name":"Recipe - Archmage Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":170},{"itemId":940315,"className":"R_LEG01_147","name":"Recipe - Archmage Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":170},{"itemId":940316,"className":"R_TOP01_147","name":"Recipe - Archmage Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":170},{"itemId":940317,"className":"R_HAND01_148","name":"Recipe - Superior Skirmisher Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":170},{"itemId":940318,"className":"R_FOOT01_148","name":"Recipe - Superior Skirmisher Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":170},{"itemId":940319,"className":"R_LEG01_148","name":"Recipe - Superior Skirmisher Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":170},{"itemId":940320,"className":"R_TOP01_148","name":"Recipe - Superior Skirmisher Tunic","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":170},{"itemId":940321,"className":"R_HAND01_149","name":"Recipe - Superior Infantry Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":170},{"itemId":940322,"className":"R_FOOT01_149","name":"Recipe - Superior Infantry Greaves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":170},{"itemId":940323,"className":"R_LEG01_149","name":"Recipe - Superior Infantry Leggings","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":170},{"itemId":940324,"className":"R_TOP01_149","name":"Recipe - Superior Infantry Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":170},{"itemId":940325,"className":"R_HAND01_150","name":"Recipe - Librarian Gloves ","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":170},{"itemId":940326,"className":"R_FOOT01_150","name":"Recipe - Librarian Boots ","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":170},{"itemId":940327,"className":"R_LEG01_150","name":"Recipe - Librarian Pants ","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":170},{"itemId":940328,"className":"R_TOP01_150","name":"Recipe - Librarian Robe ","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":170},{"itemId":940329,"className":"R_HAND01_151","name":"Recipe - Veteran Gloves ","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":170},{"itemId":940330,"className":"R_FOOT01_151","name":"Recipe - Veteran Boots ","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":170},{"itemId":940331,"className":"R_LEG01_151","name":"Recipe - Veteran Pants ","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":170},{"itemId":940332,"className":"R_TOP01_151","name":"Recipe - Veteran Tunic ","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":170},{"itemId":940333,"className":"R_HAND01_152","name":"Recipe - Knight Gauntlets ","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":170},{"itemId":940334,"className":"R_FOOT01_152","name":"Recipe - Knight Greaves ","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":170},{"itemId":940335,"className":"R_LEG01_152","name":"Recipe - Knight Leggings ","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":170},{"itemId":940336,"className":"R_TOP01_152","name":"Recipe - Knight Armor ","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":170},{"itemId":940369,"className":"R_HAND03_111","name":"Recipe - Roxona Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":170},{"itemId":940370,"className":"R_FOOT03_111","name":"Recipe - Roxona Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":170},{"itemId":940371,"className":"R_LEG03_111","name":"Recipe - Roxona Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":170},{"itemId":940372,"className":"R_TOP03_111","name":"Recipe - Roxona Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":170},{"itemId":940373,"className":"R_HAND03_112","name":"Recipe - Roxona Leather Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":170},{"itemId":940374,"className":"R_FOOT03_112","name":"Recipe - Roxona Leather Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":170},{"itemId":940375,"className":"R_LEG03_112","name":"Recipe - Roxona Leather Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":170},{"itemId":940376,"className":"R_TOP03_112","name":"Recipe - Roxona Leather Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":170},{"itemId":940377,"className":"R_HAND03_113","name":"Recipe - Roxona Plate Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":170},{"itemId":940378,"className":"R_FOOT03_113","name":"Recipe - Roxona Plate Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":170},{"itemId":940379,"className":"R_LEG03_113","name":"Recipe - Roxona Plate Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":170},{"itemId":940380,"className":"R_TOP03_113","name":"Recipe - Roxona Plate Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":170},{"itemId":940429,"className":"R_HAND02_172","name":"Recipe - Allerno Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":75},{"itemId":940430,"className":"R_FOOT02_172","name":"Recipe - Allerno Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":75},{"itemId":940431,"className":"R_LEG02_172","name":"Recipe - Allerno Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":75},{"itemId":940432,"className":"R_TOP02_172","name":"Recipe - Allerno Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":75},{"itemId":940433,"className":"R_HAND02_173","name":"Recipe - Allerno Leather Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":75},{"itemId":940434,"className":"R_FOOT02_173","name":"Recipe - Allerno Leather Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":75},{"itemId":940435,"className":"R_LEG02_173","name":"Recipe - Allerno Leather Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":75},{"itemId":940436,"className":"R_TOP02_173","name":"Recipe - Allerno Leather Tunic","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":75},{"itemId":940437,"className":"R_HAND02_174","name":"Recipe - Allerno Plate Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":75},{"itemId":940438,"className":"R_FOOT02_174","name":"Recipe - Allerno Plate Greaves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":75},{"itemId":940439,"className":"R_LEG02_174","name":"Recipe - Allerno Plate Leggings","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":75},{"itemId":940440,"className":"R_TOP02_174","name":"Recipe - Allerno Plate Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":75},{"itemId":940441,"className":"R_HAND02_175","name":"Recipe - Perelin Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":75},{"itemId":940442,"className":"R_FOOT02_175","name":"Recipe - Perelin Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":75},{"itemId":940443,"className":"R_LEG02_175","name":"Recipe - Perelin Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":75},{"itemId":940444,"className":"R_TOP02_175","name":"Recipe - Perelin Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":75},{"itemId":940445,"className":"R_HAND02_176","name":"Recipe - Perelin Leather Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":75},{"itemId":940446,"className":"R_FOOT02_176","name":"Recipe - Perelin Leather Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":75},{"itemId":940447,"className":"R_LEG02_176","name":"Recipe - Perelin Leather Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":75},{"itemId":940448,"className":"R_TOP02_176","name":"Recipe - Perelin Leather Tunic","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":75},{"itemId":940449,"className":"R_HAND02_177","name":"Recipe - Perelin Plate Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":75},{"itemId":940450,"className":"R_FOOT02_177","name":"Recipe - Perelin Plate Greaves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":75},{"itemId":940451,"className":"R_LEG02_177","name":"Recipe - Perelin Plate Leggings","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":75},{"itemId":940452,"className":"R_TOP02_177","name":"Recipe - Perelin Plate Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":75},{"itemId":940453,"className":"R_HAND02_178","name":"Recipe - Turn Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":120},{"itemId":940454,"className":"R_FOOT02_178","name":"Recipe - Turn Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":120},{"itemId":940455,"className":"R_LEG02_178","name":"Recipe - Turn Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":120},{"itemId":940456,"className":"R_TOP02_178","name":"Recipe - Turn Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":120},{"itemId":940457,"className":"R_HAND02_179","name":"Recipe - Turn Leather Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":120},{"itemId":940458,"className":"R_FOOT02_179","name":"Recipe - Turn Leather Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":120},{"itemId":940459,"className":"R_LEG02_179","name":"Recipe - Turn Leather Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":120},{"itemId":940460,"className":"R_TOP02_179","name":"Recipe - Turn Leather Tunic","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":120},{"itemId":940461,"className":"R_HAND02_180","name":"Recipe - Turn Plate Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":120},{"itemId":940462,"className":"R_FOOT02_180","name":"Recipe - Turn Plate Greaves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":120},{"itemId":940463,"className":"R_LEG02_180","name":"Recipe - Turn Plate Leggings","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":120},{"itemId":940464,"className":"R_TOP02_180","name":"Recipe - Turn Plate Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":120},{"itemId":940465,"className":"R_HAND02_181","name":"Recipe - Shaton Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":120},{"itemId":940466,"className":"R_FOOT02_181","name":"Recipe - Shaton Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":120},{"itemId":940467,"className":"R_LEG02_181","name":"Recipe - Shaton Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":120},{"itemId":940468,"className":"R_TOP02_181","name":"Recipe - Shaton Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":120},{"itemId":940469,"className":"R_HAND02_182","name":"Recipe - Shaton Leather Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":120},{"itemId":940470,"className":"R_FOOT02_182","name":"Recipe - Shaton Leather Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":120},{"itemId":940471,"className":"R_LEG02_182","name":"Recipe - Shaton Leather Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":120},{"itemId":940472,"className":"R_TOP02_182","name":"Recipe - Shaton Leather Tunic","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":120},{"itemId":940473,"className":"R_HAND02_183","name":"Recipe - Shaton Plate Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":120},{"itemId":940474,"className":"R_FOOT02_183","name":"Recipe - Shaton Plate Greaves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":120},{"itemId":940475,"className":"R_LEG02_183","name":"Recipe - Shaton Plate Leggings","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":120},{"itemId":940476,"className":"R_TOP02_183","name":"Recipe - Shaton Plate Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":120},{"itemId":940477,"className":"R_HAND02_184","name":"Recipe - Tyla Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":170},{"itemId":940478,"className":"R_FOOT02_184","name":"Recipe - Tyla Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":170},{"itemId":940479,"className":"R_LEG02_184","name":"Recipe - Tyla Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":170},{"itemId":940480,"className":"R_TOP02_184","name":"Recipe - Tyla Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":170},{"itemId":940481,"className":"R_HAND02_185","name":"Recipe - Tyla Leather Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":170},{"itemId":940482,"className":"R_FOOT02_185","name":"Recipe - Tyla Leather Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":170},{"itemId":940483,"className":"R_LEG02_185","name":"Recipe - Tyla Leather Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":170},{"itemId":940484,"className":"R_TOP02_185","name":"Recipe - Tyla Leather Tunic","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":170},{"itemId":940485,"className":"R_HAND02_186","name":"Recipe - Tyla Plate Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":170},{"itemId":940486,"className":"R_FOOT02_186","name":"Recipe - Tyla Plate Greaves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":170},{"itemId":940487,"className":"R_LEG02_186","name":"Recipe - Tyla Plate Leggings","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":170},{"itemId":940488,"className":"R_TOP02_186","name":"Recipe - Tyla Plate Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":170},{"itemId":940489,"className":"R_HAND01_154","name":"Recipe - Royal Mage Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":220},{"itemId":940490,"className":"R_FOOT01_154","name":"Recipe - Royal Mage Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":220},{"itemId":940491,"className":"R_LEG01_154","name":"Recipe - Royal Mage Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":220},{"itemId":940492,"className":"R_TOP01_154","name":"Recipe - Royal Mage Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":220},{"itemId":940493,"className":"R_HAND01_155","name":"Recipe - Bandit Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":220},{"itemId":940494,"className":"R_FOOT01_155","name":"Recipe - Bandit Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":220},{"itemId":940495,"className":"R_LEG01_155","name":"Recipe - Bandit Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":220},{"itemId":940496,"className":"R_TOP01_155","name":"Recipe - Bandit Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":220},{"itemId":940497,"className":"R_HAND01_156","name":"Recipe - Royal Guard Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":220},{"itemId":940498,"className":"R_FOOT01_156","name":"Recipe - Royal Guard Greaves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":220},{"itemId":940499,"className":"R_LEG01_156","name":"Recipe - Royal Guard Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":220},{"itemId":940500,"className":"R_TOP01_156","name":"Recipe - Royal Guard Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":220},{"itemId":940501,"className":"R_HAND01_157","name":"Recipe - Superior Royal Mage Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":220},{"itemId":940502,"className":"R_FOOT01_157","name":"Recipe - Superior Royal Mage Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":220},{"itemId":940503,"className":"R_LEG01_157","name":"Recipe - Superior Royal Mage Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":220},{"itemId":940504,"className":"R_TOP01_157","name":"Recipe - Superior Royal Mage Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":220},{"itemId":940505,"className":"R_HAND01_158","name":"Recipe - Superior Bandit Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":220},{"itemId":940506,"className":"R_FOOT01_158","name":"Recipe - Superior Bandit Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":220},{"itemId":940507,"className":"R_LEG01_158","name":"Recipe - Superior Bandit Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":220},{"itemId":940508,"className":"R_TOP01_158","name":"Recipe - Superior Bandit Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":220},{"itemId":940509,"className":"R_HAND01_159","name":"Recipe - Superior Royal Guard Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":220},{"itemId":940510,"className":"R_FOOT01_159","name":"Recipe - Superior Royal Guard Greaves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":220},{"itemId":940511,"className":"R_LEG01_159","name":"Recipe - Superior Royal Guard Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":220},{"itemId":940512,"className":"R_TOP01_159","name":"Recipe - Superior Royal Guard Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":220},{"itemId":940513,"className":"R_LEG02_187","name":"Recipe - Velnia Monkey Leather Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":40},{"itemId":940514,"className":"R_TOP02_187","name":"Recipe - Velnia Monkey Leather Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":40},{"itemId":940515,"className":"R_HAND02_188","name":"Recipe - Elgos Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":220},{"itemId":940516,"className":"R_FOOT02_188","name":"Recipe - Elgos Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":220},{"itemId":940517,"className":"R_LEG02_188","name":"Recipe - Elgos Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":220},{"itemId":940518,"className":"R_TOP02_188","name":"Recipe - Elgos Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":220},{"itemId":940519,"className":"R_HAND02_189","name":"Recipe - Ibre Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":220},{"itemId":940520,"className":"R_FOOT02_189","name":"Recipe - Ibre Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":220},{"itemId":940521,"className":"R_LEG02_189","name":"Recipe - Ibre Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":220},{"itemId":940522,"className":"R_TOP02_189","name":"Recipe - Ibre Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":220},{"itemId":940523,"className":"R_HAND02_190","name":"Recipe - Grynas Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":220},{"itemId":940524,"className":"R_FOOT02_190","name":"Recipe - Grynas Greaves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":220},{"itemId":940525,"className":"R_LEG02_190","name":"Recipe - Grynas Leggings","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":220},{"itemId":940526,"className":"R_TOP02_190","name":"Recipe - Grynas Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":220},{"itemId":940527,"className":"R_HAND03_114","name":"Recipe - Virtov Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":220},{"itemId":940528,"className":"R_FOOT03_114","name":"Recipe - Virtov Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":220},{"itemId":940529,"className":"R_LEG03_114","name":"Recipe - Virtov Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":220},{"itemId":940530,"className":"R_TOP03_114","name":"Recipe - Virtov Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":220},{"itemId":940531,"className":"R_HAND03_115","name":"Recipe - Virtov Leather Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":220},{"itemId":940532,"className":"R_FOOT03_115","name":"Recipe - Virtov Leather Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":220},{"itemId":940533,"className":"R_LEG03_115","name":"Recipe - Virtov Leather Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":220},{"itemId":940534,"className":"R_TOP03_115","name":"Recipe - Virtov Leather Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":220},{"itemId":940535,"className":"R_HAND03_116","name":"Recipe - Virtov Plate Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":220},{"itemId":940536,"className":"R_FOOT03_116","name":"Recipe - Virtov Plate Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":220},{"itemId":940537,"className":"R_LEG03_116","name":"Recipe - Virtov Plate Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":220},{"itemId":940538,"className":"R_TOP03_116","name":"Recipe - Virtov Plate Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":220},{"itemId":940539,"className":"R_HAND01_201","name":"Recipe - Smash Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":220},{"itemId":940540,"className":"R_HAND01_202","name":"Recipe - Slash Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":220},{"itemId":940541,"className":"R_HAND02_203","name":"Recipe - Oghma Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":220},{"itemId":940542,"className":"R_HAND02_204","name":"Recipe - Demonas Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":220},{"itemId":940543,"className":"R_FOOT01_201","name":"Recipe - Greytis Greaves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":170},{"itemId":940544,"className":"R_FOOT01_202","name":"Recipe - Kovos Greaves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":170},{"itemId":940545,"className":"R_FOOT02_203","name":"Recipe - Superior Greytis Greaves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":220},{"itemId":940546,"className":"R_FOOT02_204","name":"Recipe - Superior Kovos Greaves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":220},{"itemId":940547,"className":"R_HAND03_201","name":"Recipe - Swift Oghma Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":270},{"itemId":940548,"className":"R_HAND03_202","name":"Recipe - Dehvlin Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":270},{"itemId":940549,"className":"R_FOOT03_201","name":"Recipe - Cylli Plate Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":270},{"itemId":940550,"className":"R_FOOT03_202","name":"Recipe - Shade Greaves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":270},{"itemId":941005,"className":"R_SHD01_105","name":"Recipe - Round Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":40},{"itemId":941006,"className":"R_SHD01_106","name":"Recipe - Steel Kite Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":40},{"itemId":941008,"className":"R_SHD01_108","name":"Recipe - Machinery Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":40},{"itemId":941009,"className":"R_SHD02_101","name":"Recipe - Wooden Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":1},{"itemId":941010,"className":"R_SHD02_102","name":"Recipe - Oak Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":15},{"itemId":941011,"className":"R_SHD02_103","name":"Recipe - Savage Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":40},{"itemId":941012,"className":"R_SHD02_104","name":"Recipe - Zalia Kite Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":40},{"itemId":941013,"className":"R_SHD02_105","name":"Recipe - Superior Kite Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":40},{"itemId":941014,"className":"R_SHD02_106","name":"Recipe - Bead Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":40},{"itemId":941015,"className":"R_SHD02_107","name":"Recipe - Circle Guard","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":75},{"itemId":941016,"className":"R_SHD02_108","name":"Recipe - Ludas Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":75},{"itemId":941017,"className":"R_SHD03_101","name":"Recipe - Wall Guard","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":170},{"itemId":941018,"className":"R_SHD03_102","name":"Recipe - Fortress","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":75},{"itemId":941019,"className":"R_SHD03_103","name":"Recipe - Beetleback","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":75},{"itemId":941020,"className":"R_SHD04_101","name":"Recipe - Sage Wall","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":75},{"itemId":941021,"className":"R_SHD04_102","name":"Recipe - Aias","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":170},{"itemId":941026,"className":"R_SHD01_113","name":"Recipe - Scallop Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":75},{"itemId":941027,"className":"R_SHD01_114","name":"Recipe - Pelta Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":120},{"itemId":941028,"className":"R_SHD01_115","name":"Recipe - Fedimian Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":120},{"itemId":941029,"className":"R_SHD01_116","name":"Recipe - Kalkan","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":120},{"itemId":941030,"className":"R_SHD01_117","name":"Recipe - Cavalry Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":170},{"itemId":941031,"className":"R_SHD01_118","name":"Recipe - Knight Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":170},{"itemId":941032,"className":"R_SHD01_119","name":"Recipe - Tower Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":170},{"itemId":941033,"className":"R_SHD01_120","name":"Recipe - Guardsman Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":220},{"itemId":941034,"className":"R_SHD01_121","name":"Recipe - Claria Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":220},{"itemId":941035,"className":"R_SHD02_117","name":"Recipe - Ferret Marauder Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":75},{"itemId":941036,"className":"R_SHD02_118","name":"Recipe - Alemeth Tower Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":220},{"itemId":941037,"className":"R_SHD03_105","name":"Recipe - Pavaisa Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":120},{"itemId":941045,"className":"R_SHD03_107","name":"Recipe - Otrava Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":170},{"itemId":941055,"className":"R_SHD04_106","name":"Recipe - Ina Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":170},{"itemId":941056,"className":"R_SHD02_119","name":"Recipe - Didel Tower Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":220},{"itemId":941057,"className":"R_SHD03_110","name":"Recipe - Lionhead Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":315},{"itemId":941058,"className":"R_SHD04_105","name":"Recipe - Emengard Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":315},{"itemId":941059,"className":"R_SHD04_113","name":"Recipe - Masinios Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":350},{"itemId":942002,"className":"R_DAG01_102","name":"Recipe - Superior Knife","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":120},{"itemId":942003,"className":"R_DAG01_103","name":"Recipe - Dirk Dagger","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":120},{"itemId":942004,"className":"R_DAG01_104","name":"Recipe - Superior Dirk Dagger","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":170},{"itemId":942005,"className":"R_DAG01_105","name":"Recipe - Main Gauche","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":170},{"itemId":942006,"className":"R_DAG01_106","name":"Recipe - Superior Main Gauche","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":170},{"itemId":942009,"className":"R_DAG03_102","name":"Recipe - Karacha Dagger","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":170},{"itemId":942010,"className":"R_DAG04_101","name":"Recipe - Venom","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":170},{"itemId":942011,"className":"R_DAG01_108","name":"Recipe - Chura","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":220},{"itemId":942012,"className":"R_DAG01_109","name":"Recipe - Superior Chura","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":220},{"itemId":942013,"className":"R_DAG02_101","name":"Recipe - Blood Dagger","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":220},{"itemId":942014,"className":"R_DAG03_105","name":"Recipe - Lionhead Dagger","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":315},{"itemId":942015,"className":"R_DAG04_104","name":"Recipe - Emengard Dagger","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":315},{"itemId":942016,"className":"R_DAG04_105","name":"Recipe - Blood Stealer","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":330},{"itemId":942017,"className":"R_SWD04_109_Event","name":"Artisan Recipe - Abdochar","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":315},{"itemId":942018,"className":"R_TSW04_109_Event","name":"Artisan Recipe - Sarkmis","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":315},{"itemId":942019,"className":"R_STF04_110_Event","name":"Artisan Recipe - Heart of Glory","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":315},{"itemId":942020,"className":"R_TBW04_109_Event","name":"Artisan Recipe - Astra Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":315},{"itemId":942021,"className":"R_BOW04_109_Event","name":"Artisan Recipe - Regard Horn Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":315},{"itemId":942022,"className":"R_MAC04_111_Event","name":"Artisan Recipe - Skull Smasher","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":315},{"itemId":942023,"className":"R_SPR04_110_Event","name":"Artisan Recipe - Wingshard Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":315},{"itemId":942024,"className":"R_TSP04_111_Event","name":"Artisan Recipe - Regard Horn Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":315},{"itemId":942025,"className":"R_DAG04_104_Event","name":"Artisan Recipe - Emengard Dagger","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":315},{"itemId":942026,"className":"R_TSF04_109_Event","name":"Artisan Recipe - Regard Horn Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":315},{"itemId":942027,"className":"R_RAP04_106_Event","name":"Artisan Recipe - Black Horn ","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":315},{"itemId":942028,"className":"R_MUS04_103_Event","name":"Artisan Recipe - Emengard Musket ","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Musket","minLevel":315},{"itemId":942029,"className":"R_PST04_104_Event","name":"Artisan Recipe - Aspana Revolver ","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pistol","minLevel":315},{"itemId":942030,"className":"R_TMAC03_106","name":"Recipe - Vienarazis Two-handed Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THMace","minLevel":315},{"itemId":942031,"className":"R_TMAC04_101","name":"Recipe - Skull Breaker","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THMace","minLevel":315},{"itemId":942032,"className":"R_TMAC04_101_Event","name":"Artisan Recipe - Skull Breaker ","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THMace","minLevel":315},{"itemId":942033,"className":"R_TMAC04_108","name":"Recipe - Masinios Two-handed Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THMace","minLevel":350},{"itemId":942034,"className":"R_DAG04_113","name":"Recipe - Masinios Dagger","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":350},{"itemId":943016,"className":"R_NECK02_105","name":"Recipe - Magic Talisman","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":75},{"itemId":943017,"className":"R_NECK02_106","name":"Recipe - Strength Pendant","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":75},{"itemId":943018,"className":"R_NECK02_107","name":"Recipe - Pyluma Chain","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":120},{"itemId":943019,"className":"R_NECK02_108","name":"Recipe - Icema Chain","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":120},{"itemId":943020,"className":"R_NECK02_109","name":"Recipe - Poizma Chain","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":120},{"itemId":943021,"className":"R_NECK02_110","name":"Recipe - Lightna Chain","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":120},{"itemId":943022,"className":"R_NECK02_111","name":"Recipe - Health Stone","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":120},{"itemId":943023,"className":"R_NECK02_112","name":"Recipe - Warrior Pendant","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":170},{"itemId":943024,"className":"R_NECK03_101","name":"Recipe - Conqueror","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":170},{"itemId":943025,"className":"R_NECK03_102","name":"Recipe - Petamion","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":120},{"itemId":943026,"className":"R_NECK03_103","name":"Recipe - Electus","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":120},{"itemId":943028,"className":"R_NECK04_102","name":"Recipe - Max Petamion","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":170},{"itemId":943029,"className":"R_NECK04_103","name":"Recipe - Animus","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":170},{"itemId":943033,"className":"R_NECK03_104","name":"Recipe - Saphie Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":40},{"itemId":943038,"className":"R_NECK01_134","name":"Recipe - Necklace of Fury","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":1},{"itemId":943050,"className":"R_NECK01_131","name":"Recipe - Silver Talisman","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":75},{"itemId":943053,"className":"R_NECK01_138","name":"Recipe - Superior Ritual Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":120},{"itemId":943054,"className":"R_NECK01_139","name":"Recipe - Key Pendant","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":120},{"itemId":943055,"className":"R_NECK01_140","name":"Recipe - Superior Key Pendant","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":170},{"itemId":943056,"className":"R_NECK01_141","name":"Recipe - Sage Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":170},{"itemId":943058,"className":"R_NECK01_142","name":"Recipe - Superior Sage Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":170},{"itemId":943059,"className":"R_NECK01_143","name":"Recipe - Guardian Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":220},{"itemId":943060,"className":"R_NECK01_144","name":"Recipe - Superior Guardian Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":220},{"itemId":943062,"className":"R_NECK03_106","name":"Recipe - Maven Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":220},{"itemId":943063,"className":"R_NECK04_105","name":"Recipe - Terrallion","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":220},{"itemId":943064,"className":"R_NECK02_123","name":"Recipe - Anti Dark Property Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":120},{"itemId":943065,"className":"R_NECK02_124","name":"Recipe - Anti Cold Property Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":120},{"itemId":943066,"className":"R_NECK03_107","name":"Recipe - Rhevisan Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":170},{"itemId":943067,"className":"R_NECK02_127","name":"Recipe - Agny Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":120},{"itemId":943068,"className":"R_NECK03_112","name":"Recipe - Kietas Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":260},{"itemId":943069,"className":"R_NECK03_113","name":"Recipe - Pejnus Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":260},{"itemId":943070,"className":"R_NECK03_114","name":"Recipe - Nelajmes Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":300},{"itemId":943071,"className":"R_NECK03_115","name":"Recipe - Rupesciu Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":300},{"itemId":943072,"className":"R_NECK03_118","name":"Recipe - Mejstra Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":220},{"itemId":943073,"className":"R_NECK03_119","name":"Recipe - Svijes Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":220},{"itemId":943074,"className":"R_NECK03_120","name":"Recipe - Atikha Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":220},{"itemId":943075,"className":"R_NECK03_121","name":"Recipe - Manosierdi Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":220},{"itemId":943076,"className":"R_BRC03_118","name":"Recipe - Mejstra Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":220},{"itemId":943077,"className":"R_BRC03_119","name":"Recipe - Svijes Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":220},{"itemId":943078,"className":"R_BRC03_121","name":"Recipe - Atikha Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":220},{"itemId":943079,"className":"R_BRC03_122","name":"Recipe - Manosierdi Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":220},{"itemId":943080,"className":"R_BRC04_109","name":"Recipe - Lynnki Sit Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":315},{"itemId":943081,"className":"R_BRC04_110","name":"Recipe - Kite Moor Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":315},{"itemId":943082,"className":"R_BRC04_111","name":"Recipe - Pasiutes Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":315},{"itemId":943083,"className":"R_BRC04_112","name":"Recipe - Frieno Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":315},{"itemId":943084,"className":"R_NECK04_111","name":"Recipe - Lynnki Sit Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":315},{"itemId":943085,"className":"R_NECK04_112","name":"Recipe - Kite Moor Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":315},{"itemId":943086,"className":"R_NECK04_113","name":"Recipe - Pasiutes Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":315},{"itemId":943087,"className":"R_NECK04_114","name":"Recipe - Frieno Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":315},{"itemId":944007,"className":"R_BRC01_115","name":"Recipe - Iron Bangle","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":15},{"itemId":944012,"className":"R_BRC02_101","name":"Recipe - Crystal Bangle","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":15},{"itemId":944013,"className":"R_BRC02_102","name":"Recipe - Shine Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":15},{"itemId":944015,"className":"R_BRC02_104","name":"Recipe - Poison Bangle","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":40},{"itemId":944017,"className":"R_BRC02_106","name":"Recipe - Control Bangle","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":75},{"itemId":944018,"className":"R_BRC02_107","name":"Recipe - Hunter Bangle","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":120},{"itemId":944019,"className":"R_BRC02_108","name":"Recipe - Bracer of Archer","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":120},{"itemId":944021,"className":"R_BRC02_110","name":"Recipe - Rapid Bangle","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":170},{"itemId":944022,"className":"R_BRC02_111","name":"Recipe - Glass Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":170},{"itemId":944023,"className":"R_BRC03_101","name":"Recipe - Gladiator Band","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":75},{"itemId":944024,"className":"R_BRC03_102","name":"Recipe - Bracelet of Linne","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":120},{"itemId":944025,"className":"R_BRC03_103","name":"Recipe - Pora","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":220},{"itemId":944026,"className":"R_BRC03_104","name":"Recipe - Pore","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":220},{"itemId":944027,"className":"R_BRC04_101","name":"Recipe - Sissel Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":170},{"itemId":944031,"className":"R_BRC03_105","name":"Recipe - Zachariel Bangle","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":75},{"itemId":944043,"className":"R_BRC01_131","name":"Recipe - Silver Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":75},{"itemId":944045,"className":"R_BRC01_133","name":"Recipe - Superior Pearl Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":120},{"itemId":944046,"className":"R_BRC01_134","name":"Recipe - Rune Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":120},{"itemId":944047,"className":"R_BRC01_135","name":"Recipe - Superior Rune Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":170},{"itemId":944048,"className":"R_BRC01_136","name":"Recipe - Star Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":170},{"itemId":944050,"className":"R_BRC03_107","name":"Recipe - Elements Dance","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":170},{"itemId":944051,"className":"R_BRC01_137","name":"Recipe - Superior Star Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":170},{"itemId":944052,"className":"R_BRC01_130","name":"Recipe - Stone Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":75},{"itemId":944053,"className":"R_BRC01_139","name":"Recipe - Superior Gem Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":220},{"itemId":944054,"className":"R_BRC02_115","name":"Recipe - Kranto Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":220},{"itemId":944055,"className":"R_BRC01_138","name":"Recipe - Gem Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":220},{"itemId":944056,"className":"R_BRC03_108","name":"Recipe - Archmage Bangle","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":220},{"itemId":944057,"className":"R_BRC04_103","name":"Recipe - Phada","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":220},{"itemId":944058,"className":"R_BRC02_120","name":"Recipe - Anti Dark Property Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":120},{"itemId":944059,"className":"R_BRC02_121","name":"Recipe - Anti Cold Property Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":120},{"itemId":944060,"className":"R_BRC03_109","name":"Recipe - Rhevisan Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":170},{"itemId":944061,"className":"R_BRC03_110","name":"Recipe - Smurto Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":260},{"itemId":944062,"className":"R_BRC03_111","name":"Recipe - Ismintis Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":260},{"itemId":944063,"className":"R_BRC03_112","name":"Recipe - Stipiria Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":300},{"itemId":944064,"className":"R_BRC03_113","name":"Recipe - Svenus Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":300},{"itemId":944073,"className":"R_BRC04_113","name":"Recipe - Akro Galia Bangle","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":270},{"itemId":944074,"className":"R_BRC04_114","name":"Recipe - Aiskus Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":270},{"itemId":944075,"className":"R_BRC03_123","name":"Recipe - Achiva Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":315},{"itemId":944076,"className":"R_BRC03_124","name":"Recipe - Mirti Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":315},{"itemId":944077,"className":"R_BRC03_125","name":"Recipe - Ufhor Pearl Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":315},{"itemId":944078,"className":"R_BRC03_126","name":"Recipe - Pik'o Pearl Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":315},{"itemId":944079,"className":"R_NECK02_128","name":"Recipe - Electra Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":270},{"itemId":944080,"className":"R_NECK02_129","name":"Recipe - Ledas Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":270},{"itemId":944081,"className":"R_NECK02_132","name":"Recipe - Zemej Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":270},{"itemId":944082,"className":"R_NECK05_001","name":"Recipe - Drakonas Lynnki Sit Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":380},{"itemId":944083,"className":"R_NECK05_002","name":"Recipe - Drakonas Kite Moor Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":380},{"itemId":944084,"className":"R_NECK05_003","name":"Recipe - Drakonas Pasiutes Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":380},{"itemId":944085,"className":"R_NECK05_004","name":"Recipe - Drakonas Frieno Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":380},{"itemId":944086,"className":"R_BRC05_001","name":"Recipe - Drakonas Lynnki Sit Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":380},{"itemId":944087,"className":"R_BRC05_002","name":"Recipe - Drakonas Kite Moor Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":380},{"itemId":944088,"className":"R_BRC05_003","name":"Recipe - Drakonas Pasiutes Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":380},{"itemId":944089,"className":"R_BRC05_004","name":"Recipe - Drakonas Frieno Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":380},{"itemId":944090,"className":"R_NECK04_118","name":"Recipe - Abyss Irredian Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":380},{"itemId":944091,"className":"R_BRC04_118","name":"Recipe - Abyss Irredian Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":380},{"itemId":944092,"className":"R_NECK04_119","name":"Recipe - Cevisa Irredian Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":380},{"itemId":944093,"className":"R_BRC04_119","name":"Recipe - Cevisa Irredian Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":380},{"itemId":944094,"className":"R_NECK04_120","name":"Recipe - Pyktis Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":400},{"itemId":944095,"className":"R_NECK04_121","name":"Recipe - Kantribe Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":400},{"itemId":944096,"className":"R_NECK04_122","name":"Recipe - Juoda Necklace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Neck","minLevel":400},{"itemId":944097,"className":"R_BRC04_120","name":"Recipe - Pyktis Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":400},{"itemId":944098,"className":"R_BRC04_121","name":"Recipe - Kantribe Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":400},{"itemId":944099,"className":"R_BRC04_122","name":"Recipe - Juoda Bracelet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Ring","minLevel":400},{"itemId":945002,"className":"R_Hat_628024","name":"Recipe - Nesting Chick","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":945035,"className":"R_Hat_628052","name":"Recipe - Steel Helmet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":945043,"className":"R_Hat_628043","name":"Recipe - Goat Horns","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":945044,"className":"R_Hat_628060","name":"Recipe - Red Horns","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":945048,"className":"R_Hat_628054","name":"Recipe - Kepa Doll","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":945049,"className":"R_Hat_628063","name":"Recipe - Red Devil Wings","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":945056,"className":"R_Hat_628057","name":"Recipe - White Tiger Mask","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":945058,"className":"R_Hat_628070","name":"Recipe - Feather Helmet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":945060,"className":"R_Hat_628072","name":"Recipe - Sprout","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":945069,"className":"R_Hat_628081","name":"Recipe - Ghost Headband","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":945075,"className":"R_Hat_628087","name":"Recipe - Desert Outlaw","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":945076,"className":"R_Hat_628088","name":"Recipe - Clown Cap","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":945078,"className":"R_Hat_628090","name":"Recipe - Crown Headband","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":945084,"className":"R_Hat_628096","name":"Recipe - Mint Chocolate Cupcake","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":945092,"className":"R_Hat_628104","name":"Recipe - Winter Hat","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":945095,"className":"R_Hat_628107","name":"Recipe - Boater","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":945097,"className":"R_Hat_628109","name":"Recipe - Noble Hat","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":945099,"className":"R_Hat_628131","name":"Recipe - Ritual Headress","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":945100,"className":"R_Hat_628124","name":"Recipe - Canine Head Decoration","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":945101,"className":"R_Hat_628116","name":"Recipe - Dignity Miter","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":945102,"className":"R_Hat_628117","name":"Recipe - Prestige Miter","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":945103,"className":"R_Hat_628118","name":"Recipe - Imposing Miter","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":945104,"className":"R_Hat_628123","name":"Recipe - Tribal Chief Head Decoration","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":945105,"className":"R_Hat_628001","name":"Recipe - Cat Ears ","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Hat","minLevel":1},{"itemId":946002,"className":"R_ABAND01_102","name":"Recipe - Knotted Armband","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Armband","minLevel":40},{"itemId":946004,"className":"R_ABAND01_104","name":"Recipe - Feather Armband","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Armband","minLevel":40},{"itemId":946005,"className":"R_ABAND01_105","name":"Recipe - Tasseled Armband","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Armband","minLevel":40},{"itemId":947001,"className":"R_CAN01_101","name":"Recipe - Cannon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Cannon","minLevel":220},{"itemId":947002,"className":"R_CAN01_102","name":"Recipe - Superior Cannon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Cannon","minLevel":220},{"itemId":947005,"className":"R_CAN01_105","name":"Recipe - Critti Cannon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Cannon","minLevel":220},{"itemId":947006,"className":"R_CAN01_106","name":"Recipe - Vista Cannon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Cannon","minLevel":220},{"itemId":947007,"className":"R_CAN01_107","name":"Recipe - Erera Cannon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Cannon","minLevel":220},{"itemId":947008,"className":"R_CAN01_108","name":"Recipe - Stropy Cannon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Cannon","minLevel":220},{"itemId":947009,"className":"R_CAN01_109","name":"Recipe - Agvara Cannon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Cannon","minLevel":220},{"itemId":947010,"className":"R_CAN02_103","name":"Recipe - Enhanced Vista Cannon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Cannon","minLevel":220},{"itemId":947011,"className":"R_CAN03_101","name":"Recipe - Lionhead Cannon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Cannon","minLevel":315},{"itemId":947012,"className":"R_CAN04_103","name":"Recipe - Emengard Cannon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Cannon","minLevel":315},{"itemId":947013,"className":"R_CAN04_103_Event","name":"Artisan Recipe - Emengard Cannon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Cannon","minLevel":315},{"itemId":947014,"className":"R_SHD04_105_Event","name":"Artisan Recipe - Emengard Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":315},{"itemId":947015,"className":"R_CAN04_108","name":"Recipe - Masinios Cannon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Cannon","minLevel":350},{"itemId":948001,"className":"R_AMU01_101","name":"Recipe - Demono Amulet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":948002,"className":"R_AMU01_102","name":"Recipe - Augalo Amulet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":948003,"className":"R_AMU01_103","name":"Recipe - Perejimo Amulet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":948004,"className":"R_AMU01_104","name":"Recipe - Zveries Amulet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":948005,"className":"R_AMU01_105","name":"Recipe - Vabalo Amulet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":948006,"className":"R_AMU01_106","name":"Recipe - Magijos Amulet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":948007,"className":"R_AMU01_107","name":"Recipe - Vinies Amulet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":948008,"className":"R_AMU01_108","name":"Recipe - Palemidas Amulet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":948009,"className":"R_AMU01_109","name":"Recipe - Pertraukos Amulet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":948010,"className":"R_TOP03_130","name":"Recipe - Newt Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":270},{"itemId":948011,"className":"R_LEG03_130","name":"Recipe - Newt Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":270},{"itemId":948012,"className":"R_FOOT03_130","name":"Recipe - Newt Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":270},{"itemId":948013,"className":"R_HAND03_130","name":"Recipe - Newt Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":270},{"itemId":948014,"className":"R_TOP03_131","name":"Recipe - Newt Leather Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":270},{"itemId":948015,"className":"R_LEG03_131","name":"Recipe - Newt Leather Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":270},{"itemId":948016,"className":"R_FOOT03_131","name":"Recipe - Newt Leather Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":270},{"itemId":948017,"className":"R_HAND03_131","name":"Recipe - Newt Leather Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":270},{"itemId":948018,"className":"R_TOP03_132","name":"Recipe - Newt Plate Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":270},{"itemId":948019,"className":"R_LEG03_132","name":"Recipe - Newt Plate Leggings","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":270},{"itemId":948020,"className":"R_FOOT03_132","name":"Recipe - Newt Plate Greaves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":270},{"itemId":948021,"className":"R_HAND03_132","name":"Recipe - Newt Plate Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":270},{"itemId":948022,"className":"R_TOP04_133","name":"Recipe - Laitas Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":350},{"itemId":948023,"className":"R_TOP04_134","name":"Recipe - Fietas Leather Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":350},{"itemId":948024,"className":"R_TOP04_135","name":"Recipe - Ausura Plate Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":350},{"itemId":948025,"className":"R_LEG04_133","name":"Recipe - Laitas Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":350},{"itemId":948026,"className":"R_LEG04_134","name":"Recipe - Fietas Leather Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":350},{"itemId":948027,"className":"R_LEG04_135","name":"Recipe - Ausura Plate Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":350},{"itemId":948028,"className":"R_FOOT04_136","name":"Recipe - Laitas Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":350},{"itemId":948029,"className":"R_FOOT04_137","name":"Recipe - Fietas Leather Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":350},{"itemId":948030,"className":"R_FOOT04_138","name":"Recipe - Ausura Greaves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":350},{"itemId":948031,"className":"R_HAND04_134","name":"Recipe - Laitas Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":350},{"itemId":948032,"className":"R_HAND04_135","name":"Recipe - Fietas Leather Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":350},{"itemId":948033,"className":"R_HAND04_136","name":"Recipe - Ausura Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":350},{"itemId":948034,"className":"R_TOP04_139","name":"Recipe - Ignas Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":380},{"itemId":948035,"className":"R_TOP04_140","name":"Recipe - Ignas Leather Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":380},{"itemId":948036,"className":"R_TOP04_141","name":"Recipe - Ignas Plate Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":380},{"itemId":948037,"className":"R_LEG04_139","name":"Recipe - Ignas Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":380},{"itemId":948038,"className":"R_LEG04_140","name":"Recipe - Ignas Leather Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":380},{"itemId":948039,"className":"R_LEG04_141","name":"Recipe - Ignas Plate Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":380},{"itemId":948040,"className":"R_HAND04_140","name":"Recipe - Ignas Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":380},{"itemId":948041,"className":"R_HAND04_141","name":"Recipe - Ignas Leather Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":380},{"itemId":948042,"className":"R_HAND04_142","name":"Recipe - Ignas Plate Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":380},{"itemId":948043,"className":"R_FOOT04_139","name":"Recipe - Ignas Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":380},{"itemId":948044,"className":"R_FOOT04_140","name":"Recipe - Ignas Leather Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":380},{"itemId":948045,"className":"R_FOOT04_141","name":"Recipe - Ignas Greaves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":380},{"itemId":948111,"className":"R_TOP04_145","name":"Recipe - Skiaclipse Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":400},{"itemId":948112,"className":"R_TOP04_146","name":"Recipe - Skiaclipse Leather Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":400},{"itemId":948113,"className":"R_TOP04_147","name":"Recipe - Skiaclipse Plate Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":400},{"itemId":948114,"className":"R_LEG04_145","name":"Recipe - Skiaclipse Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":400},{"itemId":948115,"className":"R_LEG04_146","name":"Recipe - Skiaclipse Leather Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":400},{"itemId":948116,"className":"R_LEG04_147","name":"Recipe - Skiaclipse Plate Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":400},{"itemId":948117,"className":"R_FOOT04_145","name":"Recipe - Skiaclipse Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":400},{"itemId":948118,"className":"R_FOOT04_146","name":"Recipe - Skiaclipse Leather Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":400},{"itemId":948119,"className":"R_FOOT04_147","name":"Recipe - Skiaclipse Greaves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":400},{"itemId":948120,"className":"R_HAND04_147","name":"Recipe - Skiaclipse Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":400},{"itemId":948121,"className":"R_HAND04_148","name":"Recipe - Skiaclipse Leather Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":400},{"itemId":948122,"className":"R_HAND04_149","name":"Recipe - Skiaclipse Plate Gauntlet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":400},{"itemId":948123,"className":"R_HAND04_150","name":"Recipe - Skiaclipse Gloves (Compassion)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":400},{"itemId":948124,"className":"R_HAND04_151","name":"Recipe - Skiaclipse Leather Gloves (Assault)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":400},{"itemId":948125,"className":"R_HAND04_152","name":"Recipe - Skiaclipse Plate Gauntlet (Iron Wall)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":400},{"itemId":948126,"className":"R_FOOT04_148","name":"Recipe - Skiaclipse Boots (Compassion)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":400},{"itemId":948127,"className":"R_FOOT04_149","name":"Recipe - Skiaclipse Leather Boots (Assault)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":400},{"itemId":948128,"className":"R_FOOT04_150","name":"Recipe - Skiaclipse Greaves (Iron Wall)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":400},{"itemId":948129,"className":"R_TOP04_148","name":"Recipe - Skiaclipse Robe (Compassion)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":400},{"itemId":948130,"className":"R_TOP04_149","name":"Recipe - Skiaclipse Leather Armor (Assault)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":400},{"itemId":948131,"className":"R_TOP04_150","name":"Recipe - Skiaclipse Plate Armor (Iron Wall)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":400},{"itemId":948132,"className":"R_LEG04_148","name":"Recipe - Skiaclipse Pants (Compassion)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":400},{"itemId":948133,"className":"R_LEG04_149","name":"Recipe - Skiaclipse Leather Pants (Assault)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":400},{"itemId":948134,"className":"R_LEG04_150","name":"Recipe - Skiaclipse Plate Pants (Iron Wall)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":400},{"itemId":948135,"className":"R_TOP04_154","name":"Recipe - Misrus Plate Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":400},{"itemId":948136,"className":"R_TOP04_155","name":"Recipe - Misrus Robe","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":400},{"itemId":948137,"className":"R_TOP04_156","name":"Recipe - Misrus Leather Armor","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":400},{"itemId":948138,"className":"R_LEG04_154","name":"Recipe - Misrus Plate Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":400},{"itemId":948139,"className":"R_LEG04_155","name":"Recipe - Misrus Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":400},{"itemId":948140,"className":"R_LEG04_156","name":"Recipe - Misrus Leather Pants","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":400},{"itemId":948141,"className":"R_FOOT04_154","name":"Recipe - Misrus Greaves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":400},{"itemId":948142,"className":"R_FOOT04_155","name":"Recipe - Misrus Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":400},{"itemId":948143,"className":"R_FOOT04_156","name":"Recipe - Misrus Leather Boots","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":400},{"itemId":948144,"className":"R_HAND04_156","name":"Recipe - Misrus Gauntlets","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":400},{"itemId":948145,"className":"R_HAND04_157","name":"Recipe - Misrus Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":400},{"itemId":948146,"className":"R_HAND04_158","name":"Recipe - Misrus Leather Gloves","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":400},{"itemId":950001,"className":"R_PRE01_101","name":"Recipe - Cardboard Cube (One-handed Sword)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":950002,"className":"R_PRE01_102","name":"Recipe - Cardboard Cube (Two-handed Sword)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":950003,"className":"R_PRE01_103","name":"Recipe - Cardboard Cube (Rod)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":950004,"className":"R_PRE01_104","name":"Recipe - Cardboard Cube (Two-handed Bow)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":950005,"className":"R_PRE01_105","name":"Recipe - Cardboard Cube (Cross Bow)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":950006,"className":"R_PRE01_106","name":"Recipe - Cardboard Cube (One-handed Blunt Weapon)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":950007,"className":"R_PRE01_107","name":"Recipe - Cardboard Cube (Shield)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":950008,"className":"R_PRE01_108","name":"Recipe - Cardboard Cube (One-handed Spear)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":950009,"className":"R_PRE01_109","name":"Recipe - Cardboard Cube (Two-handed Spear)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":950010,"className":"R_PRE01_110","name":"Recipe - Cardboard Cube (Dagger)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":950011,"className":"R_PRE01_111","name":"Recipe - Cardboard Cube (Staff)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":950012,"className":"R_PRE01_112","name":"Recipe - Cardboard Cube (Revolver)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":950013,"className":"R_PRE01_113","name":"Recipe - Cardboard Cube (Musket)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":950014,"className":"R_PRE01_114","name":"Recipe - Cardboard Cube (Cannon)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":950015,"className":"R_PRE01_115","name":"Recipe - Cardboard Cube (Rapier)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":950016,"className":"R_PRE01_116","name":"Recipe - Cardboard Cube (Two-handed Blunt Weapon)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":950052,"className":"R_SWD04_117_SMITH","name":"Artisan Recipe - Masinios Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":350},{"itemId":950053,"className":"R_TSW04_117_SMITH","name":"Artisan Recipe - Masinios Two-handed Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":350},{"itemId":950054,"className":"R_STF04_118_SMITH","name":"Artisan Recipe - Masinios Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":350},{"itemId":950055,"className":"R_TBW04_117_SMITH","name":"Artisan Recipe - Masinios Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":350},{"itemId":950056,"className":"R_BOW04_117_SMITH","name":"Artisan Recipe - Masinios Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":350},{"itemId":950057,"className":"R_MAC04_119_SMITH","name":"Artisan Recipe - Masinios Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":350},{"itemId":950058,"className":"R_TMAC04_108_SMITH","name":"Artisan Recipe - Masinios Two-handed Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THMace","minLevel":350},{"itemId":950059,"className":"R_SHD04_113_SMITH","name":"Artisan Recipe - Masinios Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":350},{"itemId":950060,"className":"R_SPR04_118_SMITH","name":"Artisan Recipe - Masinios Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":350},{"itemId":950061,"className":"R_TSP04_119_SMITH","name":"Artisan Recipe - Masinios Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":350},{"itemId":950062,"className":"R_DAG04_113_SMITH","name":"Artisan Recipe - Masinios Dagger","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":350},{"itemId":950063,"className":"R_TSF04_117_SMITH","name":"Artisan Recipe - Masinios Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":350},{"itemId":950064,"className":"R_PST04_110_SMITH","name":"Artisan Recipe - Masinios Pistol","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pistol","minLevel":350},{"itemId":950065,"className":"R_RAP04_112_SMITH","name":"Artisan Recipe - Masinios Rapier","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":350},{"itemId":950066,"className":"R_CAN04_108_SMITH","name":"Artisan Recipe - Masinios Cannon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Cannon","minLevel":350},{"itemId":950067,"className":"R_MUS04_108_SMITH","name":"Artisan Recipe - Masinios Musket","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Musket","minLevel":350},{"itemId":960000,"className":"R_TSW04_119","name":"Recipe - Wastrel Zvaigzde Two-handed Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":380},{"itemId":960001,"className":"R_TSW04_120","name":"Recipe - Asio Two-handed Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":380},{"itemId":960002,"className":"R_TBW04_119","name":"Recipe - Wastrel Zvaigzde Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":380},{"itemId":960003,"className":"R_TBW04_120","name":"Recipe - Asio Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":380},{"itemId":960004,"className":"R_TMAC04_110","name":"Recipe - Wastrel Zvaigzde Two-handed Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THMace","minLevel":380},{"itemId":960005,"className":"R_TMAC04_111","name":"Recipe - Asio Two-handed Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THMace","minLevel":380},{"itemId":960006,"className":"R_TSP04_121","name":"Recipe - Wastrel Zvaigzde Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":380},{"itemId":960007,"className":"R_TSP04_122","name":"Recipe - Asio Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":380},{"itemId":960008,"className":"R_TSF04_19","name":"Recipe - Wastrel Zvaigzde Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":380},{"itemId":960009,"className":"R_TSF04_120","name":"Recipe - Asio Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":380},{"itemId":960010,"className":"R_MUS04_110","name":"Recipe - Wastrel Zvaigzde Musket","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Musket","minLevel":380},{"itemId":960011,"className":"R_MUS04_111","name":"Recipe - Asio Musket","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Musket","minLevel":380},{"itemId":960012,"className":"R_SWD04_119","name":"Recipe - Wastrel Zvaigzde Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":380},{"itemId":960013,"className":"R_SWD04_120","name":"Recipe - Asio Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":380},{"itemId":960014,"className":"R_STF04_120","name":"Recipe - Asio Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":380},{"itemId":960015,"className":"R_STF04_121","name":"Recipe - Wastrel Zvaigzde Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":380},{"itemId":960016,"className":"R_BOW04_119","name":"Recipe - Wastrel Zvaigzde Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":380},{"itemId":960017,"className":"R_BOW04_120","name":"Recipe - Asio Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":380},{"itemId":960018,"className":"R_MAC04_121","name":"Recipe - Wastrel Zvaigzde Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":380},{"itemId":960019,"className":"R_MAC04_122","name":"Recipe - Asio Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":380},{"itemId":960020,"className":"R_SHD04_115","name":"Recipe - Wastrel Zvaigzde Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":380},{"itemId":960021,"className":"R_SHD04_116","name":"Recipe - Asio Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":380},{"itemId":960022,"className":"R_SPR04_120","name":"Recipe - Wastrel Zvaigzde Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":380},{"itemId":960023,"className":"R_SPR04_121","name":"Recipe - Asio Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":380},{"itemId":960024,"className":"R_DAG04_115","name":"Recipe - Wastrel Zvaigzde Dagger","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":380},{"itemId":960025,"className":"R_DAG04_116","name":"Recipe - Asio Dagger","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":380},{"itemId":960026,"className":"R_PST04_112","name":"Recipe - Wastrel Zvaigzde Pistol","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pistol","minLevel":380},{"itemId":960027,"className":"R_PST04_113","name":"Recipe - Asio Pistol","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pistol","minLevel":380},{"itemId":960028,"className":"R_RAP04_114","name":"Recipe - Wastrel Zvaigzde Rapier","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":380},{"itemId":960029,"className":"R_RAP04_115","name":"Recipe - Asio Rapier","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":380},{"itemId":960030,"className":"R_CAN04_110","name":"Recipe - Wastrel Zvaigzde Cannon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Cannon","minLevel":380},{"itemId":960031,"className":"R_CAN04_111","name":"Recipe - Asio Cannon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Cannon","minLevel":380},{"itemId":960032,"className":"R_SWD04_122","name":"Recipe - Skiaclipse Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":400},{"itemId":960033,"className":"R_TSW04_122","name":"Recipe - Skiaclipse Two-handed Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":400},{"itemId":960034,"className":"R_STF04_123","name":"Recipe - Skiaclipse Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":400},{"itemId":960035,"className":"R_TBW04_122","name":"Recipe - Skiaclipse Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":400},{"itemId":960036,"className":"R_BOW04_122","name":"Recipe - Skiaclipse Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":400},{"itemId":960037,"className":"R_MAC04_124","name":"Recipe - Skiaclipse Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":400},{"itemId":960038,"className":"R_TMAC04_113","name":"Recipe - Skiaclipse Two-handed Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THMace","minLevel":400},{"itemId":960039,"className":"R_SHD04_118","name":"Recipe - Skiaclipse Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":400},{"itemId":960040,"className":"R_SPR04_123","name":"Recipe - Skiaclipse Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":400},{"itemId":960041,"className":"R_TSP04_124","name":"Recipe - Skiaclipse Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":400},{"itemId":960042,"className":"R_DAG04_118","name":"Recipe - Skiaclipse Dagger","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":400},{"itemId":960043,"className":"R_TSF04_122","name":"Recipe - Skiaclipse Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":400},{"itemId":960044,"className":"R_PST04_117","name":"Recipe - Skiaclipse Pistol","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pistol","minLevel":400},{"itemId":960045,"className":"R_RAP04_119","name":"Recipe - Skiaclipse Rapier","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":400},{"itemId":960046,"className":"R_CAN04_114","name":"Recipe - Skiaclipse Cannon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Cannon","minLevel":400},{"itemId":960047,"className":"R_MUS04_114","name":"Recipe - Skiaclipse Musket","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Musket","minLevel":400},{"itemId":960048,"className":"R_MAC04_125","name":"Recipe - Skiaclipse Maul","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":400},{"itemId":960049,"className":"R_TMAC04_114","name":"Recipe - Skiaclipse Two-handed Maul","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THMace","minLevel":400},{"itemId":960050,"className":"R_TSF04_123","name":"Recipe - Skiaclipse Caster","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":400},{"itemId":960051,"className":"R_TSF04_124","name":"Recipe - Skiaclipse Rune Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":400},{"itemId":960052,"className":"R_RAP04_120","name":"Recipe - Skiaclipse Epee","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":400},{"itemId":960053,"className":"R_DAG04_119","name":"Recipe - Skiaclipse Knife","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":400},{"itemId":960054,"className":"R_SWD04_124","name":"Recipe - Misrus Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":400},{"itemId":960055,"className":"R_TSW04_124","name":"Recipe - Misrus Two-handed Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":400},{"itemId":960056,"className":"R_STF04_125","name":"Recipe - Misrus Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":400},{"itemId":960057,"className":"R_TBW04_124","name":"Recipe - Misrus Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":400},{"itemId":960058,"className":"R_BOW04_124","name":"Recipe - Misrus Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":400},{"itemId":960059,"className":"R_MAC04_127","name":"Recipe - Misrus Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":400},{"itemId":960060,"className":"R_TMAC04_116","name":"Recipe - Misrus Two-handed Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THMace","minLevel":400},{"itemId":960061,"className":"R_SHD04_120","name":"Recipe - Misrus Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":400},{"itemId":960062,"className":"R_SPR04_125","name":"Recipe - Misrus Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":400},{"itemId":960063,"className":"R_TSP04_126","name":"Recipe - Misrus Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":400},{"itemId":960064,"className":"R_DAG04_121","name":"Recipe - Misrus Dagger","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":400},{"itemId":960065,"className":"R_TSF04_127","name":"Recipe - Misrus Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":400},{"itemId":960066,"className":"R_PST04_120","name":"Recipe - Misrus Pistol","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pistol","minLevel":400},{"itemId":960067,"className":"R_RAP04_122","name":"Recipe - Misrus Rapier","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":400},{"itemId":960068,"className":"R_CAN04_116","name":"Recipe - Misrus Cannon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Cannon","minLevel":400},{"itemId":960069,"className":"R_MUS04_116","name":"Recipe - Misrus Musket","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Musket","minLevel":400},{"itemId":960070,"className":"R_TRK04_110","name":"Recipe - Misrus Trinket","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Trinket","minLevel":400},{"itemId":960071,"className":"R_TRK04_108","name":"Recipe - Skiaclipse Trinket","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Trinket","minLevel":400},{"itemId":960072,"className":"R_EP12_SWD04_001","name":"Recipe - Glacia Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":430},{"itemId":960073,"className":"R_EP12_TSW04_001","name":"Recipe - Glacia Two-handed Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":430},{"itemId":960074,"className":"R_EP12_SPR04_001","name":"Recipe - Glacia Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":430},{"itemId":960075,"className":"R_EP12_TSP04_001","name":"Recipe - Glacia Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":430},{"itemId":960076,"className":"R_EP12_MAC04_001","name":"Recipe - Glacia Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":430},{"itemId":960077,"className":"R_EP12_TMAC04_001","name":"Recipe - Glacia Two-handed Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THMace","minLevel":430},{"itemId":960078,"className":"R_EP12_TBW04_001","name":"Recipe - Glacia Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":430},{"itemId":960079,"className":"R_EP12_CAN04_001","name":"Recipe - Glacia Cannon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Cannon","minLevel":430},{"itemId":960080,"className":"R_EP12_SHD04_001","name":"Recipe - Glacia Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":430},{"itemId":960081,"className":"R_EP12_RAP04_001","name":"Recipe - Glacia Rapier","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":430},{"itemId":960082,"className":"R_EP12_DAG04_001","name":"Recipe - Glacia Dagger","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":430},{"itemId":960083,"className":"R_EP12_MUS04_001","name":"Recipe - Glacia Musket","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Musket","minLevel":430},{"itemId":960084,"className":"R_EP12_STF04_001","name":"Recipe - Glacia Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":430},{"itemId":960085,"className":"R_EP12_TSF04_001","name":"Recipe - Glacia Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":430},{"itemId":960086,"className":"R_EP12_PST04_001","name":"Recipe - Glacia Pistol","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pistol","minLevel":430},{"itemId":960087,"className":"R_EP12_BOW04_001","name":"Recipe - Glacia Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":430},{"itemId":960088,"className":"R_EP12_TRK04_001","name":"Recipe - Glacia Trinket","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Trinket","minLevel":430},{"itemId":960089,"className":"R_EP12_TOP04_004","name":"Recipe - Glacia Robe (Thaw)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":430},{"itemId":960090,"className":"R_EP12_TOP04_005","name":"Recipe - Glacia Leather Armor (First Strike)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":430},{"itemId":960091,"className":"R_EP12_TOP04_006","name":"Recipe - Glacia Plate Armor (Imperturbable)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":430},{"itemId":960092,"className":"R_EP12_LEG04_004","name":"Recipe - Glacia Pants (Thaw)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":430},{"itemId":960093,"className":"R_EP12_LEG04_005","name":"Recipe - Glacia Leather Pants (First Strike)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":430},{"itemId":960094,"className":"R_EP12_LEG04_006","name":"Recipe - Glacia Plate Pants (Imperturbable)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":430},{"itemId":960095,"className":"R_EP12_FOOT04_004","name":"Recipe - Glacia Boots (Thaw)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":430},{"itemId":960096,"className":"R_EP12_FOOT04_005","name":"Recipe - Glacia Leather Boots (First Strike)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":430},{"itemId":960097,"className":"R_EP12_FOOT04_006","name":"Recipe - Glacia Greaves (Imperturbable)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":430},{"itemId":960098,"className":"R_EP12_HAND04_004","name":"Recipe - Glacia Gloves (Thaw)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":430},{"itemId":960099,"className":"R_EP12_HAND04_005","name":"Recipe - Glacia Leather Gloves (First Strike)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":430},{"itemId":960100,"className":"R_EP12_HAND04_006","name":"Recipe - Glacia Plate Gauntlet (Imperturbable)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":430},{"itemId":960107,"className":"R_EP12_TOP04_001","name":"Recipe - Wonderous Robe (Stability)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":430},{"itemId":960108,"className":"R_EP12_TOP04_002","name":"Recipe - Wonderous Leather Armor (Courage)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":430},{"itemId":960109,"className":"R_EP12_TOP04_003","name":"Recipe - Wonderous Plate Armor (Wisdom)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":430},{"itemId":960110,"className":"R_EP12_LEG04_001","name":"Recipe - Wonderous Pants (Stability)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":430},{"itemId":960111,"className":"R_EP12_LEG04_002","name":"Recipe - Wonderous Leather Pants (Courage)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":430},{"itemId":960112,"className":"R_EP12_LEG04_003","name":"Recipe - Wonderous Plate Pants (Wisdom)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":430},{"itemId":960113,"className":"R_EP12_HAND04_001","name":"Recipe - Wonderous Gloves (Stability)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":430},{"itemId":960114,"className":"R_EP12_HAND04_002","name":"Recipe - Wonderous Leather Gloves (Courage)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":430},{"itemId":960115,"className":"R_EP12_HAND04_003","name":"Recipe - Wonderous Plate Gauntlet (Wisdom)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":430},{"itemId":960116,"className":"R_EP12_FOOT04_001","name":"Recipe - Wonderous Boots (Stability)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":430},{"itemId":960117,"className":"R_EP12_FOOT04_002","name":"Recipe - Wonderous Leather Boots (Courage)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":430},{"itemId":960118,"className":"R_EP12_FOOT04_003","name":"Recipe - Wonderous Greaves (Wisdom)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":430},{"itemId":960148,"className":"R_EP12_EVIL_TOP","name":"Recipe - Ziburynas Leather Armor - Overload Raid","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":440},{"itemId":960149,"className":"R_EP12_EVIL_LEG","name":"Recipe - Ziburynas Leather Pants - Overload Raid","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":440},{"itemId":960150,"className":"R_EP12_EVIL_FOOT","name":"Recipe - Ziburynas Leather Boots - Overload Raid","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":440},{"itemId":960151,"className":"R_EP12_EVIL_HAND","name":"Recipe - Ziburynas Leather Gloves - Overload Raid","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":440},{"itemId":960152,"className":"R_EP12_EVIL_SUMMONNER_TOP","name":"Recipe - Ziburynas Leather Armor - Harsh Imperator","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":440},{"itemId":960153,"className":"R_EP12_EVIL_SUMMONNER_LEG","name":"Recipe - Ziburynas Leather Pants - Harsh Imperator","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":440},{"itemId":960154,"className":"R_EP12_EVIL_SUMMONNER_FOOT","name":"Recipe - Ziburynas Leather Boots - Harsh Imperator","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":440},{"itemId":960155,"className":"R_EP12_EVIL_SUMMONNER_HAND","name":"Recipe - Ziburynas Leather Gloves - Harsh Imperator","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":440},{"itemId":960156,"className":"R_EP12_installation_TOP","name":"Recipe - Rumpelstiltskin Leather Armor - Reckless Gambler","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":440},{"itemId":960157,"className":"R_EP12_installation_LEG","name":"Recipe - Rumpelstiltskin Leather Pants - Reckless Gambler","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":440},{"itemId":960158,"className":"R_EP12_installation_FOOT","name":"Recipe - Rumpelstiltskin Leather Boots - Reckless Gambler","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":440},{"itemId":960159,"className":"R_EP12_installation_HAND","name":"Recipe - Rumpelstiltskin Leather Gloves - Reckless Gambler","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":440},{"itemId":960160,"className":"R_EP12_Vakarine_TOP","name":"Recipe - Vakarine Robe - Midnight Baptism","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":440},{"itemId":960161,"className":"R_EP12_Vakarine_LEG","name":"Recipe - Vakarine Pants - Midnight Baptism","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":440},{"itemId":960162,"className":"R_EP12_Vakarine_FOOT","name":"Recipe - Vakarine Boots - Midnight Baptism","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":440},{"itemId":960163,"className":"R_EP12_Vakarine_HAND","name":"Recipe - Vakarine Gloves - Midnight Baptism","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":440},{"itemId":960164,"className":"R_EP12_Zemyna_TOP","name":"Recipe - Zemyna Robe - Saint Oath","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":440},{"itemId":960165,"className":"R_EP12_Zemyna_LEG","name":"Recipe - Zemyna Pants - Saint Oath","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":440},{"itemId":960166,"className":"R_EP12_Zemyna_FOOT","name":"Recipe - Zemyna Boots - Saint Oath","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":440},{"itemId":960167,"className":"R_EP12_Zemyna_HAND","name":"Recipe - Zemyna Gloves - Saint Oath","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":440},{"itemId":960168,"className":"R_EP12_Dalia_TOP","name":"Recipe - Dahlia Robe - Infinity Blessing","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":440},{"itemId":960169,"className":"R_EP12_Dalia_LEG","name":"Recipe - Dahlia Pants - Infinity Blessing","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":440},{"itemId":960170,"className":"R_EP12_Dalia_FOOT","name":"Recipe - Dahlia Boots - Infinity Blessing","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":440},{"itemId":960171,"className":"R_EP12_Dalia_HAND","name":"Recipe - Dahlia Gloves - Infinity Blessing","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":440},{"itemId":960172,"className":"R_EP12_Gabija_TOP","name":"Recipe - Gabija Robe - Holy Flame","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":440},{"itemId":960173,"className":"R_EP12_Gabija_LEG","name":"Recipe - Gabija Pants - Holy Flame","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":440},{"itemId":960174,"className":"R_EP12_Gabija_FOOT","name":"Recipe - Gabija Boots - Holy Flame","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":440},{"itemId":960175,"className":"R_EP12_Gabija_HAND","name":"Recipe - Gabija Gloves - Holy Flame","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":440},{"itemId":960176,"className":"R_EP12_Austeja_TOP","name":"Recipe - Austeja Robe - Divine Enigma","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shirt","minLevel":440},{"itemId":960177,"className":"R_EP12_Austeja_LEG","name":"Recipe - Austeja Pants - Divine Enigma","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pants","minLevel":440},{"itemId":960178,"className":"R_EP12_Austeja_FOOT","name":"Recipe - Austeja Boots - Divine Enigma","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Boots","minLevel":440},{"itemId":960179,"className":"R_EP12_Austeja_HAND","name":"Recipe - Austeja Gloves - Divine Enigma","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Gloves","minLevel":440},{"itemId":960180,"className":"R_Ancient_boostToken_150","name":"Recipe - Assister EXP Tome + 150%","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":960181,"className":"R_Ancient_boostToken_200","name":"Recipe - Assister EXP Tome + 200%","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":960182,"className":"R_Potion_Demon_HIGH_DMG_UP","name":"Recipe - Goddess' Rage Potion: Devil x10","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":960183,"className":"R_Potion_MIX_HIGH_DMG_UP","name":"Recipe - Goddess' Rage Potion: Mutant x10","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":960184,"className":"R_Potion_Bug_HIGH_DMG_UP","name":"Recipe - Goddess' Rage Potion: Insect x10","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":960185,"className":"R_Potion_Plant_HIGH_DMG_UP","name":"Recipe - Goddess' Rage Potion: Plant x10","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":960186,"className":"R_Potion_Wild_HIGH_DMG_UP","name":"Recipe - Goddess' Rage Potion: Beast x10","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":960187,"className":"R_HPUP_Redapple","name":"Recipe - Fruit of HP Recovery x5","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":960188,"className":"R_SPUP_Blueapple","name":"Recipe - Fruit of SP Recovery x5","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":960189,"className":"R_Potion_Instance_phill","name":"Recipe - HP, SP Instant Recovery","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":960190,"className":"R_Potion_duration_Elixir","name":"Recipe - Elixir of Continuous Recovery","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":960191,"className":"R_Relic_exp_token_refine","name":"Recipe - Purified Breath of Power (x10)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":960192,"className":"R_Ticket_Mythic_Auto_Hard","name":"Recipe - Res Sacrae Raid: Auto/Solo (Hard) One Entry Voucher","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":960193,"className":"R_Dungeon_Key01_EP13","name":"Recipe - Raid Portal Stone (3ea)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":960194,"className":"R_Premium_Drug_Looting_Potion_1000","name":"Recipe - Looting Chance: 1000","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":960195,"className":"R_WeeklyBossReductionPotion_Lv2","name":"Recipe - [Weekly Boss Raid] Leticia Special Potion Lv.2","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":960196,"className":"R_Legend_Giltine_Raid_Entrance_Ticket","name":"Recipe - Demonic Sanctuary: Legend One Entry Voucher","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":960197,"className":"R_Dungeon_Key01_EP13_2","name":"Recipe - Raid Portal Stone (3ea) (Untradable)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":960198,"className":"R_Abrasive_460_NoTrade","name":"Recipe - [Lv.460] Awakening Abrasive","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":960199,"className":"R_Ticket_Vasilissa_Party_Enter_NoTrade","name":"Recipe - Saint's Sacellum: Goddess One Entry Voucher (Untradable)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":960200,"className":"R_Relic_exp_token","name":"Recipe - Breath of Power (x150)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":960201,"className":"R_Ticket_earring_470_NoTrade","name":"Recipe - Memory of Flame One Entry Voucher (Untradable)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":960202,"className":"R_Pharmacy_470_Counteractive_3","name":"Recipe - HR Toxic Neutralizer","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":960203,"className":"R_Ticket_RevivalPaulius_Party_Enter_NoTrade","name":"Recipe - Delmore Battlefield: Goddess One Entry Voucher (Untradable)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":960204,"className":"R_Ticket_RevivalPaulius_Party_Enter2_NoTrade","name":"Recipe - Delmore Battlefield: Goddess One Entry Voucher (Untradable)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":960205,"className":"R_Ticket_Vasilissa_Party_Enter2_NoTrade","name":"Recipe - Saint's Sacellum: Goddess One Entry Voucher (Untradable)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":960206,"className":"R_pilgrim_TrialsStone","name":"Recipe - [Lv.470] Stone of Trial","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":960207,"className":"R_Ticket_Jellyzele_Auto_Enter_NoTrade","name":"Recipe - Sinking Seizure (Auto/Solo) One Entry Voucher (Untradable)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":960208,"className":"R_Ticket_TurbulentCore_Auto_Enter_NoTrade","name":"Recipe - Turbulent Core (Auto/Solo) One Entry Voucher (Untradable)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":960209,"className":"R_Ticket_TurbulentCore_Party_Enter_NoTrade","name":"Recipe - Turbulent Core: Goddess One Entry Voucher (Untradable)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":960210,"className":"R_Ticket_Jellyzele_Party_Enter_NoTrade","name":"Recipe - Sinking Seizure: Goddess One Entry Voucher (Untradable)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":960211,"className":"R_Ticket_Rozethemisterable_Auto_Enter_NoTrade","name":"Recipe - Thurible of Salvation (Auto/Solo) One Entry Voucher (Untradable)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":960212,"className":"R_pilgrim_TrialsStone_490","name":"Recipe - [Lv.490] Stone of Trial","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":960213,"className":"R_common_skill_enchant_jewal_480","name":"Recipe - [Lv.480] Skill Jewel x3","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":960214,"className":"R_Ticket_BridgeWailing_Party_Enter_NoTrade","name":"Recipe - Wailing Graveyard One Entry Voucher (Untradable)","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":1010000,"className":"R_HIDDEN_BULLETMARKER_ITEM1","name":"Recipe - Frost Bullet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":1010001,"className":"R_HIDDEN_BULLETMARKER_ITEM2","name":"Recipe - Fire Bullet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":1010002,"className":"R_HIDDEN_BULLETMARKER_ITEM3","name":"Recipe - Lightning Bullet","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":1010003,"className":"R_CHAR4_20_STEP2_2","name":"Recipe - Medicine","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":1010004,"className":"R_EXORCIST_MSTEP322_ITEM","name":"Recipe - Cure","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1},{"itemId":1310000,"className":"R_SWD04_109_Steam_Event","name":"Secret Recipe - Abdochar","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":315},{"itemId":1310001,"className":"R_TSW04_109_Steam_Event","name":"Secret Recipe - Sarkmis","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":315},{"itemId":1310002,"className":"R_MAC04_111_Steam_Event","name":"Secret Recipe - Skull Smasher","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":315},{"itemId":1310003,"className":"R_TSF04_109_Steam_Event","name":"Secret Recipe - Regard Horn Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":315},{"itemId":1310004,"className":"R_STF04_110_Steam_Event","name":"Secret Recipe - Heart of Glory","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":315},{"itemId":1310005,"className":"R_TMAC04_101_Steam_Event","name":"Secret Recipe - Skull Breaker","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THMace","minLevel":315},{"itemId":1310006,"className":"R_DAG04_104_Steam_Event","name":"Secret Recipe - Emengard Dagger","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":315},{"itemId":1310007,"className":"R_SPR04_110_Steam_Event","name":"Secret Recipe - Wingshard Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":315},{"itemId":1310008,"className":"R_TSP04_111_Steam_Event","name":"Secret Recipe - Regard Horn Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":315},{"itemId":1310009,"className":"R_RAP04_106_Steam_Event","name":"Secret Recipe - Black Horn","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":315},{"itemId":1310010,"className":"R_BOW04_109_Steam_Event","name":"Secret Recipe - Regard Horn Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":315},{"itemId":1310011,"className":"R_TBW04_109_Steam_Event","name":"Secret Recipe - Astra Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":315},{"itemId":1310012,"className":"R_PST04_104_Steam_Event","name":"Secret Recipe - Aspana Revolver","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pistol","minLevel":315},{"itemId":1310013,"className":"R_MUS04_103_Steam_Event","name":"Secret Recipe - Emengard Musket","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Musket","minLevel":315},{"itemId":1310014,"className":"R_CAN04_103_Steam_Event","name":"Secret Recipe - Emengard Cannon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Cannon","minLevel":315},{"itemId":1310015,"className":"R_SHD04_105_Steam_Event","name":"Secret Recipe - Emengard Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":315},{"itemId":1310016,"className":"R_SWD04_109_Steam_Leticia","name":"Artisan Secret Recipe - Abdochar","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":315},{"itemId":1310017,"className":"R_TSW04_109_Steam_Leticia","name":"Artisan Secret Recipe - Sarkmis","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":315},{"itemId":1310018,"className":"R_MAC04_111_Steam_Leticia","name":"Artisan Secret Recipe - Skull Smasher","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":315},{"itemId":1310019,"className":"R_TSF04_109_Steam_Leticia","name":"Artisan Secret Recipe - Regard Horn Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":315},{"itemId":1310020,"className":"R_STF04_110_Steam_Leticia","name":"Artisan Secret Recipe - Heart of Glory","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":315},{"itemId":1310021,"className":"R_TMAC04_101_Steam_Leticia","name":"Artisan Secret Recipe - Skull Breaker","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THMace","minLevel":315},{"itemId":1310022,"className":"R_DAG04_104_Steam_Leticia","name":"Artisan Secret Recipe - Emengard Dagger","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":315},{"itemId":1310023,"className":"R_SPR04_110_Steam_Leticia","name":"Artisan Secret Recipe - Wingshard Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":315},{"itemId":1310024,"className":"R_TSP04_111_Steam_Leticia","name":"Artisan Secret Recipe - Regard Horn Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":315},{"itemId":1310025,"className":"R_RAP04_106_Steam_Leticia","name":"Artisan Secret Recipe - Black Horn","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":315},{"itemId":1310026,"className":"R_BOW04_109_Steam_Leticia","name":"Artisan Secret Recipe - Regard Horn Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":315},{"itemId":1310027,"className":"R_TBW04_109_Steam_Leticia","name":"Artisan Secret Recipe - Astra Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":315},{"itemId":1310028,"className":"R_PST04_104_Steam_Leticia","name":"Artisan Secret Recipe - Aspana Revolver ","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pistol","minLevel":315},{"itemId":1310029,"className":"R_CAN04_103_Steam_Leticia","name":"Artisan Secret Recipe - Emengard Cannon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Cannon","minLevel":315},{"itemId":1310030,"className":"R_MUS04_103_Steam_Leticia","name":"Artisan Secret Recipe - Emengard Musket","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Musket","minLevel":315},{"itemId":1310031,"className":"R_SHD04_105_Steam_Leticia","name":"Artisan Secret Recipe - Emengard Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":315},{"itemId":1310032,"className":"R_SWD04_119_EVENT_1812_XMAS","name":"Recipe - [Event] Wastrel Zvaigzde Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":380},{"itemId":1310033,"className":"R_TSW04_119_EVENT_1812_XMAS","name":"Recipe - [Event] Wastrel Zvaigzde Two-handed Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":380},{"itemId":1310034,"className":"R_STF04_121_EVENT_1812_XMAS","name":"Recipe - [Event] Wastrel Zvaigzde Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":380},{"itemId":1310035,"className":"R_TBW04_119_EVENT_1812_XMAS","name":"Recipe - [Event] Wastrel Zvaigzde Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":380},{"itemId":1310036,"className":"R_BOW04_119_EVENT_1812_XMAS","name":"Recipe - [Event] Wastrel Zvaigzde Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":380},{"itemId":1310037,"className":"R_MAC04_121_EVENT_1812_XMAS","name":"Recipe - [Event] Wastrel Zvaigzde Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":380},{"itemId":1310038,"className":"R_TMAC04_110_EVENT_1812_XMAS","name":"Recipe - [Event] Wastrel Zvaigzde Two-handed Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THMace","minLevel":380},{"itemId":1310039,"className":"R_SHD04_115_EVENT_1812_XMAS","name":"Recipe - [Event] Wastrel Zvaigzde Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":380},{"itemId":1310040,"className":"R_SPR04_120_EVENT_1812_XMAS","name":"Recipe - [Event] Wastrel Zvaigzde Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":380},{"itemId":1310041,"className":"R_TSP04_121_EVENT_1812_XMAS","name":"Recipe - [Event] Wastrel Zvaigzde Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":380},{"itemId":1310042,"className":"R_DAG04_115_EVENT_1812_XMAS","name":"Recipe - [Event] Wastrel Zvaigzde Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":380},{"itemId":1310043,"className":"R_TSF04_19_EVENT_1812_XMAS","name":"Recipe - [Event] Wastrel Zvaigzde Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":380},{"itemId":1310044,"className":"R_PST04_112_EVENT_1812_XMAS","name":"Recipe - [Event] Wastrel Zvaigdze Pistol","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pistol","minLevel":380},{"itemId":1310045,"className":"R_RAP04_114_EVENT_1812_XMAS","name":"Recipe - [Event] Wastrel Zvaigdze Rapier","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":380},{"itemId":1310046,"className":"R_CAN04_110_EVENT_1812_XMAS","name":"Recipe - [Event] Wastrel Zvaigdze Cannon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Cannon","minLevel":380},{"itemId":1310047,"className":"R_MUS04_110_EVENT_1812_XMAS","name":"Recipe - [Event] Wastrel Zvaigdze Musket","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Musket","minLevel":380},{"itemId":1310048,"className":"R_SWD04_120_EVENT_1812_XMAS","name":"Recipe - [Event] Asio Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Sword","minLevel":380},{"itemId":1310049,"className":"R_TSW04_120_EVENT_1812_XMAS","name":"Recipe - [Event] Asio Two-handed Sword","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSword","minLevel":380},{"itemId":1310050,"className":"R_STF04_120_EVENT_1812_XMAS","name":"Recipe - [Event] Asio Rod","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Staff","minLevel":380},{"itemId":1310051,"className":"R_TBW04_120_EVENT_1812_XMAS","name":"Recipe - [Event] Asio Bow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THBow","minLevel":380},{"itemId":1310052,"className":"R_BOW04_120_EVENT_1812_XMAS","name":"Recipe - [Event] Asio Crossbow","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Bow","minLevel":380},{"itemId":1310053,"className":"R_MAC04_122_EVENT_1812_XMAS","name":"Recipe - [Event] Asio Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Mace","minLevel":380},{"itemId":1310054,"className":"R_TMAC04_111_EVENT_1812_XMAS","name":"Recipe - [Event] Asio Two-handed Mace","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THMace","minLevel":380},{"itemId":1310055,"className":"R_SHD04_116_EVENT_1812_XMAS","name":"Recipe - [Event] Asio Shield","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Shield","minLevel":380},{"itemId":1310056,"className":"R_SPR04_121_EVENT_1812_XMAS","name":"Recipe - [Event] Asio Spear","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Spear","minLevel":380},{"itemId":1310057,"className":"R_TSP04_122_EVENT_1812_XMAS","name":"Recipe - [Event] Asio Pike","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THSpear","minLevel":380},{"itemId":1310058,"className":"R_DAG04_116_EVENT_1812_XMAS","name":"Recipe - [Event] Asio Dagger","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Dagger","minLevel":380},{"itemId":1310059,"className":"R_TSF04_120_EVENT_1812_XMAS","name":"Recipe - [Event] Asio Staff","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"THStaff","minLevel":380},{"itemId":1310060,"className":"R_PST04_113_EVENT_1812_XMAS","name":"Recipe - [Event] Asio Pistol","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Pistol","minLevel":380},{"itemId":1310061,"className":"R_RAP04_115_EVENT_1812_XMAS","name":"Recipe - [Event] Asio Rapier","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Rapier","minLevel":380},{"itemId":1310062,"className":"R_CAN04_111_EVENT_1812_XMAS","name":"Recipe - [Event] Asio Cannon","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Cannon","minLevel":380},{"itemId":1310063,"className":"R_MUS04_111_EVENT_1812_XMAS","name":"Recipe - [Event] Asio Musket","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"Musket","minLevel":380},{"itemId":1310064,"className":"R_Steam_HP_Potion_1Day","name":"Recipe - 1 Day HP Potion","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":1310065,"className":"R_Steam_HP_Potion_7Day","name":"Recipe - 7 Day HP Potion","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":1310066,"className":"R_Steam_SP_Potion_1Day","name":"Recipe - 1 Day SP Potion","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":1310067,"className":"R_Steam_SP_Potion_7Day","name":"Recipe - 7 Day SP Potion","type":"Recipe","group":"Recipe","weight":1,"maxStack":32767,"price":0,"sellPrice":0,"minLevel":1},{"itemId":11040003,"className":"Relic_Guilty","name":"Giltine's Crown of Thorns","type":"Equip","group":"Relic","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Relic","minLevel":458},{"itemId":610001,"className":"Seal_Boruta_Sword","name":"Boruta Seal - Swordsman","type":"Equip","group":"Seal","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":380,"script":{"strArg":"Boruta"}},{"itemId":610002,"className":"Seal_Boruta_Wizard","name":"Boruta Seal - Wizard","type":"Equip","group":"Seal","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":380,"script":{"strArg":"Boruta"}},{"itemId":610003,"className":"Seal_Boruta_Cleric","name":"Boruta Seal - Cleric","type":"Equip","group":"Seal","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":380,"script":{"strArg":"Boruta"}},{"itemId":610004,"className":"Seal_Boruta_Archer","name":"Boruta Seal - Archer","type":"Equip","group":"Seal","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":380,"script":{"strArg":"Boruta"}},{"itemId":610005,"className":"Seal_Boruta_Scout","name":"Boruta Seal - Scout","type":"Equip","group":"Seal","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":380,"script":{"strArg":"Boruta"}},{"itemId":611001,"className":"Seal_kaze_Sword","name":"Kaze Seal - Swordsman","type":"Equip","group":"Seal","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":350,"script":{"strArg":"kaze"}},{"itemId":611002,"className":"Seal_kaze_Wizard","name":"Kaze Seal - Wizard","type":"Equip","group":"Seal","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":350,"script":{"strArg":"kaze"}},{"itemId":611003,"className":"Seal_kaze_Cleric","name":"Kaze Seal - Cleric","type":"Equip","group":"Seal","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":350,"script":{"strArg":"kaze"}},{"itemId":611004,"className":"Seal_kaze_Archer","name":"Kaze Seal - Archer","type":"Equip","group":"Seal","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":350,"script":{"strArg":"kaze"}},{"itemId":611005,"className":"Seal_kaze_Scout","name":"Kaze Seal - Scout","type":"Equip","group":"Seal","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":350,"script":{"strArg":"kaze"}},{"itemId":613001,"className":"Seal_iredian_u_Sword","name":"Irredian Seal - Swordsman","type":"Equip","group":"Seal","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":380,"script":{"strArg":"iredian"}},{"itemId":613002,"className":"Seal_iredian_u_Wizard","name":"Irredian Seal - Wizard","type":"Equip","group":"Seal","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":380,"script":{"strArg":"iredian"}},{"itemId":613003,"className":"Seal_iredian_u_Cleric","name":"Irredian Seal - Cleric","type":"Equip","group":"Seal","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":380,"script":{"strArg":"iredian"}},{"itemId":613004,"className":"Seal_iredian_u_Archer","name":"Irredian Seal - Archer","type":"Equip","group":"Seal","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":380,"script":{"strArg":"iredian"}},{"itemId":613005,"className":"Seal_iredian_u_Scout","name":"Irredian Seal - Scout","type":"Equip","group":"Seal","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":380,"script":{"strArg":"iredian"}},{"itemId":614001,"className":"Seal_Material_Boruta","name":"Boruta Seal - Enhanced","type":"Equip","group":"Seal","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":380,"script":{"strArg":"Seal_Material"}},{"itemId":636697,"className":"PVP_Seal_Boruta_Common","name":"Boruta Seal - Common (20 minutes)","type":"Equip","group":"Seal","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":1,"script":{"strArg":"pvp_Mine"}},{"itemId":11040001,"className":"Seal_Boruta_Common","name":"Boruta Seal - Common","type":"Equip","group":"Seal","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":380,"script":{"strArg":"Boruta"}},{"itemId":11040020,"className":"Seal_2021_NewYear","name":"2021 Botanic Seal","type":"Equip","group":"Seal","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":1,"script":{"strArg":"2021NewYear"}},{"itemId":11100049,"className":"Seal_jurate","name":"Jurate Seal - Punisher","type":"Equip","group":"Seal","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":480,"script":{"strArg":"Boruta"}},{"itemId":11100050,"className":"Seal_jurate_def","name":"Jurate Seal - Protection","type":"Equip","group":"Seal","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":480,"script":{"strArg":"Boruta"}},{"itemId":11100051,"className":"Seal_jurate2","name":"Jurate Seal (Advanced) - Punisher","type":"Equip","group":"Seal","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":480,"script":{"strArg":"Boruta"}},{"itemId":11100052,"className":"Seal_jurate2_def","name":"Jurate Seal (Advanced) - Protection","type":"Equip","group":"Seal","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":480,"script":{"strArg":"Boruta"}},{"itemId":11100053,"className":"Seal_jurate3","name":"Jurate Seal (Superior) - Punisher","type":"Equip","group":"Seal","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":480,"script":{"strArg":"Boruta"}},{"itemId":11100054,"className":"Seal_jurate3_def","name":"Jurate Seal (Superior) - Protection","type":"Equip","group":"Seal","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Seal","minLevel":480,"script":{"strArg":"Boruta"}},{"itemId":11100047,"className":"EP14_fierce_shoulder","name":"Spaulder of Ferocity","type":"Equip","group":"SHOULDER","weight":125,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"SHOULDER","minLevel":480,"script":{"strArg":"piece_fierce_shoulder","numArg1":4}},{"itemId":11100048,"className":"EP14_fierce_shoulder_high","name":"Advanced Spaulder of Ferocity","type":"Equip","group":"SHOULDER","weight":125,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"SHOULDER","minLevel":480,"script":{"strArg":"piece_fierce_shoulder","numArg1":20}},{"itemId":11100059,"className":"NoTrade_EP14_fierce_shoulder_high","name":"[Event] Advanced Spaulder of Ferocity","type":"Equip","group":"SHOULDER","weight":125,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"SHOULDER","minLevel":480,"script":{"strArg":"piece_fierce_shoulder","numArg1":20}},{"itemId":649032,"className":"misc_thierrynium","name":"Thierrynium","type":"Etc","group":"SpecialMaterial","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1},{"itemId":649033,"className":"misc_mothstone","name":"Violetin Crystal","type":"Etc","group":"SpecialMaterial","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1},{"itemId":649034,"className":"misc_low_mothstone","name":"Violetin Crystal Fragment","type":"Etc","group":"SpecialMaterial","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1},{"itemId":649035,"className":"misc_thierrynium_NoTrade","name":"Refined Thierrynium","type":"Etc","group":"SpecialMaterial","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1},{"itemId":649036,"className":"misc_mothstone_NoTrade","name":"Refined Violetin Crystal","type":"Etc","group":"SpecialMaterial","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"minLevel":1},{"itemId":11030009,"className":"goddess_misc","name":"Complete Piece of Divine Power","type":"Consume","group":"SpecialMaterial","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"GODDESS_ARMOR","numArg1":2}},{"itemId":11030010,"className":"misc_archenium","name":"Arquenium","type":"Etc","group":"SpecialMaterial","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030018,"className":"Vibora_misc_Lv2","name":"Transmutor","type":"Etc","group":"SpecialMaterial","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"UpgadeVibora","numArg1":2}},{"itemId":11030030,"className":"misc_luferium","name":"Luperium","type":"Etc","group":"SpecialMaterial","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030036,"className":"misc_Ectonite","name":"Ectonite","type":"Consume","group":"SpecialMaterial","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":10}},{"itemId":11030037,"className":"Relic_exp_token","name":"Breath of Power","type":"Consume","group":"SpecialMaterial","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":10}},{"itemId":11030042,"className":"vakarine_card_reinforce","name":"Token of Faith - Vakarine","type":"Consume","group":"SpecialMaterial","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"vakarine_card_reinforce_misc_1/1;vakarine_card_reinforce_misc_2/1;vakarine_card_reinforce_misc_3/1;vakarine_card_reinforce_misc_4/1;"}},{"itemId":11030043,"className":"lada_card_reinforce","name":"Token of Faith - Lada","type":"Consume","group":"SpecialMaterial","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"lada_card_reinforce_misc_1/1;lada_card_reinforce_misc_2/1;lada_card_reinforce_misc_3/1;lada_card_reinforce_misc_4/1;"}},{"itemId":11030044,"className":"saule_card_reinforce","name":"Token of Faith - Saule","type":"Consume","group":"SpecialMaterial","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"saule_card_reinforce_misc_1/1;saule_card_reinforce_misc_2/1;saule_card_reinforce_misc_3/1;saule_card_reinforce_misc_4/1;"}},{"itemId":11030045,"className":"austeja_card_reinforce","name":"Token of Faith - Austeja","type":"Consume","group":"SpecialMaterial","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"austeja_card_reinforce_misc_1/1;austeja_card_reinforce_misc_2/1;austeja_card_reinforce_misc_3/1;austeja_card_reinforce_misc_4/1;"}},{"itemId":11030046,"className":"dalia_card_reinforce","name":"Token of Faith - Dahlia","type":"Consume","group":"SpecialMaterial","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"dalia_card_reinforce_misc_1/1;dalia_card_reinforce_misc_2/1;dalia_card_reinforce_misc_3/1;dalia_card_reinforce_misc_4/1;"}},{"itemId":11030073,"className":"goddess_reinforce_misc","name":"Token of Follower","type":"Consume","group":"SpecialMaterial","weight":1,"maxStack":32767,"price":10,"sellPrice":10,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030085,"className":"Relic_exp_token_refine","name":"Purified Breath of Power","type":"Consume","group":"SpecialMaterial","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":10}},{"itemId":11030088,"className":"misc_Relic_Gem","name":"Prism Coal","type":"Consume","group":"SpecialMaterial","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":10}},{"itemId":11030107,"className":"misc_Ectonite_NoTrade","name":"Unstable Ectonite (3 Days)","type":"Consume","group":"SpecialMaterial","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":10}},{"itemId":11030118,"className":"Relic_exp_refine_conversion","name":"Breath of Power Purifier","type":"Consume","group":"SpecialMaterial","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":10}},{"itemId":11030120,"className":"Relic_exp_token_refine_Trade","name":"Purified Breath of Power","type":"Consume","group":"SpecialMaterial","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":10}},{"itemId":11030130,"className":"Relic_gem_upgrade_token","name":"Res Sacrae Gem Catalyst","type":"Consume","group":"SpecialMaterial","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":1000000,"numArg2":1}},{"itemId":11030238,"className":"misc_archenium_NoTrade","name":"Refined Arquenium","type":"Etc","group":"SpecialMaterial","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030239,"className":"misc_luferium_NoTrade","name":"Refined Luperium","type":"Etc","group":"SpecialMaterial","weight":1,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1},{"itemId":11030451,"className":"misc_Ectonite_Care","name":"Ectonite","type":"Consume","group":"SpecialMaterial","weight":0,"maxStack":999999,"price":0,"sellPrice":0,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"numArg1":10}},{"itemId":699038,"className":"SubExpOrb","name":"[Lv.450] EXP Essence","type":"Etc","group":"SubExpOrb","weight":5,"maxStack":1,"price":1000000,"sellPrice":10,"minLevel":1,"script":{"strArg":"SubExpOrb_complete","numArg1":2000000000}},{"itemId":699039,"className":"SubExpOrb_complete","name":"[Lv.450] Charged EXP Essence","type":"Etc","group":"SubExpOrb","weight":10,"maxStack":32767,"price":1000000,"sellPrice":10,"minLevel":430,"script":{"function":"SCR_USE_ITEM_SUB_EXP_ORB","numArg1":2000000000,"numArg2":449}},{"itemId":11030228,"className":"SubExpOrb_460","name":"[Lv.460] EXP Essence","type":"Etc","group":"SubExpOrb","weight":5,"maxStack":1,"price":1000000,"sellPrice":1,"equipType1":"None","equipType2":"None","minLevel":1,"script":{"strArg":"SubExpOrb_460_complete","numArg1":2000000000}},{"itemId":11030229,"className":"SubExpOrb_460_complete","name":"[Lv.460] Charged EXP Essence","type":"Etc","group":"SubExpOrb","weight":10,"maxStack":32767,"price":1000000,"sellPrice":10,"equipType1":"None","equipType2":"None","minLevel":440,"script":{"function":"SCR_USE_ITEM_SUB_EXP_ORB","numArg1":2000000000,"numArg2":459}},{"itemId":11101,"className":"ABAND01_101","name":"Red Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":40},{"itemId":11102,"className":"ABAND01_102","name":"Knotted Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":40},{"itemId":11103,"className":"ABAND01_103","name":"Long Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":40},{"itemId":11104,"className":"ABAND01_104","name":"Feather Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":40},{"itemId":11105,"className":"ABAND01_105","name":"Tasseled Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":40},{"itemId":11106,"className":"ABAND01_106","name":"Beginning of Savior Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11107,"className":"ABAND01_107","name":"Chief Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":40},{"itemId":11108,"className":"ABAND01_108","name":"Silver Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":40},{"itemId":11109,"className":"ABAND01_109","name":"Diamond Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":40},{"itemId":11110,"className":"ABAND01_110","name":"Alcohol Decoration Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":40},{"itemId":11111,"className":"ABAND01_111","name":"Shaman Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":40},{"itemId":11112,"className":"ABAND01_112","name":"Orient Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":40},{"itemId":11113,"className":"ABAND01_113","name":"Golden Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11114,"className":"ABAND01_114","name":"Leaf Pattern Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":40},{"itemId":11115,"className":"ABAND01_115","name":"Dragonfly Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":40},{"itemId":11116,"className":"ABAND01_116","name":"Feelings Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":40},{"itemId":11117,"className":"ABAND01_117","name":"Ribbon Arm Band","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":40},{"itemId":11118,"className":"ABAND01_118","name":"Thumbup Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":40},{"itemId":11119,"className":"ABAND01_119","name":"Guild Battle 1st Place Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":40},{"itemId":11120,"className":"ABAND01_120","name":"Guild Battle 2nd Place Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":40},{"itemId":11121,"className":"ABAND01_121","name":"Guild Battle 3rd Place Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":40},{"itemId":11122,"className":"ABAND01_122","name":"Class President Arm Band","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11123,"className":"ABAND01_123","name":"Skull Arm Band","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11124,"className":"ABAND01_124","name":"Bunnies Arm Band","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11125,"className":"ABAND01_125","name":"White Nurse Arm Band","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11126,"className":"ABAND01_126","name":"G9 Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11127,"className":"ABAND01_127","name":"Dionys Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11128,"className":"ABAND01_128","name":"TOS Specialty Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11129,"className":"ABAND01_129","name":"Golden Pup Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11130,"className":"ABAND01_130","name":"Steam 2nd Anniversary Arm Band","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11131,"className":"ABAND01_119_COLONY_30","name":"Territory Wars Tester Armband (30days)","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":40},{"itemId":11132,"className":"ABAND01_119_COLONY_90","name":"Territory Wars Tester Armband (90days)","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":40},{"itemId":11133,"className":"ABAND01_131","name":"Guild Lovers Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11134,"className":"ABAND01_132","name":"Captain Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11135,"className":"ABAND01_133","name":"Supporters Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11136,"className":"ABAND01_134","name":"Astral Tower Hero Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11137,"className":"ABAND01_130_THA","name":"1st Anniversary Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11138,"className":"ABAND01_138","name":"Conqueror Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11139,"className":"ABAND01_139","name":"Conqueror Armband (1 Day)","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11140,"className":"ABAND01_140","name":"Giltine Follower Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11141,"className":"ABAND01_141","name":"Goddess' Savior Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11142,"className":"ABAND01_142","name":"Baby Chick Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11143,"className":"ABAND01_143","name":"Popolion Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11144,"className":"ABAND01_144","name":"Black Bear Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11145,"className":"GLOBAL_THA_ABAND01_141","name":"Goddess' Savior Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11146,"className":"ABAND01_146","name":"Grumpy Bear Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11147,"className":"ABAND01_147","name":"Rudolf Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11148,"className":"ABAND01_148","name":"Flower Deer Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11149,"className":"ABAND01_149","name":"[Event] Blue Ribbon Armband of Security","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11150,"className":"ABAND01_148_kor","name":"Flower Deer Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":11151,"className":"ABAND01_126_silver","name":"Sprout of the World Armband","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":111001,"className":"DAG01_101","name":"Knife","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":15520,"sellPrice":1862,"equipType1":"Dagger","minLevel":120,"minAtk":847,"maxAtk":994},{"itemId":111002,"className":"DAG01_102","name":"Superior Knife","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":15520,"sellPrice":2582,"equipType1":"Dagger","minLevel":120,"minAtk":847,"maxAtk":994},{"itemId":111003,"className":"DAG01_103","name":"Dirk Dagger","type":"Equip","group":"SubWeapon","weight":100,"maxStack":1,"price":15520,"sellPrice":2601,"equipType1":"Dagger","minLevel":120,"minAtk":847,"maxAtk":994},{"itemId":111004,"className":"DAG01_104","name":"Superior Dirk Dagger","type":"Equip","group":"SubWeapon","weight":100,"maxStack":1,"price":24252,"sellPrice":2930,"equipType1":"Dagger","minLevel":170,"minAtk":1189,"maxAtk":1395},{"itemId":111005,"className":"DAG01_105","name":"Main Gauche","type":"Equip","group":"SubWeapon","weight":80,"maxStack":1,"price":24252,"sellPrice":3900,"equipType1":"Dagger","minLevel":170,"minAtk":1189,"maxAtk":1395},{"itemId":111006,"className":"DAG01_106","name":"Superior Main Gauche","type":"Equip","group":"SubWeapon","weight":80,"maxStack":1,"price":24252,"sellPrice":3920,"equipType1":"Dagger","minLevel":170,"minAtk":1189,"maxAtk":1395},{"itemId":111007,"className":"DAG01_107","name":"Yorgis Knife","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":15520,"sellPrice":1638,"equipType1":"Dagger","minLevel":120,"minAtk":847,"maxAtk":994},{"itemId":111008,"className":"DAG01_108","name":"Chura","type":"Equip","group":"SubWeapon","weight":80,"maxStack":1,"price":32673,"sellPrice":3955,"equipType1":"Dagger","minLevel":220,"minAtk":1530,"maxAtk":1796},{"itemId":111009,"className":"DAG01_109","name":"Superior Chura","type":"Equip","group":"SubWeapon","weight":80,"maxStack":1,"price":32673,"sellPrice":4780,"equipType1":"Dagger","minLevel":220,"minAtk":1530,"maxAtk":1796},{"itemId":111010,"className":"DAG01_110","name":"(Faded) Replica Migantis Dagger","type":"Equip","group":"SubWeapon","weight":100,"maxStack":1,"price":64000,"sellPrice":5000,"equipType1":"Dagger","minLevel":270,"minAtk":1872,"maxAtk":2197},{"itemId":111011,"className":"DAG01_111","name":"(Faded) Replica Pevordimas Dagger","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":96000,"sellPrice":5000,"equipType1":"Dagger","minLevel":315,"minAtk":2179,"maxAtk":2558},{"itemId":111012,"className":"DAG01_112","name":"Practice Knife","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Dagger","minLevel":120,"minAtk":847,"maxAtk":994},{"itemId":111013,"className":"DAG01_113","name":"Training Kris Dagger","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40},{"itemId":111014,"className":"DAG01_114","name":"Stiletto","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":2880,"sellPrice":150,"equipType1":"Dagger","minLevel":15,"minAtk":130,"maxAtk":152},{"itemId":111015,"className":"DAG01_115","name":"Blue Stiletto","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":3640,"sellPrice":210,"equipType1":"Dagger","minLevel":40,"minAtk":301,"maxAtk":353},{"itemId":111999,"className":"DAG01_999","name":"Standard Dagger","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":15520,"sellPrice":4953,"equipType1":"Dagger","minLevel":120,"minAtk":847,"maxAtk":994},{"itemId":112001,"className":"DAG02_101","name":"Blood Dagger","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":32673,"sellPrice":4800,"equipType1":"Dagger","minLevel":220,"minAtk":1700,"maxAtk":1996},{"itemId":112002,"className":"DAG02_102","name":"(Faded) Migantis Dagger","type":"Equip","group":"SubWeapon","weight":100,"maxStack":1,"price":40000,"sellPrice":5000,"equipType1":"Dagger","minLevel":270,"minAtk":2080,"maxAtk":2441},{"itemId":112003,"className":"DAG02_103","name":"(Faded) Pevordimas Dagger","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":48800,"sellPrice":5000,"equipType1":"Dagger","minLevel":315,"minAtk":2421,"maxAtk":2842},{"itemId":112004,"className":"DAG02_104","name":"Short Duelist","type":"Equip","group":"SubWeapon","weight":85,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Dagger","minLevel":120,"minAtk":941,"maxAtk":1105},{"itemId":112005,"className":"DAG02_105","name":"Small Crystaras","type":"Equip","group":"SubWeapon","weight":94,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Dagger","minLevel":170,"minAtk":1321,"maxAtk":1550},{"itemId":112006,"className":"DAG02_106","name":"Sketis Dagger","type":"Equip","group":"SubWeapon","weight":95,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Dagger","minLevel":75,"minAtk":600,"maxAtk":704},{"itemId":112007,"className":"DAG02_107","name":"Pajoritas Dagger","type":"Equip","group":"SubWeapon","weight":105,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Dagger","minLevel":220,"minAtk":1700,"maxAtk":1996},{"itemId":112008,"className":"DAG02_108","name":"Migantis Dagger","type":"Equip","group":"SubWeapon","weight":100,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Dagger","minLevel":270,"minAtk":2080,"maxAtk":2441},{"itemId":112009,"className":"DAG02_109","name":"Pevordimas Dagger","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Dagger","minLevel":315,"minAtk":2421,"maxAtk":2842},{"itemId":112010,"className":"DAG02_110","name":"Raffye Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Dagger","minLevel":350,"minAtk":2687,"maxAtk":3154},{"itemId":112011,"className":"DAG02_111","name":"Zvaigzde Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Dagger","minLevel":380,"minAtk":2915,"maxAtk":3421},{"itemId":112012,"className":"DAG02_112","name":"Legva Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Dagger","minLevel":400,"minAtk":3066,"maxAtk":3600},{"itemId":113001,"className":"DAG03_101","name":"Arde Dagger","type":"Equip","group":"SubWeapon","weight":85,"maxStack":1,"price":8583,"sellPrice":345,"equipType1":"Dagger","minLevel":75,"minAtk":660,"maxAtk":774,"fireRes":-38},{"itemId":113002,"className":"DAG03_102","name":"Karacha Dagger","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":24252,"sellPrice":3900,"equipType1":"Dagger","minLevel":170,"minAtk":1453,"maxAtk":1705,"fireRes":-38},{"itemId":113005,"className":"DAG03_105","name":"Lionhead Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":48800,"sellPrice":7753,"equipType1":"Dagger","minLevel":315,"minAtk":2663,"maxAtk":3127,"iceRes":-15},{"itemId":113301,"className":"DAG03_301","name":"(Faded) Short Duelist","type":"Equip","group":"SubWeapon","weight":85,"maxStack":1,"price":15520,"sellPrice":1638,"equipType1":"Dagger","minLevel":120,"minAtk":1035,"maxAtk":1215,"addMaxAtk":42},{"itemId":113302,"className":"DAG03_302","name":"(Faded) Small Crystaras","type":"Equip","group":"SubWeapon","weight":94,"maxStack":1,"price":24252,"sellPrice":2128,"equipType1":"Dagger","minLevel":170,"minAtk":1453,"maxAtk":1705,"soulRes":-42},{"itemId":113303,"className":"DAG03_303","name":"(Faded) Sketis Dagger","type":"Equip","group":"SubWeapon","weight":95,"maxStack":1,"price":8583,"sellPrice":907,"equipType1":"Dagger","minLevel":75,"minAtk":660,"maxAtk":774,"soulRes":-60},{"itemId":113304,"className":"DAG03_304","name":"(Faded) Pajoritas Dagger","type":"Equip","group":"SubWeapon","weight":105,"maxStack":1,"price":32673,"sellPrice":3920,"equipType1":"Dagger","minLevel":220,"minAtk":1870,"maxAtk":2195,"soulRes":-120},{"itemId":113305,"className":"DAG03_305","name":"(Faded) Purine Migantis Dagger","type":"Equip","group":"SubWeapon","weight":100,"maxStack":1,"price":40000,"sellPrice":5000,"equipType1":"Dagger","minLevel":270,"minAtk":2288,"maxAtk":2685},{"itemId":113306,"className":"DAG03_306","name":"(Faded) Purine Pevordimas Dagger","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":48800,"sellPrice":5000,"equipType1":"Dagger","minLevel":315,"minAtk":2663,"maxAtk":3127},{"itemId":113307,"className":"DAG03_307","name":"Berthas Short Duelist","type":"Equip","group":"SubWeapon","weight":85,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Dagger","minLevel":120,"minAtk":1035,"maxAtk":1215},{"itemId":113308,"className":"DAG03_308","name":"Berthas Small Crystaras","type":"Equip","group":"SubWeapon","weight":94,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Dagger","minLevel":170,"minAtk":1453,"maxAtk":1705},{"itemId":113309,"className":"DAG03_309","name":"Berthas Sketis Dagger","type":"Equip","group":"SubWeapon","weight":95,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Dagger","minLevel":75,"minAtk":660,"maxAtk":774},{"itemId":113310,"className":"DAG03_310","name":"Berthas Pajoritas Dagger","type":"Equip","group":"SubWeapon","weight":105,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Dagger","minLevel":220,"minAtk":1870,"maxAtk":2195},{"itemId":113311,"className":"DAG03_311","name":"Berthas Migantis Dagger","type":"Equip","group":"SubWeapon","weight":100,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Dagger","minLevel":270,"minAtk":2288,"maxAtk":2685},{"itemId":113312,"className":"DAG03_312","name":"Berthas Pevordimas Dagger","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Dagger","minLevel":315,"minAtk":2663,"maxAtk":3127},{"itemId":113313,"className":"DAG03_313","name":"Berthas Raffye Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Dagger","minLevel":350,"minAtk":2956,"maxAtk":3470},{"itemId":113314,"className":"DAG03_314","name":"Berthas Zvaigzde Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Dagger","minLevel":380,"minAtk":3206,"maxAtk":3764},{"itemId":113315,"className":"DAG03_315","name":"Berthas Legva Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Dagger","minLevel":400,"minAtk":3373,"maxAtk":3960},{"itemId":113316,"className":"DAG03_316","name":"Berthas Dysnai Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Dagger","minLevel":430,"minAtk":3623,"maxAtk":4254},{"itemId":114001,"className":"DAG04_101","name":"Venom","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":24252,"sellPrice":2601,"equipType1":"Dagger","minLevel":170,"minAtk":1651,"maxAtk":1938},{"itemId":114002,"className":"DAG04_102","name":"Lolopanther Dagger","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":40000,"sellPrice":5856,"equipType1":"Dagger","minLevel":270,"minAtk":3327,"maxAtk":3906},{"itemId":114003,"className":"DAG04_103","name":"Solmiki Dagger","type":"Equip","group":"SubWeapon","weight":95,"maxStack":1,"price":48800,"sellPrice":7771,"equipType1":"Dagger","minLevel":330,"minAtk":4056,"maxAtk":4762},{"itemId":114004,"className":"DAG04_104","name":"Emengard Dagger","type":"Equip","group":"SubWeapon","weight":75,"maxStack":1,"price":48800,"sellPrice":8868,"equipType1":"Dagger","minLevel":315,"minAtk":3027,"maxAtk":3553},{"itemId":114005,"className":"DAG04_105","name":"Blood Stealer","type":"Equip","group":"SubWeapon","weight":62,"maxStack":1,"price":48800,"sellPrice":10629,"equipType1":"Dagger","minLevel":330,"minAtk":3169,"maxAtk":3720,"addDef":-115,"addMDef":-115},{"itemId":114006,"className":"DAG04_106","name":"Primus Short Duelist","type":"Equip","group":"SubWeapon","weight":85,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Dagger","minLevel":120,"minAtk":1176,"maxAtk":1381},{"itemId":114007,"className":"DAG04_107","name":"Primus Small Crystaras","type":"Equip","group":"SubWeapon","weight":94,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Dagger","minLevel":170,"minAtk":1651,"maxAtk":1938},{"itemId":114008,"className":"DAG04_108","name":"Primus Sketis Dagger","type":"Equip","group":"SubWeapon","weight":95,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Dagger","minLevel":75,"minAtk":750,"maxAtk":880},{"itemId":114009,"className":"DAG04_109","name":"Primus Pajoritas Dagger","type":"Equip","group":"SubWeapon","weight":105,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Dagger","minLevel":220,"minAtk":2125,"maxAtk":2495},{"itemId":114010,"className":"DAG04_110","name":"Primus Migantis Dagger","type":"Equip","group":"SubWeapon","weight":100,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Dagger","minLevel":270,"minAtk":2600,"maxAtk":3052},{"itemId":114011,"className":"DAG04_111","name":"Primus Pevordimas Dagger","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Dagger","minLevel":315,"minAtk":3027,"maxAtk":3553},{"itemId":114012,"className":"DAG04_112","name":"Primus Raffye Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Dagger","minLevel":350,"minAtk":3359,"maxAtk":3943},{"itemId":114013,"className":"DAG04_113","name":"Masinios Dagger","type":"Equip","group":"SubWeapon","weight":100,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Dagger","minLevel":350,"minAtk":3359,"maxAtk":3943},{"itemId":114014,"className":"DAG04_114","name":"Primus Zvaigzde Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Dagger","minLevel":380,"minAtk":3643,"maxAtk":4277},{"itemId":114015,"className":"DAG04_115","name":"Wastrel Zvaigzde Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Dagger","minLevel":380,"minAtk":3643,"maxAtk":4277},{"itemId":114016,"className":"DAG04_116","name":"Asio Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Dagger","minLevel":380,"minAtk":3643,"maxAtk":4277},{"itemId":114017,"className":"DAG04_117","name":"Primus Legva Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Dagger","minLevel":400,"minAtk":3833,"maxAtk":4500},{"itemId":114018,"className":"DAG04_118","name":"Skiaclipse Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Dagger","minLevel":400,"minAtk":3833,"maxAtk":4500},{"itemId":114019,"className":"DAG04_119","name":"Skiaclipse Knife","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Dagger","minLevel":400,"minAtk":3833,"maxAtk":4500},{"itemId":114020,"className":"DAG04_120","name":"Moringponia Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Dagger","minLevel":400,"minAtk":3833,"maxAtk":4500,"addMaxAtk":296},{"itemId":114021,"className":"DAG04_121","name":"Misrus Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Dagger","minLevel":400,"minAtk":3833,"maxAtk":4500},{"itemId":114022,"className":"DAG04_122","name":"Primus Dysnai Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Dagger","minLevel":430,"minAtk":4118,"maxAtk":4834},{"itemId":115101,"className":"DAG05_101","name":"Velcoffer Dagger","type":"Equip","group":"SubWeapon","weight":100,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Dagger","minLevel":360,"minAtk":4420,"maxAtk":5189},{"itemId":115102,"className":"DAG05_102","name":"Velcoffer Dagger","type":"Equip","group":"SubWeapon","weight":100,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Dagger","minLevel":360,"minAtk":4420,"maxAtk":5189},{"itemId":115103,"className":"DAG05_103","name":"Savinose Legva Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Dagger","minLevel":400,"minAtk":4906,"maxAtk":5759},{"itemId":115104,"className":"DAG05_104","name":"Skiaclipse Varna Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Dagger","minLevel":400,"minAtk":4906,"maxAtk":5759},{"itemId":301101,"className":"PST01_101","name":"Revolver","type":"Equip","group":"SubWeapon","weight":140,"maxStack":1,"price":24252,"sellPrice":2930,"equipType1":"Pistol","equipType2":"Gun","minLevel":170,"minAtk":1189,"maxAtk":1395},{"itemId":301102,"className":"PST01_102","name":"Snaphance","type":"Equip","group":"SubWeapon","weight":140,"maxStack":1,"price":24252,"sellPrice":3900,"equipType1":"Pistol","equipType2":"Gun","minLevel":170,"minAtk":1189,"maxAtk":1395},{"itemId":301103,"className":"PST01_103","name":"Long Pistol","type":"Equip","group":"SubWeapon","weight":140,"maxStack":1,"price":24252,"sellPrice":3920,"equipType1":"Pistol","equipType2":"Gun","minLevel":170,"minAtk":1189,"maxAtk":1395},{"itemId":301104,"className":"PST01_104","name":"Training Revolver","type":"Equip","group":"SubWeapon","weight":140,"maxStack":1,"price":24252,"sellPrice":2601,"equipType1":"Pistol","equipType2":"Gun","minLevel":170,"minAtk":1189,"maxAtk":1395},{"itemId":301105,"className":"PST01_105","name":"Royal Pistol","type":"Equip","group":"SubWeapon","weight":130,"maxStack":1,"price":32673,"sellPrice":3955,"equipType1":"Pistol","equipType2":"Gun","minLevel":220,"minAtk":1530,"maxAtk":1796},{"itemId":301106,"className":"PST01_106","name":"Superior Royal Pistol","type":"Equip","group":"SubWeapon","weight":130,"maxStack":1,"price":32673,"sellPrice":4780,"equipType1":"Pistol","equipType2":"Gun","minLevel":220,"minAtk":1530,"maxAtk":1796},{"itemId":301107,"className":"PST01_107","name":"(Faded) Replica Migantis Pistol","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":64000,"sellPrice":5000,"equipType1":"Pistol","equipType2":"Gun","minLevel":270,"minAtk":1872,"maxAtk":2197},{"itemId":301108,"className":"PST01_108","name":"(Faded) Replica Pevordimas Pistol","type":"Equip","group":"SubWeapon","weight":110,"maxStack":1,"price":96000,"sellPrice":5000,"equipType1":"Pistol","equipType2":"Gun","minLevel":315,"minAtk":2179,"maxAtk":2558},{"itemId":301109,"className":"PST01_109","name":"Practice Pistol","type":"Equip","group":"SubWeapon","weight":140,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":170,"minAtk":1189,"maxAtk":1395},{"itemId":301110,"className":"PST01_110","name":"Practice Pistol","type":"Equip","group":"SubWeapon","weight":140,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":270,"minAtk":1872,"maxAtk":2197},{"itemId":301111,"className":"PST01_111","name":"Practice Pistol","type":"Equip","group":"SubWeapon","weight":140,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40},{"itemId":301112,"className":"PST01_112","name":"Dunkel Pistol","type":"Equip","group":"SubWeapon","weight":140,"maxStack":1,"price":300,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":15,"minAtk":130,"maxAtk":152},{"itemId":301113,"className":"PST01_113","name":"Dunkel Wooden Pistol","type":"Equip","group":"SubWeapon","weight":140,"maxStack":1,"price":500,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":40,"minAtk":301,"maxAtk":353},{"itemId":301114,"className":"PST01_114","name":"Dunkel Raudona Wooden Pistol","type":"Equip","group":"SubWeapon","weight":140,"maxStack":1,"price":800,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":75,"minAtk":540,"maxAtk":634},{"itemId":302101,"className":"PST02_101","name":"Superior Aston Pistol","type":"Equip","group":"SubWeapon","weight":140,"maxStack":1,"price":24252,"sellPrice":2930,"equipType1":"Pistol","equipType2":"Gun","minLevel":170,"minAtk":1321,"maxAtk":1550},{"itemId":302102,"className":"PST02_102","name":"Devi Pistol","type":"Equip","group":"SubWeapon","weight":140,"maxStack":1,"price":24252,"sellPrice":3920,"equipType1":"Pistol","equipType2":"Gun","minLevel":170,"minAtk":1321,"maxAtk":1550},{"itemId":302103,"className":"PST02_103","name":"Handgun","type":"Equip","group":"SubWeapon","weight":140,"maxStack":1,"price":24252,"sellPrice":3920,"equipType1":"Pistol","equipType2":"Gun","minLevel":170,"minAtk":1321,"maxAtk":1550},{"itemId":302104,"className":"PST02_104","name":"Istora Revolver","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":24252,"sellPrice":2601,"equipType1":"Pistol","equipType2":"Gun","minLevel":170,"minAtk":1321,"maxAtk":1550},{"itemId":302105,"className":"PST02_105","name":"Vienie Revolver","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":32673,"sellPrice":4780,"equipType1":"Pistol","equipType2":"Gun","minLevel":220,"minAtk":1700,"maxAtk":1996},{"itemId":302109,"className":"PST02_109","name":"Tevlin Revolver","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":32673,"sellPrice":3920,"equipType1":"Pistol","equipType2":"Gun","minLevel":220,"minAtk":1700,"maxAtk":1996},{"itemId":302110,"className":"PST02_110","name":"(Faded) Migantis Pistol","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":40000,"sellPrice":5000,"equipType1":"Pistol","equipType2":"Gun","minLevel":270,"minAtk":2080,"maxAtk":2441},{"itemId":302111,"className":"PST02_111","name":"(Faded) Pevordimas Pistol","type":"Equip","group":"SubWeapon","weight":110,"maxStack":1,"price":48800,"sellPrice":5000,"equipType1":"Pistol","equipType2":"Gun","minLevel":315,"minAtk":2421,"maxAtk":2842},{"itemId":302112,"className":"PST02_112","name":"Alcris","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":170,"minAtk":1321,"maxAtk":1550},{"itemId":302113,"className":"PST02_113","name":"Pajoritas Pistol","type":"Equip","group":"SubWeapon","weight":130,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":220,"minAtk":1700,"maxAtk":1996},{"itemId":302114,"className":"PST02_114","name":"Migantis Pistol","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":270,"minAtk":2080,"maxAtk":2441},{"itemId":302115,"className":"PST02_115","name":"Pevordimas Pistol","type":"Equip","group":"SubWeapon","weight":110,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":315,"minAtk":2421,"maxAtk":2842},{"itemId":302116,"className":"PST02_116","name":"Raffye Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":350,"minAtk":2687,"maxAtk":3154},{"itemId":302117,"className":"PST02_117","name":"Zvaigzde Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":380,"minAtk":2915,"maxAtk":3421},{"itemId":302118,"className":"PST02_118","name":"Sketis Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":75,"minAtk":600,"maxAtk":704},{"itemId":302119,"className":"PST02_119","name":"Spiare Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":120,"minAtk":941,"maxAtk":1105},{"itemId":302120,"className":"PST02_120","name":"Legva Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":400,"minAtk":3066,"maxAtk":3600},{"itemId":303101,"className":"PST03_101","name":"Double Stack","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":48800,"sellPrice":7753,"equipType1":"Pistol","equipType2":"Gun","minLevel":315,"minAtk":2663,"maxAtk":3127,"addMinAtk":77,"addMaxAtk":128},{"itemId":303301,"className":"PST03_301","name":"(Faded) Alcris","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":24252,"sellPrice":3900,"equipType1":"Pistol","equipType2":"Gun","minLevel":170,"minAtk":1453,"maxAtk":1705,"addMinAtk":24,"addMaxAtk":56},{"itemId":303302,"className":"PST03_302","name":"(Faded) Pajoritas Pistol","type":"Equip","group":"SubWeapon","weight":130,"maxStack":1,"price":32673,"sellPrice":3920,"equipType1":"Pistol","equipType2":"Gun","minLevel":220,"minAtk":1870,"maxAtk":2195,"addMinAtk":35,"addMaxAtk":60},{"itemId":303303,"className":"PST03_303","name":"(Faded) Purine Migantis Pistol","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":40000,"sellPrice":5000,"equipType1":"Pistol","equipType2":"Gun","minLevel":270,"minAtk":2288,"maxAtk":2685},{"itemId":303304,"className":"PST03_304","name":"(Faded) Purine Pevordimas Pistol","type":"Equip","group":"SubWeapon","weight":110,"maxStack":1,"price":48800,"sellPrice":5000,"equipType1":"Pistol","equipType2":"Gun","minLevel":315,"minAtk":2663,"maxAtk":3127},{"itemId":303305,"className":"PST03_305","name":"Berthas Alcris","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":170,"minAtk":1453,"maxAtk":1705},{"itemId":303306,"className":"PST03_306","name":"Berthas Pajoritas Pistol","type":"Equip","group":"SubWeapon","weight":130,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":220,"minAtk":1870,"maxAtk":2195},{"itemId":303307,"className":"PST03_307","name":"Berthas Migantis Pistol","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":270,"minAtk":2288,"maxAtk":2685},{"itemId":303308,"className":"PST03_308","name":"Berthas Pevordimas Pistol","type":"Equip","group":"SubWeapon","weight":110,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":315,"minAtk":2663,"maxAtk":3127},{"itemId":303309,"className":"PST03_309","name":"Berthas Raffye Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":350,"minAtk":2956,"maxAtk":3470},{"itemId":303310,"className":"PST03_310","name":"Berthas Zvaigzde Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":380,"minAtk":3206,"maxAtk":3764},{"itemId":303311,"className":"PST03_311","name":"Berthas Sketis Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":75,"minAtk":660,"maxAtk":774},{"itemId":303312,"className":"PST03_312","name":"Berthas Spiare Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":120,"minAtk":1035,"maxAtk":1215},{"itemId":303313,"className":"PST03_313","name":"Berthas Legva Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":400,"minAtk":3373,"maxAtk":3960},{"itemId":303314,"className":"PST03_314","name":"Berthas Dysnai Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":430,"minAtk":3623,"maxAtk":4254},{"itemId":304101,"className":"PST04_101","name":"Manamana","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":24252,"sellPrice":907,"equipType1":"Pistol","equipType2":"Gun","minLevel":170,"minAtk":1651,"maxAtk":1938},{"itemId":304102,"className":"PST04_102","name":"Lolopanther Pistol","type":"Equip","group":"SubWeapon","weight":130,"maxStack":1,"price":40000,"sellPrice":5856,"equipType1":"Pistol","equipType2":"Gun","minLevel":270,"minAtk":3327,"maxAtk":3906},{"itemId":304103,"className":"PST04_103","name":"Solmiki Pistol","type":"Equip","group":"SubWeapon","weight":140,"maxStack":1,"price":48800,"sellPrice":7771,"equipType1":"Pistol","equipType2":"Gun","minLevel":330,"minAtk":4056,"maxAtk":4762},{"itemId":304104,"className":"PST04_104","name":"Aspana Revolver","type":"Equip","group":"SubWeapon","weight":140,"maxStack":1,"price":48800,"sellPrice":8868,"equipType1":"Pistol","equipType2":"Gun","minLevel":315,"minAtk":3027,"maxAtk":3553},{"itemId":304105,"className":"PST04_105","name":"Primus Alcris","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":170,"minAtk":1651,"maxAtk":1938},{"itemId":304106,"className":"PST04_106","name":"Primus Pajoritas Pistol","type":"Equip","group":"SubWeapon","weight":130,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":220,"minAtk":2125,"maxAtk":2495},{"itemId":304107,"className":"PST04_107","name":"Primus Migantis Pistol","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":270,"minAtk":2600,"maxAtk":3052},{"itemId":304108,"className":"PST04_108","name":"Primus Pevordimas Pistol","type":"Equip","group":"SubWeapon","weight":110,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":315,"minAtk":3027,"maxAtk":3553},{"itemId":304109,"className":"PST04_109","name":"Primus Raffye Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":350,"minAtk":3359,"maxAtk":3943},{"itemId":304110,"className":"PST04_110","name":"Masinios Pistol","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":350,"minAtk":3359,"maxAtk":3943},{"itemId":304111,"className":"PST04_111","name":"Primus Zvaigzde Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":380,"minAtk":3643,"maxAtk":4277},{"itemId":304112,"className":"PST04_112","name":"Wastrel Zvaigzde Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":380,"minAtk":3643,"maxAtk":4277},{"itemId":304113,"className":"PST04_113","name":"Asio Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":380,"minAtk":3643,"maxAtk":4277},{"itemId":304114,"className":"PST04_114","name":"Primus Sketis Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":75,"minAtk":750,"maxAtk":880},{"itemId":304115,"className":"PST04_115","name":"Primus Spiare Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":120,"minAtk":1176,"maxAtk":1381},{"itemId":304116,"className":"PST04_116","name":"Primus Legva Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":400,"minAtk":3833,"maxAtk":4500},{"itemId":304117,"className":"PST04_117","name":"Skiaclipse Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":400,"minAtk":3833,"maxAtk":4500},{"itemId":304118,"className":"PST04_118","name":"Moringponia Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":400,"minAtk":3833,"maxAtk":4500,"addMaxAtk":280},{"itemId":304119,"className":"PST04_119","name":"Moringponia Revolver","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":400,"minAtk":3833,"maxAtk":4500,"addMaxAtk":280},{"itemId":304120,"className":"PST04_120","name":"Misrus Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":400,"minAtk":3833,"maxAtk":4500},{"itemId":304121,"className":"PST04_121","name":"Primus Dysnai Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":430,"minAtk":4118,"maxAtk":4834},{"itemId":305101,"className":"PST05_101","name":"Velcoffer Pistol","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":360,"minAtk":4420,"maxAtk":5189},{"itemId":305102,"className":"PST05_102","name":"Velcoffer Pistol","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":360,"minAtk":4420,"maxAtk":5189},{"itemId":305103,"className":"PST05_103","name":"Savinose Legva Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":400,"minAtk":4906,"maxAtk":5759},{"itemId":305104,"className":"PST05_104","name":"Skiaclipse Varna Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":400,"minAtk":4906,"maxAtk":5759},{"itemId":325101,"className":"CAN05_101","name":"(Old) Velcoffer Cannon","type":"Equip","group":"SubWeapon","weight":130,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":360},{"itemId":325102,"className":"CAN05_102","name":"(Old) Velcoffer Cannon","type":"Equip","group":"SubWeapon","weight":130,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":360},{"itemId":630001,"className":"Artefact_630001","name":"Point","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630002,"className":"Artefact_630002","name":"Shadow Umbrella","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630003,"className":"Artefact_630003","name":"Medusa Head","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630004,"className":"Artefact_630004","name":"Confusion Flag","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630005,"className":"Artefact_630005","name":"Imperial Fan","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630006,"className":"Artefact_630006","name":"Demonbane Charm","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630007,"className":"Artefact_630007","name":"Bronze Compass","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630008,"className":"Artefact_630008","name":"Bubble Stick","type":"Equip","group":"SubWeapon","weight":60,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630009,"className":"Artefact_630009","name":"Watering Can","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630010,"className":"Artefact_630010","name":"Vuvuzela","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630011,"className":"Artefact_630011","name":"Snow Flower Spray","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630012,"className":"Artefact_630012","name":"Shovel","type":"Equip","group":"SubWeapon","weight":80,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630013,"className":"Artefact_630013","name":"Detector","type":"Equip","group":"SubWeapon","weight":100,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1,"script":{"strArg":"Archeology_Detector","numArg1":2}},{"itemId":630014,"className":"Artefact_630014","name":"5kg Dumbbell","type":"Equip","group":"SubWeapon","weight":50,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630015,"className":"Artefact_630015","name":"Bubble Wrap","type":"Equip","group":"SubWeapon","weight":5,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630016,"className":"Artefact_630016","name":"Defeated Flag","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630017,"className":"Artefact_630017","name":"Pickaxe","type":"Equip","group":"SubWeapon","weight":250,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630018,"className":"Artefact_630018","name":"Party Horn","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630020,"className":"Artefact_630020","name":"Hot Pack","type":"Equip","group":"SubWeapon","weight":5,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630021,"className":"Artefact_630021","name":"Snow Spray","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630022,"className":"Artefact_630022","name":"Foldable Stool","type":"Equip","group":"SubWeapon","weight":30,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630023,"className":"Artefact_630021_30d","name":"Snow Spray (30 Days)","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630024,"className":"Artefact_630024","name":"My Wedding Bouquet","type":"Equip","group":"SubWeapon","weight":30,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630025,"className":"Artefact_630025","name":"Heart-Throb Wedding Bouquet","type":"Equip","group":"SubWeapon","weight":30,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630026,"className":"Artefact_630026","name":"Shark Water Gun","type":"Equip","group":"SubWeapon","weight":30,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630027,"className":"Artefact_630027","name":"Watermelon Ice Cream","type":"Equip","group":"SubWeapon","weight":30,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630028,"className":"Artefact_630028","name":"Penguin Bubble Wrap","type":"Equip","group":"SubWeapon","weight":30,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630029,"className":"Artefact_630029","name":"Poodle Bubble Wrap","type":"Equip","group":"SubWeapon","weight":30,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630030,"className":"Artefact_630030","name":"Popolion Bubble Wrap","type":"Equip","group":"SubWeapon","weight":30,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630031,"className":"Artefact_630031","name":"Cat Fan","type":"Equip","group":"SubWeapon","weight":30,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630032,"className":"Artefact_630032","name":"Hanaming Fan","type":"Equip","group":"SubWeapon","weight":30,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630033,"className":"Artefact_630033","name":"Poodle Fan","type":"Equip","group":"SubWeapon","weight":30,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630034,"className":"Artefact_630034","name":"Kepa Fan","type":"Equip","group":"SubWeapon","weight":30,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630035,"className":"Artefact_630035","name":"Penguin Fan","type":"Equip","group":"SubWeapon","weight":30,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630036,"className":"Artefact_630036","name":"Popolion Fan","type":"Equip","group":"SubWeapon","weight":30,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630037,"className":"Artefact_630037","name":"Magical Snowman Wand","type":"Equip","group":"SubWeapon","weight":30,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630038,"className":"Artefact_630038","name":"Christmas Handbell","type":"Equip","group":"SubWeapon","weight":30,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630039,"className":"Artefact_630020_30d","name":"Hot Pack (30 Days)","type":"Equip","group":"SubWeapon","weight":5,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630040,"className":"Artefact_630040","name":"Snow Flower Spray","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630041,"className":"Artefact_630041","name":"Hot Pack","type":"Equip","group":"SubWeapon","weight":5,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630042,"className":"Artefact_630026_NT","name":"Shark Water Gun","type":"Equip","group":"SubWeapon","weight":30,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630043,"className":"Artefact_630042","name":"Elephant Watering Can","type":"Equip","group":"SubWeapon","weight":30,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630044,"className":"Artefact_630043","name":"Supporters Vuvuzela","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630045,"className":"Artefact_630044","name":"Marine Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":630049,"className":"Artefact_630049","name":"Pipe","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630050,"className":"Artefact_630050","name":"Telescope","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630051,"className":"Artefact_630051","name":"Lighthouse Flashlight","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630052,"className":"Artefact_630052","name":"Little Whale Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":630053,"className":"Artefact_630053","name":"Chess Timer","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630054,"className":"Artefact_630054","name":"Tapioca Bubble Tea","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":630055,"className":"Artefact_630055","name":"Basic Detector","type":"Equip","group":"SubWeapon","weight":100,"maxStack":1,"price":100000,"sellPrice":100,"equipType1":"Artefact","minLevel":1,"script":{"strArg":"Archeology_Detector","numArg1":1}},{"itemId":632001,"className":"SklObj_001","name":"Alchemy 1","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632002,"className":"SklObj_002","name":"Alchemy 2","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632003,"className":"SklObj_003","name":"Alchemy 3","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632004,"className":"SklObj_004","name":"Alchemy 4","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632005,"className":"SklObj_005","name":"Alchemy 5","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632006,"className":"SklObj_006","name":"Alchemy 6","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632007,"className":"SklObj_007","name":"Alchemy 7","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632008,"className":"SklObj_008","name":"Alchemy 8","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632009,"className":"SklObj_009","name":"Alchemy 9","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632010,"className":"SklObj_010","name":"Alchemy 10","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632011,"className":"SklObj_011","name":"Alchemy 11","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632012,"className":"SklObj_012","name":"Alchemy 12","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632013,"className":"SklObj_013","name":"Alchemy 13","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632014,"className":"SklObj_014","name":"Alchemy 14","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632015,"className":"SklObj_015","name":"Alchemy 15","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632016,"className":"SklObj_016","name":"Fitting Room","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632017,"className":"SklObj_017","name":"Muzzles","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632018,"className":"SklObj_018","name":"Frying Pan","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632019,"className":"SklObj_019","name":"Pirate Flag","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632020,"className":"SklObj_020","name":"Shovel","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632021,"className":"SklObj_021","name":"Tongs","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632022,"className":"SklObj_022","name":"Claymore Skill","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632023,"className":"SklObj_023","name":"Alchemy 16","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632024,"className":"SklObj_024","name":"Hammer","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632025,"className":"SklObj_025","name":"Lamp","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632026,"className":"SklObj_026","name":"Filter","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632027,"className":"SklObj_027","name":"Anvil Set","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632028,"className":"SklObj_028","name":"Hammer 2","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632029,"className":"SklObj_029","name":"Material Bag","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632030,"className":"SklObj_030","name":"Monstrance Set","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632031,"className":"SklObj_031","name":"Magnifier","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632032,"className":"SklObj_032","name":"Magnifier Skill","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632033,"className":"SklObj_033","name":"Compass","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632034,"className":"SklObj_034","name":"materialbag2","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632035,"className":"SklObj_035","name":"Sandwich Bread","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632036,"className":"SklObj_036","name":"Sandwich Cheese","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632037,"className":"SklObj_037","name":"Sandwich Meat","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632038,"className":"SklObj_038","name":"Spoon","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632039,"className":"SklObj_039","name":"Salad","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632040,"className":"SklObj_040","name":"Salad Set","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632041,"className":"SklObj_041","name":"Soup Set","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632042,"className":"SklObj_042","name":"Secondary Dagger","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632043,"className":"SklObj_043","name":"HPSP Potion","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632044,"className":"SklObj_044","name":"SP Potion","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632045,"className":"SklObj_045","name":"Speed Potion","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632046,"className":"SklObj_046","name":"STA Potion","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632047,"className":"SklObj_047","name":"Aggro Potion","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632048,"className":"SklObj_048","name":"Money Bag","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632049,"className":"SklObj_049","name":"Kozuka","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632050,"className":"SklObj_050","name":"Pavise","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632051,"className":"SklObj_051","name":"Medal","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632052,"className":"SklObj_052","name":"Soup Set","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632053,"className":"SklObj_053","name":"Pickaxe Set","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632054,"className":"SklObj_054","name":"Card Set","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632055,"className":"SklObj_055","name":"Kaliss Armband","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632056,"className":"SklObj_056","name":"Fletcher Knife","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632057,"className":"SklObj_057","name":"Cannon Shell","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632058,"className":"SklObj_058","name":"Kunai","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632059,"className":"SklObj_059","name":"Flamethrower","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632060,"className":"SklObj_060","name":"Ice Pick","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632061,"className":"SklObj_061","name":"Bone Knife","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632062,"className":"SklObj_062","name":"Handle","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632063,"className":"SklObj_063","name":"Templar Flag","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632064,"className":"SklObj_064","name":"Champagne Glass","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632065,"className":"SklObj_065","name":"Champagne","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632066,"className":"SklObj_066","name":"Base of the Stone Statue","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632067,"className":"SklObj_067","name":"Popcorn","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632068,"className":"SklObj_068","name":"Metal Detector","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":632069,"className":"SklObj_069","name":"Rosary","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":634027,"className":"Artefact_634027","name":"Roof Tile Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":634037,"className":"Artefact_634037","name":"Pumpkin Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":634038,"className":"Artefact_634038","name":"Cat Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":634048,"className":"Artefact_634048","name":"Candy Cane Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":634052,"className":"Artefact_634052","name":"Fluffy Kitty Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":634065,"className":"Artefact_634065","name":"Crunchy Choco Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":634080,"className":"Artefact_634080","name":"Crunchy Choco Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":634084,"className":"Artefact_634084","name":"Impassioned Rose Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":634095,"className":"Artefact_634095","name":"Conch Shell Horn Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":634104,"className":"Artefact_634104","name":"Mackerel Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":634110,"className":"Artefact_634110","name":"Survival Knife","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":634129,"className":"Artefact_634129","name":"Cheese Knife","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":634132,"className":"Artefact_634132","name":"Hand Mixer Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":634145,"className":"Artefact_634145","name":"TOS Ranger Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":634146,"className":"Artefact_634146","name":"TOS Ranger Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":634161,"className":"Artefact_634161","name":"Surgical Scalpel Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":634162,"className":"Artefact_634162","name":"Vital Sign Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":634176,"className":"Artefact_634176","name":"Twinkle Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":634181,"className":"Artefact_634181","name":"Taegeuk Small Drum","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":634204,"className":"Artefact_634204","name":"Magical Savior Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":634214,"className":"Artefact_634214","name":"Popop Pop Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":634215,"className":"Artefact_634215","name":"Popo Pop Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":635047,"className":"E_DAG04_103","name":"[Event][Appearance] Solmiki Dagger","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":61,"maxAtk":71,"script":{"strArg":"WoodCarving"}},{"itemId":635049,"className":"E_PST04_103","name":"[Event][Appearance] Solmiki Pistol","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":61,"maxAtk":71,"script":{"strArg":"WoodCarving"}},{"itemId":635113,"className":"E_Artefact_630005","name":"[Event] Imperial Fan (30 Days)","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":635114,"className":"E_Artefact_630010","name":"Festival Vuvuzela","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":635115,"className":"E_Artefact_630012","name":"Festival Shovel","type":"Equip","group":"SubWeapon","weight":80,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":635116,"className":"E_Artefact_630013","name":"Festival Detector","type":"Equip","group":"SubWeapon","weight":100,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":635117,"className":"E_Artefact_630014","name":"Festival 5kg Dumbbell","type":"Equip","group":"SubWeapon","weight":50,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":635118,"className":"E_Artefact_630015","name":"Festival Bubble Wrap","type":"Equip","group":"SubWeapon","weight":5,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":635119,"className":"E_Artefact_630018","name":"Festival Party Horn","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":635120,"className":"E_Artefact_630021","name":"Festival Snow Spray","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":635121,"className":"E_Artefact_630022","name":"Festival Foldable Stool","type":"Equip","group":"SubWeapon","weight":30,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":635130,"className":"E2_DAG03_306","name":"[Event] Savior's Dagger (30 Days)","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":13511,"sellPrice":5000,"equipType1":"Dagger","minLevel":100,"minAtk":4542,"maxAtk":5332},{"itemId":635136,"className":"E2_PST03_304","name":"[Event] Savior's Pistol (30 Days)","type":"Equip","group":"SubWeapon","weight":110,"maxStack":1,"price":8106,"sellPrice":5000,"equipType1":"Pistol","equipType2":"Gun","minLevel":100,"minAtk":4542,"maxAtk":5332},{"itemId":635172,"className":"E_DAG03_105","name":"[Event] Lionhead Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":48800,"sellPrice":7753,"equipType1":"Dagger","minLevel":315,"minAtk":2663,"maxAtk":3127,"iceRes":-15},{"itemId":635181,"className":"E_PST03_101","name":"[Event] Double Stack","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":29280,"sellPrice":7753,"equipType1":"Pistol","equipType2":"Gun","minLevel":315,"minAtk":2663,"maxAtk":3127,"addMinAtk":77,"addMaxAtk":128},{"itemId":635269,"className":"DAG04_112_STEMA_DLC","name":"Primus Raffye Dagger [Untradable]","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Dagger","minLevel":350,"minAtk":3359,"maxAtk":3943},{"itemId":635275,"className":"PST04_109_STEMA_DLC","name":"Primus Raffye Pistol [Untradable]","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":33279,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":350,"minAtk":3359,"maxAtk":3943},{"itemId":635285,"className":"DAG04_104_STEAM_NT","name":"Emengard Dagger [Untradable]","type":"Equip","group":"SubWeapon","weight":75,"maxStack":1,"price":48800,"sellPrice":8868,"equipType1":"Dagger","minLevel":315,"minAtk":3027,"maxAtk":3553},{"itemId":635291,"className":"PST04_104_STEAM_NT","name":"Aspana Revolver [Untradable]","type":"Equip","group":"SubWeapon","weight":140,"maxStack":1,"price":48800,"sellPrice":8868,"equipType1":"Pistol","equipType2":"Gun","minLevel":315,"minAtk":3027,"maxAtk":3553},{"itemId":635317,"className":"PST04_107_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Migantis Pistol (30 Days)","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":270,"minAtk":2600,"maxAtk":3052},{"itemId":635333,"className":"PST04_108_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Pevordimas Pistol (30 Days)","type":"Equip","group":"SubWeapon","weight":110,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":315,"minAtk":3027,"maxAtk":3553},{"itemId":635352,"className":"DAG03_313_1710_NEWCHARACTER","name":"Berthas Raffye Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Dagger","minLevel":350,"minAtk":2956,"maxAtk":3470},{"itemId":635354,"className":"PST03_309_1710_NEWCHARACTER","name":"Berthas Raffye Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":350,"minAtk":2956,"maxAtk":3470},{"itemId":635370,"className":"DAG04_112_1807_NEWCHARACTER","name":"[Event] Primus Raffye Dagger (30 Days)","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Dagger","minLevel":350,"minAtk":3359,"maxAtk":3943},{"itemId":635372,"className":"PST04_109_1807_NEWCHARACTER","name":"[Event] Primus Raffye Pistol (30 Days)","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":350,"minAtk":3359,"maxAtk":3943},{"itemId":635388,"className":"DAG03_313_1710_Steam_Friend_Event","name":"[Friend] Berthas Raffye Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Dagger","minLevel":350,"minAtk":2956,"maxAtk":3470},{"itemId":635390,"className":"PST03_309_1710_Steam_Friend_Event","name":"[Friend] Berthas Raffye Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":33279,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":350,"minAtk":2956,"maxAtk":3470},{"itemId":635400,"className":"DAG04_104_STEAM_Returning_Event","name":"[Return] Emengard Dagger (30 Days)","type":"Equip","group":"SubWeapon","weight":75,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Dagger","minLevel":230,"minAtk":3027,"maxAtk":3553},{"itemId":635406,"className":"PST04_104_STEAM_Returning_Event","name":"[Return] Aspana Revolver (30 Days)","type":"Equip","group":"SubWeapon","weight":140,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":230,"minAtk":3027,"maxAtk":3553},{"itemId":635422,"className":"DAG04_113_NEWCHARACTER","name":"[Re:Build] Masinios Dagger","type":"Equip","group":"SubWeapon","weight":100,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Dagger","minLevel":350,"minAtk":3359,"maxAtk":3943},{"itemId":635424,"className":"PST04_110_NEWCHARACTER","name":"[Re:Build] Masinios Pistol","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":350,"minAtk":3359,"maxAtk":3943},{"itemId":635428,"className":"DAG01_114_NEWCHARACTER","name":"[Event] Stiletto (30 Days)","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":2880,"sellPrice":0,"equipType1":"Dagger","minLevel":15,"minAtk":159,"maxAtk":186},{"itemId":635429,"className":"DAG01_115_NEWCHARACTER","name":"[Event] Blue Stiletto (30 Days)","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":3640,"sellPrice":0,"equipType1":"Dagger","minLevel":40,"minAtk":367,"maxAtk":431},{"itemId":635430,"className":"DAG03_309_NEWCHARACTER","name":"[Event] Berthas Sketis Dagger (30 Days)","type":"Equip","group":"SubWeapon","weight":95,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Dagger","minLevel":75,"minAtk":660,"maxAtk":774},{"itemId":635431,"className":"DAG03_307_NEWCHARACTER","name":"[Event] Berthas Short Duelist (30 Days)","type":"Equip","group":"SubWeapon","weight":85,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Dagger","minLevel":120,"minAtk":1035,"maxAtk":1215},{"itemId":635432,"className":"DAG03_308_NEWCHARACTER","name":"[Event] Berthas Small Crystaras (30 Days)","type":"Equip","group":"SubWeapon","weight":94,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Dagger","minLevel":170,"minAtk":1453,"maxAtk":1705},{"itemId":635433,"className":"DAG03_310_NEWCHARACTER","name":"[Event] Berthas Pajoritas Dagger (30 Days)","type":"Equip","group":"SubWeapon","weight":105,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Dagger","minLevel":220,"minAtk":1870,"maxAtk":2195},{"itemId":635434,"className":"DAG04_110_NEWCHARACTER","name":"[Event] Primus Migantis Dagger (30 Days)","type":"Equip","group":"SubWeapon","weight":100,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Dagger","minLevel":270,"minAtk":2600,"maxAtk":3052},{"itemId":635435,"className":"DAG04_111_NEWCHARACTER","name":"[Event] Primus Pevordimas Dagger (30 Days)","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Dagger","minLevel":315,"minAtk":3027,"maxAtk":3553},{"itemId":635453,"className":"PST01_112_NEWCHARACTER","name":"[Event] Dunkel Pistol (30 Days)","type":"Equip","group":"SubWeapon","weight":140,"maxStack":1,"price":300,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":15,"minAtk":159,"maxAtk":186},{"itemId":635454,"className":"PST01_113_NEWCHARACTER","name":"[Event] Dunkel Wooden Pistol (30 Days)","type":"Equip","group":"SubWeapon","weight":140,"maxStack":1,"price":500,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":40,"minAtk":367,"maxAtk":431},{"itemId":635455,"className":"PST03_311_NEWCHARACTER","name":"[Event] Berthas Sketis Pistol (30 Days)","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":75,"minAtk":660,"maxAtk":774},{"itemId":635456,"className":"PST03_312_NEWCHARACTER","name":"[Event] Berthas Spiare Pistol (30 Days)","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":120,"minAtk":1035,"maxAtk":1215},{"itemId":635457,"className":"PST03_305_NEWCHARACTER","name":"[Event] Berthas Alcris (30 Days)","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":170,"minAtk":1453,"maxAtk":1705},{"itemId":635458,"className":"PST03_306_NEWCHARACTER","name":"[Event] Berthas Pajoritas Pistol (30 Days)","type":"Equip","group":"SubWeapon","weight":130,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":220,"minAtk":1870,"maxAtk":2195},{"itemId":635469,"className":"DAG04_115_EVENT_1812_XMAS","name":"[Event] Wastrel Zvaigzde Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Dagger","minLevel":380,"minAtk":3643,"maxAtk":4277},{"itemId":635471,"className":"PST04_112_EVENT_1812_XMAS","name":"[Event] Wastrel Zvaigzde Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":380,"minAtk":3643,"maxAtk":4277},{"itemId":635485,"className":"DAG04_116_EVENT_1812_XMAS","name":"[Event] Asio Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Dagger","minLevel":380,"minAtk":3643,"maxAtk":4277},{"itemId":635487,"className":"PST04_113_EVENT_1812_XMAS","name":"[Event] Asio Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":380,"minAtk":3643,"maxAtk":4277},{"itemId":635501,"className":"DAG04_113_NEWCHARACTER2","name":"[Event] Masinios Dagger","type":"Equip","group":"SubWeapon","weight":100,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Dagger","minLevel":350,"minAtk":3359,"maxAtk":3943},{"itemId":635503,"className":"PST04_110_NEWCHARACTER2","name":"[Event] Masinios Pistol","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":350,"minAtk":3359,"maxAtk":3943},{"itemId":635539,"className":"Event_DAG05_103","name":"[Event] Savinose Legva Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Dagger","minLevel":400,"minAtk":4906,"maxAtk":5759},{"itemId":635540,"className":"Event_PST05_103","name":"[Event] Savinose Legva Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":400,"minAtk":4906,"maxAtk":5759},{"itemId":635564,"className":"DAG04_116_EVENT_NewChar01","name":"[Event] Asio Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Dagger","minLevel":380,"minAtk":3643,"maxAtk":4277},{"itemId":635566,"className":"PST04_113_EVENT_NewChar01","name":"[Event] Asio Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":380,"minAtk":3643,"maxAtk":4277},{"itemId":635586,"className":"FOREVER_DAG05_103","name":"[4ever] Savinose Legva Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Dagger","minLevel":400,"minAtk":4906,"maxAtk":5759},{"itemId":635587,"className":"FOREVER_PST05_103","name":"[4ever] Savinose Legva Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":400,"minAtk":4906,"maxAtk":5759},{"itemId":635614,"className":"2020NEWYEAR_DAG05_103","name":"[Blossom Pack] Savinose Legva Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Dagger","minLevel":400,"minAtk":4906,"maxAtk":5759},{"itemId":635615,"className":"2020NEWYEAR_PST05_103","name":"[Blossom Pack] Savinose Legva Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":400,"minAtk":4906,"maxAtk":5759},{"itemId":635629,"className":"TRK04_107_Ev","name":"[Event] Asio Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Trinket","minLevel":380,"minAtk":432,"maxAtk":432,"mAtk":432},{"itemId":635630,"className":"TRK04_106_Ev","name":"[Event] Wastrel Zvaigzde Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Trinket","minLevel":380,"minAtk":432,"maxAtk":432,"mAtk":432},{"itemId":636025,"className":"T_DAG100_101","name":"[Kupole] Dirk Dagger","type":"Equip","group":"SubWeapon","weight":100,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":1530,"maxAtk":1796},{"itemId":636027,"className":"T_PST100_101","name":"[Kupole] Long Pistol","type":"Equip","group":"SubWeapon","weight":140,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":1530,"maxAtk":1796},{"itemId":636041,"className":"T_PST03_101","name":"[Kupole] Double Stack","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":2663,"maxAtk":3127,"addMinAtk":77,"addMaxAtk":128},{"itemId":636043,"className":"T_DAG03_105","name":"[Kupole] Lion Head Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":2663,"maxAtk":3127,"iceRes":-15},{"itemId":636055,"className":"DAG04_113_NEWCHARACTER_KU","name":"[Kupole] Masinios Dagger","type":"Equip","group":"SubWeapon","weight":100,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Dagger","minLevel":350,"minAtk":3359,"maxAtk":3943},{"itemId":636057,"className":"PST04_110_NEWCHARACTER_KU","name":"[Kupole] Masinios Pistol","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":350,"minAtk":3359,"maxAtk":3943},{"itemId":636123,"className":"PC_DAG100_101","name":"ITEM_20230425_028561","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":61,"maxAtk":71,"script":{"strArg":"PC_Equip"}},{"itemId":636125,"className":"PC_PST100_101","name":"ITEM_20230425_028563","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":61,"maxAtk":71,"script":{"strArg":"PC_Equip"}},{"itemId":636128,"className":"PC_TRK02_101","name":"ITEM_20230425_028566","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Trinket","minLevel":1,"minAtk":7,"maxAtk":7,"mAtk":7,"script":{"strArg":"PC_Equip"}},{"itemId":636223,"className":"ChangeJob_DAG100_101","name":"Dagger","type":"Equip","group":"SubWeapon","weight":200,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"Growth_Item"}},{"itemId":636225,"className":"ChangeJob_PST100_101","name":"Pistol","type":"Equip","group":"SubWeapon","weight":200,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"Growth_Item"}},{"itemId":636311,"className":"NEWYEAR_WEAPON_DAG100_101","name":"[Wake Up] Dagger","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":47,"maxAtk":56,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636313,"className":"NEWYEAR_WEAPON_PST100_101","name":"[Wake Up] Pistol","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":47,"maxAtk":56,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636411,"className":"POPO_SHOP_3D_DAG100_101","name":"[Popo Shop] Dagger (3 Days)","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":42,"maxAtk":49,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636413,"className":"POPO_SHOP_3D_PST100_101","name":"[Popo Shop] Pistol (3 Days)","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":42,"maxAtk":49,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636461,"className":"POPO_SHOP_7D_DAG100_101","name":"[Popo Shop] Dagger (7 Days)","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":42,"maxAtk":49,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636463,"className":"POPO_SHOP_7D_PST100_101","name":"[Popo Shop] Pistol (7 Days)","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":42,"maxAtk":49,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636511,"className":"STEAM_TO_BEGIN_1_DAG04_117","name":"To begin: Dagger","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":47,"maxAtk":56,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636513,"className":"STEAM_TO_BEGIN_1_PST04_116","name":"To begin: Pistol","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":47,"maxAtk":56,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636614,"className":"PVP_DAG05_103","name":"Savinose Legva Dagger (20 min)","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":4906,"maxAtk":5759,"script":{"strArg":"pvp_Mine"}},{"itemId":636615,"className":"PVP_PST05_103","name":"Savinose Legva Pistol (20 min)","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":4906,"maxAtk":5759,"script":{"strArg":"pvp_Mine"}},{"itemId":636639,"className":"PVP_TRK05_102","name":"Savinose Elder Trinket (20 min)","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Trinket","minLevel":1,"minAtk":582,"maxAtk":582,"mAtk":582,"script":{"strArg":"pvp_Mine"}},{"itemId":636656,"className":"PVP_DAG04_123","name":"Vaivora Dagger - Cursed Dagger (20 minutes)","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":4118,"maxAtk":4834,"script":{"strArg":"pvp_Mine"}},{"itemId":636658,"className":"PVP_PST04_122","name":"Vaivora Pistol - Cryolite Bullet (20 minutes)","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":4118,"maxAtk":4834,"script":{"strArg":"pvp_Mine"}},{"itemId":636662,"className":"PVP_TRK04_111","name":"Vaivora Trinket - Coordination (20 minutes)","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Trinket","minLevel":1,"minAtk":488,"maxAtk":488,"mAtk":488,"script":{"strArg":"pvp_Mine"}},{"itemId":636666,"className":"PVP_DAG04_123_1","name":"Vaivora Dagger - Shadow Clone (20 minutes)","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":4118,"maxAtk":4834,"script":{"strArg":"pvp_Mine"}},{"itemId":636671,"className":"PVP_PST04_122_1","name":"Vaivora Pistol - Renovate Trigger (20 minutes)","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":4118,"maxAtk":4834,"script":{"strArg":"pvp_Mine"}},{"itemId":636672,"className":"PVP_DAG04_123_2","name":"Vaivora Dagger - Carpet Bombing (20 minutes)","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":4118,"maxAtk":4834,"strike":996,"script":{"strArg":"pvp_Mine"}},{"itemId":636673,"className":"PVP_DAG04_123_3","name":"Vaivora Dagger - Phantom Blade (20 minutes)","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":4118,"maxAtk":4834,"aries":996,"script":{"strArg":"pvp_Mine"}},{"itemId":636682,"className":"PVP_DAG04_123_4","name":"Vaivora Dagger - Coordination (20 minutes)","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":4118,"maxAtk":4834,"script":{"strArg":"pvp_Mine"}},{"itemId":636711,"className":"Event_DAG05_104","name":"[Moonlight] Skiaclipse Varna Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Dagger","minLevel":400,"minAtk":4906,"maxAtk":5759},{"itemId":636713,"className":"Event_PST05_104","name":"[Moonlight] Skiaclipse Varna Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":400,"minAtk":4906,"maxAtk":5759},{"itemId":636717,"className":"Event_TRK05_103","name":"[Moonlight] Skiaclipse Varna Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Trinket","minLevel":400,"minAtk":582,"maxAtk":582,"mAtk":582},{"itemId":636812,"className":"NEWYEAR_WEAPON_DAG100_102","name":"[Harvest] Dagger","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":61,"maxAtk":71,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":636814,"className":"NEWYEAR_WEAPON_PST100_102","name":"[Harvest] Pistol","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":61,"maxAtk":71,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":636927,"className":"Grimoire_DAG04_116","name":"[Event] Asio Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Dagger","minLevel":380,"minAtk":3643,"maxAtk":4277},{"itemId":636929,"className":"Grimoire_PST04_113","name":"[Event] Asio Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":380,"minAtk":3643,"maxAtk":4277},{"itemId":636943,"className":"Grimoire_DAG04_115","name":"[Event] Wastrel Zvaigzde Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Dagger","minLevel":380,"minAtk":3643,"maxAtk":4277},{"itemId":636945,"className":"Grimoire_PST04_112","name":"[Event] Wastrel Zvaigzde Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":380,"minAtk":3643,"maxAtk":4277},{"itemId":639711,"className":"DAG01_113_QUEST_REWARD","name":"Kedoran Kris Dagger","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":3640,"sellPrice":0,"equipType1":"Dagger","minLevel":40,"minAtk":367,"maxAtk":431},{"itemId":639713,"className":"PST01_113_QUEST_REWARD","name":"Kedoran Dunkel Wooden Pistol","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":3640,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":40,"minAtk":367,"maxAtk":431},{"itemId":639739,"className":"DAG01_105_QUEST_REWARD","name":"Kedoran Main Gauche","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Dagger","minLevel":75,"minAtk":660,"maxAtk":774},{"itemId":639741,"className":"PST03_311_QUEST_REWARD","name":"Kedoran Sketis Pistol","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":75,"minAtk":660,"maxAtk":774},{"itemId":639767,"className":"DAG01_108_QUEST_REWARD","name":"Kedoran Chura","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Dagger","minLevel":120,"minAtk":1035,"maxAtk":1215},{"itemId":639769,"className":"PST03_312_QUEST_REWARD","name":"Kedoran Spiare Pistol","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":120,"minAtk":1035,"maxAtk":1215},{"itemId":639795,"className":"DAG01_104_QUEST_REWARD","name":"Kedoran Superior Dirk Dagger","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Dagger","minLevel":170,"minAtk":1453,"maxAtk":1705},{"itemId":639797,"className":"PST03_305_QUEST_REWARD","name":"Kedoran Alcris","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":170,"minAtk":1453,"maxAtk":1705},{"itemId":639823,"className":"DAG02_107_QUEST_REWARD","name":"Kedoran Pajoritas Dagger","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Dagger","minLevel":220,"minAtk":1870,"maxAtk":2195},{"itemId":639825,"className":"PST03_306_QUEST_REWARD","name":"Kedoran Pajoritas Pistol","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":220,"minAtk":1870,"maxAtk":2195},{"itemId":639847,"className":"DAG04_104_QUEST_REWARD_NT","name":"Kedoran Emengard Dagger","type":"Equip","group":"SubWeapon","weight":75,"maxStack":1,"price":48800,"sellPrice":8868,"equipType1":"Dagger","minLevel":315,"minAtk":3027,"maxAtk":3553},{"itemId":639853,"className":"PST04_104_QUEST_REWARD_NT","name":"Kedoran Aspana Revolver","type":"Equip","group":"SubWeapon","weight":140,"maxStack":1,"price":48800,"sellPrice":8868,"equipType1":"Pistol","equipType2":"Gun","minLevel":315,"minAtk":3027,"maxAtk":3553},{"itemId":639863,"className":"DAG04_112_QUEST_REWARD","name":"Kedoran Raffye Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Dagger","minLevel":350,"minAtk":3359,"maxAtk":3943},{"itemId":639869,"className":"PST04_109_QUEST_REWARD","name":"Kedoran Raffye Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":350,"minAtk":3359,"maxAtk":3943},{"itemId":639883,"className":"DAG04_114_QUEST_REWARD","name":"Kedoran Zvaigzde Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Dagger","minLevel":380,"minAtk":3643,"maxAtk":4277},{"itemId":639885,"className":"PST04_111_QUEST_REWARD","name":"Kedoran Zvaigzde Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":380,"minAtk":3643,"maxAtk":4277},{"itemId":639913,"className":"DAG04_110_QUEST_REWARD","name":"Kedoran Primus Migantis Dagger","type":"Equip","group":"SubWeapon","weight":100,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Dagger","minLevel":270,"minAtk":2600,"maxAtk":3052},{"itemId":639915,"className":"PST04_107_QUEST_REWARD","name":"Kedoran Primus Migantis Pistol","type":"Equip","group":"SubWeapon","weight":120,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":270,"minAtk":2600,"maxAtk":3052},{"itemId":639965,"className":"DAG04_117_QUEST_REWARD","name":"Kedoran Primus Legva Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Dagger","minLevel":400,"minAtk":3833,"maxAtk":4500},{"itemId":639967,"className":"PST04_116_QUEST_REWARD","name":"Kedoran Primus Legva Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":400,"minAtk":3833,"maxAtk":4500},{"itemId":692001,"className":"TRK02_101","name":"Leather Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":33279,"sellPrice":0,"equipType1":"Trinket","minLevel":350,"minAtk":319,"maxAtk":319,"mAtk":319},{"itemId":692002,"className":"TRK02_102","name":"Bone Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Trinket","minLevel":380,"minAtk":346,"maxAtk":346,"mAtk":346},{"itemId":692003,"className":"TRK02_103","name":"Elder Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Trinket","minLevel":400,"minAtk":364,"maxAtk":364,"mAtk":364},{"itemId":693001,"className":"TRK03_101","name":"Berthas Leather Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":33279,"sellPrice":0,"equipType1":"Trinket","minLevel":350,"minAtk":350,"maxAtk":350,"mAtk":350},{"itemId":693002,"className":"TRK03_102","name":"Berthas Bone Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Trinket","minLevel":380,"minAtk":380,"maxAtk":380,"mAtk":380},{"itemId":693003,"className":"TRK03_103","name":"Berthas Elder Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Trinket","minLevel":400,"minAtk":400,"maxAtk":400,"mAtk":400},{"itemId":693004,"className":"TRK03_104","name":"Berthas Dysnai Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Trinket","minLevel":430,"minAtk":430,"maxAtk":430,"mAtk":430},{"itemId":694001,"className":"TRK04_101","name":"Primus Leather Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":33279,"sellPrice":0,"equipType1":"Trinket","minLevel":350,"minAtk":398,"maxAtk":398,"mAtk":398},{"itemId":694002,"className":"TRK04_102","name":"Primus Bone Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Trinket","minLevel":380,"minAtk":432,"maxAtk":432,"mAtk":432},{"itemId":694003,"className":"TRK04_103","name":"Primus Elder Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Trinket","minLevel":400,"minAtk":454,"maxAtk":454,"mAtk":454},{"itemId":694004,"className":"TRK04_104","name":"Primus Dysnai Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Trinket","minLevel":430,"minAtk":488,"maxAtk":488,"mAtk":488},{"itemId":694005,"className":"TRK04_105","name":"Masinios Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":33279,"sellPrice":0,"equipType1":"Trinket","minLevel":350,"minAtk":398,"maxAtk":398,"mAtk":398},{"itemId":694006,"className":"TRK04_106","name":"Wastrel Zvaigzde Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Trinket","minLevel":380,"minAtk":432,"maxAtk":432,"mAtk":432},{"itemId":694007,"className":"TRK04_107","name":"Asio Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":34194,"sellPrice":0,"equipType1":"Trinket","minLevel":380,"minAtk":432,"maxAtk":432,"mAtk":432},{"itemId":694008,"className":"TRK04_108","name":"Skiaclipse Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Trinket","minLevel":400,"minAtk":454,"maxAtk":454,"mAtk":454},{"itemId":694009,"className":"TRK04_109","name":"Moringponia Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Trinket","minLevel":400,"minAtk":454,"maxAtk":454,"mAtk":454},{"itemId":694010,"className":"TRK04_110","name":"Misrus Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Trinket","minLevel":400,"minAtk":454,"maxAtk":454,"mAtk":454},{"itemId":695001,"className":"TRK05_101","name":"Velcoffer Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":33279,"sellPrice":0,"equipType1":"Trinket","minLevel":360,"minAtk":524,"maxAtk":524,"mAtk":524},{"itemId":695002,"className":"TRK05_102","name":"Savinose Elder Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Trinket","minLevel":400,"minAtk":582,"maxAtk":582,"mAtk":582},{"itemId":695003,"className":"TRK05_103","name":"Skiaclipse Varna Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Trinket","minLevel":400,"minAtk":582,"maxAtk":582,"mAtk":582},{"itemId":6360112,"className":"FOREVER_WEAPON_DAG100_102","name":"[4ever] Dagger","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":61,"maxAtk":71,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":6360114,"className":"FOREVER_WEAPON_PST100_102","name":"[4ever] Pistol","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":61,"maxAtk":71,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":6370105,"className":"PVP_PST04_122_2","name":"Vaivora Pistol - Speedloader (20 minutes)","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":4118,"maxAtk":4834,"script":{"strArg":"pvp_Mine"}},{"itemId":6370113,"className":"PVP_DAG04_123_5","name":"Vaivora Dagger - Ecliptic Blades (20 minutes)","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":4118,"maxAtk":4834,"script":{"strArg":"pvp_Mine"}},{"itemId":6370116,"className":"PVP_DAG04_123_6","name":"Vaivora Dagger - Echo (20 minutes)","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":4118,"maxAtk":4834,"script":{"strArg":"pvp_Mine"}},{"itemId":6370123,"className":"PVP_PST04_122_3","name":"Vaivora Pistol - Sabotage (20 minutes)","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":4118,"maxAtk":4834,"script":{"strArg":"pvp_Mine"}},{"itemId":6370124,"className":"PVP_DAG04_123_7","name":"Vaivora Dagger - Gasp Up (20 minutes)","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":4118,"maxAtk":4834,"script":{"strArg":"pvp_Mine"}},{"itemId":6530014,"className":"EP11_DAG05_103","name":"[EP11] Savinose Legva Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Dagger","minLevel":400,"minAtk":4906,"maxAtk":5759},{"itemId":6530015,"className":"EP11_PST05_103","name":"[EP11] Savinose Legva Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":400,"minAtk":4906,"maxAtk":5759},{"itemId":6530029,"className":"EP11_TRK05_102","name":"[EP11] Savinose Elder Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Trinket","minLevel":400,"minAtk":582,"maxAtk":582,"mAtk":582},{"itemId":9999997,"className":"NoWeapon_Shotsword","name":"Empty_weapon","type":"Equip","group":"SubWeapon","weight":1,"maxStack":1,"price":0,"sellPrice":0},{"itemId":10300003,"className":"EVENT_Guild_ABAND_01","name":"Guild Love Armband (Blue)","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":10300006,"className":"ABAND_MOONPOPO","name":"Moonlight Popolion Armband","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Armband","equipType2":"Armband","minLevel":1},{"itemId":10306004,"className":"Event_DAG05_104_Roulette","name":"[Event] Skiaclipse Varna Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Dagger","minLevel":400,"minAtk":4906,"maxAtk":5759},{"itemId":10306005,"className":"Event_PST05_104_Roulette","name":"[Event] Skiaclipse Varna Pistol ","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":400,"minAtk":4906,"maxAtk":5759},{"itemId":10306011,"className":"Event_TRK05_103_Roulette","name":"[Event] Skiaclipse Varna Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Trinket","minLevel":400,"minAtk":582,"maxAtk":582,"mAtk":582},{"itemId":10306051,"className":"Event_EP12_FIELD_DAGGER","name":"[Event] Savinose Dysnai Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Dagger","minLevel":440,"minAtk":6039,"maxAtk":7089},{"itemId":10306053,"className":"Event_EP12_FIELD_PISTOL","name":"[Event] Savinose Dysnai Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":440,"minAtk":6039,"maxAtk":7089},{"itemId":10306057,"className":"Event_EP12_FIELD_TRINKET","name":"[Event] Savinose Dysnai Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":44251,"sellPrice":0,"equipType1":"Trinket","minLevel":440,"minAtk":703,"maxAtk":703,"mAtk":703},{"itemId":10306080,"className":"Event2_EP12_FIELD_DAGGER","name":"[Event] Savinose Dysnai Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Dagger","minLevel":440,"minAtk":6039,"maxAtk":7089},{"itemId":10306082,"className":"Event2_EP12_FIELD_PISTOL","name":"[Event] Savinose Dysnai Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":440,"minAtk":6039,"maxAtk":7089},{"itemId":10306086,"className":"Event2_EP12_FIELD_TRINKET","name":"[Event] Savinose Dysnai Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":44251,"sellPrice":0,"equipType1":"Trinket","minLevel":440,"minAtk":703,"maxAtk":703,"mAtk":703},{"itemId":10306097,"className":"Event_EP12_RAID_DAGGER","name":"[Event] Glacia Legenda Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Dagger","minLevel":440,"minAtk":6039,"maxAtk":7089,"script":{"strArg":"Legenda"}},{"itemId":10306099,"className":"Event_EP12_RAID_PISTOL","name":"[Event] Glacia Legenda Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":440,"minAtk":6039,"maxAtk":7089,"script":{"strArg":"Legenda"}},{"itemId":10306103,"className":"Event_EP12_RAID_TRINKET","name":"[Event] Glacia Legenda Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":44251,"sellPrice":0,"equipType1":"Trinket","minLevel":440,"minAtk":703,"maxAtk":703,"mAtk":703,"script":{"strArg":"Legenda"}},{"itemId":10306126,"className":"Event_EP12_RAID_DAGGER_2","name":"[Event] Glacia Legenda Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Dagger","minLevel":440,"minAtk":6039,"maxAtk":7089,"script":{"strArg":"Legenda"}},{"itemId":10306128,"className":"Event_EP12_RAID_PISTOL_2","name":"[Event] Glacia Legenda Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":440,"minAtk":6039,"maxAtk":7089,"script":{"strArg":"Legenda"}},{"itemId":10306132,"className":"Event_EP12_RAID_TRINKET_2","name":"[Event] Glacia Legenda Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":44251,"sellPrice":0,"equipType1":"Trinket","minLevel":440,"minAtk":703,"maxAtk":703,"mAtk":703,"script":{"strArg":"Legenda"}},{"itemId":10306156,"className":"Event_Growth_Dagger","name":"[Growth] Dagger","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":61,"maxAtk":71,"script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306158,"className":"Event_Growth_Pistol","name":"[Growth] Pistol","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":61,"maxAtk":71,"script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306161,"className":"Event_Growth_Trinket","name":"[Growth] Trinket","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Trinket","minLevel":1,"minAtk":7,"maxAtk":7,"mAtk":7,"script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10310015,"className":"DAG04_120_Ev","name":"[Event] Moringponia Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Dagger","minLevel":400,"minAtk":3833,"maxAtk":4500,"addMaxAtk":296},{"itemId":10310016,"className":"PST04_118_Ev","name":"[Event] Moringponia Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":400,"minAtk":3833,"maxAtk":4500,"addMaxAtk":280},{"itemId":10310017,"className":"PST04_119_Ev","name":"[Event] Moringponia Revolver","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":400,"minAtk":3833,"maxAtk":4500,"addMaxAtk":280},{"itemId":10310018,"className":"TRK04_109_Ev","name":"[Event] Moringponia Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Trinket","minLevel":400,"minAtk":454,"maxAtk":454,"mAtk":454},{"itemId":10310032,"className":"DAG04_121_Ev","name":"[Event] Misrus Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Dagger","minLevel":400,"minAtk":3833,"maxAtk":4500},{"itemId":10310033,"className":"PST04_120_Ev","name":"[Event] Misrus Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":400,"minAtk":3833,"maxAtk":4500},{"itemId":10310034,"className":"TRK04_110_Ev","name":"[Event] Misrus Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Trinket","minLevel":400,"minAtk":454,"maxAtk":454,"mAtk":454},{"itemId":10310050,"className":"DAG_Galimybe","name":"Galimive Dysnai Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Dagger","minLevel":430,"minAtk":4118,"maxAtk":4834},{"itemId":10310051,"className":"PST_Galimybe","name":"Galimive Dysnai Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":430,"minAtk":4118,"maxAtk":4834},{"itemId":10310052,"className":"TRK_Galimybe","name":"Galimive Dysnai Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Trinket","minLevel":430,"minAtk":488,"maxAtk":488,"mAtk":488},{"itemId":10310068,"className":"DAG04_120_Ev_2","name":"[Event] Moringponia Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Dagger","minLevel":400,"minAtk":3833,"maxAtk":4500,"addMaxAtk":296},{"itemId":10310069,"className":"PST04_118_Ev_2","name":"[Event] Moringponia Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":400,"minAtk":3833,"maxAtk":4500,"addMaxAtk":280},{"itemId":10310070,"className":"PST04_119_Ev_2","name":"[Event] Moringponia Revolver","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":400,"minAtk":3833,"maxAtk":4500,"addMaxAtk":280},{"itemId":10310071,"className":"TRK04_109_Ev_2","name":"[Event] Moringponia Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Trinket","minLevel":400,"minAtk":454,"maxAtk":454,"mAtk":454},{"itemId":10310085,"className":"DAG04_121_Ev_2","name":"[Event] Misrus Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Dagger","minLevel":400,"minAtk":3833,"maxAtk":4500},{"itemId":10310086,"className":"PST04_120_Ev_2","name":"[Event] Misrus Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":400,"minAtk":3833,"maxAtk":4500},{"itemId":10310087,"className":"TRK04_110_Ev_2","name":"[Event] Misrus Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":38765,"sellPrice":0,"equipType1":"Trinket","minLevel":400,"minAtk":454,"maxAtk":454,"mAtk":454},{"itemId":10313001,"className":"E_SubWeapon_630010","name":"Vuvuzela (30 Days)","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":10313002,"className":"E_SubWeapon_630012","name":"Shovel (30 Days)","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":10313003,"className":"E_SubWeapon_630013","name":"Detector (30 Days)","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":10313004,"className":"E_SubWeapon_630014","name":"5kg Dumbbell (30 Days)","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":10313005,"className":"E_SubWeapon_630015","name":"Bubble Wrap (30 Days)","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":10313006,"className":"E_SubWeapon_630018","name":"Party Horn (30 Days)","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":10313007,"className":"E_SubWeapon_630021","name":"Snow Spray (30 Days)","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":10313008,"className":"E_SubWeapon_630022","name":"Foldable Stool (30 Days)","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Artefact","minLevel":1},{"itemId":10800023,"className":"Episode12_EP12_FIELD_DAGGER","name":"[EP12] Savinose Dysnai Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Dagger","minLevel":440,"minAtk":6039,"maxAtk":7089},{"itemId":10800025,"className":"Episode12_EP12_FIELD_PISTOL","name":"[EP12] Savinose Dysnai Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":440,"minAtk":6039,"maxAtk":7089},{"itemId":10800029,"className":"Episode12_EP12_FIELD_TRINKET","name":"[EP12] Savinose Dysnai Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":44251,"sellPrice":0,"equipType1":"Trinket","minLevel":440,"minAtk":703,"maxAtk":703,"mAtk":703},{"itemId":10800052,"className":"2021_NewYear_EP12_FIELD_DAGGER","name":"[2021] Savinose Dysnai Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Dagger","minLevel":440,"minAtk":6039,"maxAtk":7089},{"itemId":10800054,"className":"2021_NewYear_EP12_FIELD_PISTOL","name":"[2021] Savinose Dysnai Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":440,"minAtk":6039,"maxAtk":7089},{"itemId":10800058,"className":"2021_NewYear_EP12_FIELD_TRINKET","name":"[2021] Savinose Dysnai Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":44251,"sellPrice":0,"equipType1":"Trinket","minLevel":440,"minAtk":703,"maxAtk":703,"mAtk":703},{"itemId":10999011,"className":"TOSHero_DAGGER","name":"Dagger","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":920,"maxAtk":1080,"mAtk":1000,"def":1000,"mDef":1000,"script":{"strArg":"TOSHeroEquip"}},{"itemId":10999013,"className":"TOSHero_PISTOL","name":"Pistol","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":920,"maxAtk":1080,"mAtk":1000,"def":1000,"mDef":1000,"script":{"strArg":"TOSHeroEquip"}},{"itemId":10999017,"className":"TOSHero_TRINKET","name":"Trinket","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Trinket","minLevel":1,"minAtk":1000,"maxAtk":1000,"mAtk":1000,"def":1000,"mDef":1000,"script":{"strArg":"TOSHeroEquip"}},{"itemId":11002020,"className":"EP12_DAG04_001","name":"Glacia Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Dagger","minLevel":430,"minAtk":4118,"maxAtk":4834},{"itemId":11002024,"className":"EP12_PST04_001","name":"Glacia Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":430,"minAtk":4118,"maxAtk":4834},{"itemId":11002026,"className":"EP12_TRK04_001","name":"Glacia Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":39679,"sellPrice":0,"equipType1":"Trinket","minLevel":430,"minAtk":488,"maxAtk":488,"mAtk":488},{"itemId":11007011,"className":"EP12_Artefact_011","name":"Simmering Starlight Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007015,"className":"EP12_Artefact_015","name":"West Biplane Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007027,"className":"EP12_Artefact_027","name":"Mayflower Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007031,"className":"EP12_Artefact_031","name":"Mayflower Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007043,"className":"EP12_Artefact_043","name":"MusCATeer Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007056,"className":"EP12_Artefact_056","name":"TOS Task Force Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007060,"className":"EP12_Artefact_060","name":"TOS Task Force Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007072,"className":"EP12_Artefact_072","name":"Summer Wave Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007076,"className":"EP12_Artefact_076","name":"Summer Wave Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007088,"className":"EP12_Artefact_088","name":"Honored Rose Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007092,"className":"EP12_Artefact_092","name":"Honored Rose Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007106,"className":"EP13_Artefact_003","name":"Task Unit Green Railgun Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007110,"className":"EP13_Artefact_007","name":"Ice Cold Fish-shaped Bun Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007117,"className":"EP13_Artefact_014","name":"Sweet Ice Cream Cone Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007132,"className":"EP13_Artefact_029","name":"Giltine Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007136,"className":"EP13_Artefact_033","name":"Giltine Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007152,"className":"EP13_Artefact_049","name":"[Appearance Change] Vaivora Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007156,"className":"EP13_Artefact_053","name":"[Appearance Change] Vaivora Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007168,"className":"EP13_Artefact_065","name":"[Appearance Change] Asio Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007172,"className":"EP13_Artefact_069","name":"[Appearance Change] Asio Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007184,"className":"EP13_Artefact_081","name":"[Appearance Change] Wastrel Zvaigzde Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007188,"className":"EP13_Artefact_085","name":"[Appearance Change] Wastrel Zvaigzde Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007200,"className":"EP13_Artefact_097","name":"[Appearance Change] Masinios Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007204,"className":"EP13_Artefact_101","name":"[Appearance Change] Masinios Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007216,"className":"EP13_Artefact_113","name":"[Appearance Change] Moringponia Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007220,"className":"EP13_Artefact_117","name":"[Appearance Change] Moringponia Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007224,"className":"EP13_Artefact_121","name":"TOSummer Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007234,"className":"EP13_Artefact_131","name":"Good ol'days Fine-tooth Brush Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007241,"className":"EP13_Artefact_138","name":"Armonia Pistol of Otherworld","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007242,"className":"EP13_Artefact_139","name":"Athleisure Dumbbell Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007245,"className":"EP13_Artefact_142","name":"Athleisure Massage Gun Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007267,"className":"EP13_Artefact_164","name":"[Appearance Change] Solmiki Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007271,"className":"EP13_Artefact_168","name":"[Appearance Change] Solmiki Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007283,"className":"EP13_Artefact_180","name":"[Appearance Change] Skiaclipse Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007287,"className":"EP13_Artefact_184","name":"[Appearance Change] Skiaclipse Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007299,"className":"EP13_Artefact_196","name":"[Appearance Change] Velcoffer Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007303,"className":"EP13_Artefact_200","name":"[Appearance Change] Velcoffer Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007315,"className":"EP13_Artefact_212","name":"[Appearance Change] Lolopanther Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007319,"className":"EP13_Artefact_216","name":"[Appearance Change] Lolopanther Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007335,"className":"EP12_Re_Artefact_011","name":"[Re] Simmering Starlight Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007339,"className":"EP12_Re_Artefact_015","name":"[Re] West Biplane Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007352,"className":"EP12_Re_Artefact_634161","name":"[Re] Surgical Scalpel Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007353,"className":"EP12_Re_Artefact_634162","name":"[Re] Vital Sign Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007365,"className":"EP12_Re_Artefact_634129","name":"[Re] Cheese Knife","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007368,"className":"EP12_Re_Artefact_634132","name":"[Re] Hand Mixer Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007374,"className":"EP14_Artefact_005","name":"Tos Hero Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007380,"className":"EP14_Artefact_011","name":"TOS Metal Pump Pistol","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11007384,"className":"EP14_Artefact_015","name":"Heliopolis Pharaoh Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11020011,"className":"EP12_FIELD_DAGGER","name":"Savinose Dysnai Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Dagger","minLevel":440,"minAtk":6039,"maxAtk":7089,"script":{"strArg":"Legenda"}},{"itemId":11020013,"className":"EP12_FIELD_PISTOL","name":"Savinose Dysnai Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":440,"minAtk":6039,"maxAtk":7089,"script":{"strArg":"Legenda"}},{"itemId":11020017,"className":"EP12_FIELD_TRINKET","name":"Savinose Dysnai Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":44251,"sellPrice":0,"equipType1":"Trinket","minLevel":440,"minAtk":703,"maxAtk":703,"mAtk":703,"script":{"strArg":"Legenda"}},{"itemId":11020028,"className":"EP12_RAID_DAGGER","name":"Glacia Legenda Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Dagger","minLevel":440,"minAtk":6039,"maxAtk":7089,"script":{"strArg":"Legenda"}},{"itemId":11020030,"className":"EP12_RAID_PISTOL","name":"Glacia Legenda Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":440,"minAtk":6039,"maxAtk":7089,"script":{"strArg":"Legenda"}},{"itemId":11020034,"className":"EP12_RAID_TRINKET","name":"Glacia Legenda Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":44251,"sellPrice":0,"equipType1":"Trinket","minLevel":440,"minAtk":703,"maxAtk":703,"mAtk":703,"script":{"strArg":"Legenda"}},{"itemId":11040014,"className":"Dummy_Dagger_Guilty","name":"Liberated Res Sacrae Dagger","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40},{"itemId":11040018,"className":"Dummy_Pistol_Guilty","name":"Liberated Res Sacrae Pistol","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":34,"maxAtk":40},{"itemId":11095010,"className":"EP13_RAID_DAGGER","name":"Vasilisa Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Dagger","minLevel":460,"minAtk":12078,"maxAtk":14178,"script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11095012,"className":"EP13_RAID_PISTOL","name":"Vasilisa Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":460,"minAtk":12078,"maxAtk":14178,"script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11095016,"className":"EP13_RAID_TRINKET","name":"Vasilisa Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":44342,"sellPrice":0,"equipType1":"Trinket","minLevel":460,"minAtk":1969,"maxAtk":1969,"mAtk":1969,"script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11096510,"className":"GROWTH_REINFORCE_TIER1_DAGGER","name":"Guardian Dagger","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":74,"maxAtk":86,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier1"}},{"itemId":11096512,"className":"GROWTH_REINFORCE_TIER1_PISTOL","name":"Guardian Pistol","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":1,"minAtk":74,"maxAtk":86,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier1"}},{"itemId":11096516,"className":"GROWTH_REINFORCE_TIER1_TRINKET","name":"Guardian Trinket","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":240,"sellPrice":0,"equipType1":"Trinket","minLevel":1,"minAtk":9,"maxAtk":9,"mAtk":9,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier1"}},{"itemId":11096540,"className":"GROWTH_REINFORCE_TIER2_DAGGER","name":"Elite Guardian Dagger","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Dagger","minLevel":120,"minAtk":1716,"maxAtk":2014,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier2"}},{"itemId":11096542,"className":"GROWTH_REINFORCE_TIER2_PISTOL","name":"Elite Guardian Pistol","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":120,"minAtk":1716,"maxAtk":2014,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier2"}},{"itemId":11096546,"className":"GROWTH_REINFORCE_TIER2_TRINKET","name":"Elite Guardian Trinket","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":9312,"sellPrice":0,"equipType1":"Trinket","minLevel":120,"minAtk":310,"maxAtk":310,"mAtk":310,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier2"}},{"itemId":11096580,"className":"GROWTH_REINFORCE_TIER3_DAGGER","name":"Royal Guardian Dagger","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":41280,"sellPrice":0,"equipType1":"Dagger","minLevel":280,"minAtk":7927,"maxAtk":9305,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier3"}},{"itemId":11096582,"className":"GROWTH_REINFORCE_TIER3_PISTOL","name":"Royal Guardian Pistol","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":41280,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":280,"minAtk":7927,"maxAtk":9305,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier3"}},{"itemId":11096586,"className":"GROWTH_REINFORCE_TIER3_TRINKET","name":"Royal Guardian Trinket","type":"Equip","group":"SubWeapon","weight":0,"maxStack":1,"price":24768,"sellPrice":0,"equipType1":"Trinket","minLevel":280,"minAtk":1278,"maxAtk":1278,"mAtk":1278,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier3"}},{"itemId":11100037,"className":"EP14_RAID_DAGGER","name":"Reservoir Dagger","type":"Equip","group":"SubWeapon","weight":70,"maxStack":1,"price":74361,"sellPrice":0,"equipType1":"Dagger","minLevel":480,"minAtk":28107,"maxAtk":32995,"script":{"strArg":"Goddess_Weapon_Lv480"}},{"itemId":11100039,"className":"EP14_RAID_PISTOL","name":"Reservoir Pistol","type":"Equip","group":"SubWeapon","weight":90,"maxStack":1,"price":74361,"sellPrice":0,"equipType1":"Pistol","equipType2":"Gun","minLevel":480,"minAtk":28107,"maxAtk":32995,"script":{"strArg":"Goddess_Weapon_Lv480"}},{"itemId":11100043,"className":"EP14_RAID_TRINKET","name":"Reservoir Trinket","type":"Equip","group":"SubWeapon","weight":20,"maxStack":1,"price":44616,"sellPrice":0,"equipType1":"Trinket","minLevel":480,"minAtk":4583,"maxAtk":4583,"mAtk":4583,"script":{"strArg":"Goddess_Weapon_Lv480"}},{"itemId":11104003,"className":"guiltynelaima_dagger","name":"Goddess Sister's Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":11104008,"className":"EP15_Artefact_002","name":"Lofty Snow Dagger","type":"Equip","group":"SubWeapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Dagger","minLevel":1,"minAtk":34,"maxAtk":40,"script":{"strArg":"WoodCarving"}},{"itemId":900011,"className":"Vis","name":"Silver","type":"Unused","group":"Unused","weight":0,"maxStack":2000000000,"price":10,"sellPrice":1,"minLevel":1},{"itemId":900012,"className":"Feso","name":"Gold","type":"Unused","group":"Unused","weight":0,"maxStack":2000000000,"price":10,"sellPrice":1,"minLevel":1},{"itemId":101101,"className":"SWD01_101","name":"Old Gladius","type":"Equip","group":"Weapon","weight":90,"maxStack":1,"price":400,"sellPrice":80,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38},{"itemId":101102,"className":"SWD01_102","name":"Gladius","type":"Equip","group":"Weapon","weight":90,"maxStack":1,"price":400,"sellPrice":80,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38},{"itemId":101103,"className":"SWD01_103","name":"Crude Falchion","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":400,"sellPrice":106,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38},{"itemId":101104,"className":"SWD01_104","name":"Crude Kaskara","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Sword","equipType2":"Sword","minLevel":15,"minAtk":137,"maxAtk":145},{"itemId":101105,"className":"SWD01_105","name":"Cinquedea","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Sword","equipType2":"Sword","minLevel":15,"minAtk":137,"maxAtk":145},{"itemId":101106,"className":"SWD01_106","name":"Sabre","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":3640,"sellPrice":728,"equipType1":"Sword","equipType2":"Sword","minLevel":40,"minAtk":317,"maxAtk":337},{"itemId":101107,"className":"SWD01_107","name":"Shamshir","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Sword","equipType2":"Sword","minLevel":40,"minAtk":317,"maxAtk":337},{"itemId":101108,"className":"SWD01_108","name":"Scimitar","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Sword","equipType2":"Sword","minLevel":40,"minAtk":317,"maxAtk":337},{"itemId":101109,"className":"SWD01_109","name":"Kris","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Sword","equipType2":"Sword","minLevel":40,"minAtk":317,"maxAtk":337},{"itemId":101110,"className":"SWD01_110","name":"Snickersnee","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":569,"maxAtk":604},{"itemId":101111,"className":"SWD01_111","name":"Old Shamshir","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Sword","equipType2":"Sword","minLevel":40,"minAtk":317,"maxAtk":337},{"itemId":101112,"className":"SWD01_112","name":"Old Scimitar","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Sword","equipType2":"Sword","minLevel":40,"minAtk":317,"maxAtk":337},{"itemId":101113,"className":"SWD01_113","name":"Soldier's Gladius","type":"Equip","group":"Weapon","weight":90,"maxStack":1,"price":400,"sellPrice":80,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":50,"maxAtk":54},{"itemId":101114,"className":"SWD01_114","name":"Mayor's Falchion","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":400,"sellPrice":457,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":94,"maxAtk":99},{"itemId":101115,"className":"SWD01_115","name":"Old Kaskara","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":400,"sellPrice":457,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38},{"itemId":101116,"className":"SWD01_116","name":"Moplah","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":569,"maxAtk":604},{"itemId":101117,"className":"SWD01_117","name":"Superior Gladius","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":400,"sellPrice":80,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38},{"itemId":101118,"className":"SWD01_118","name":"Falchion","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":400,"sellPrice":246,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38},{"itemId":101119,"className":"SWD01_119","name":"Superior Falchion","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":400,"sellPrice":576,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38},{"itemId":101120,"className":"SWD01_120","name":"Kaskara","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Sword","equipType2":"Sword","minLevel":15,"minAtk":137,"maxAtk":145},{"itemId":101121,"className":"SWD01_121","name":"Superior Cinquedea","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Sword","equipType2":"Sword","minLevel":15,"minAtk":137,"maxAtk":145},{"itemId":101122,"className":"SWD01_122","name":"Superior Sabre","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Sword","equipType2":"Sword","minLevel":40,"minAtk":317,"maxAtk":337},{"itemId":101123,"className":"SWD01_123","name":"Superior Shamshir","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Sword","equipType2":"Sword","minLevel":40,"minAtk":317,"maxAtk":337},{"itemId":101124,"className":"SWD01_124","name":"Dunkel Sabre","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":3640,"sellPrice":576,"equipType1":"Sword","equipType2":"Sword","minLevel":40,"minAtk":317,"maxAtk":337},{"itemId":101125,"className":"SWD01_125","name":"Dunkel Snickersnee","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":8583,"sellPrice":1837,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":569,"maxAtk":604},{"itemId":101126,"className":"SWD01_126","name":"Dunkel Falchion","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":400,"sellPrice":106,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38},{"itemId":101127,"className":"SWD01_127","name":"Dunkel Kaskara","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Sword","equipType2":"Sword","minLevel":15,"minAtk":137,"maxAtk":145},{"itemId":101128,"className":"SWD01_128","name":"Dunkel Cinquedea","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Sword","equipType2":"Sword","minLevel":15,"minAtk":137,"maxAtk":145},{"itemId":101129,"className":"SWD01_129","name":"Dunkel Shamshir","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":3640,"sellPrice":1484,"equipType1":"Sword","equipType2":"Sword","minLevel":40,"minAtk":317,"maxAtk":337},{"itemId":101130,"className":"SWD01_130","name":"Kozuka","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":2730,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":569,"maxAtk":604},{"itemId":101131,"className":"SWD01_131","name":"Badelaire","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":3168,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":893,"maxAtk":948},{"itemId":101132,"className":"SWD01_132","name":"Saif","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":4304,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":893,"maxAtk":948},{"itemId":101133,"className":"SWD01_133","name":"Colichemarde","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":15520,"sellPrice":4335,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":893,"maxAtk":948},{"itemId":101134,"className":"SWD01_134","name":"Firangi","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":24252,"sellPrice":5018,"equipType1":"Sword","equipType2":"Sword","minLevel":170,"minAtk":1253,"maxAtk":1331},{"itemId":101135,"className":"SWD01_135","name":"Thorn Cutter","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Sword","equipType2":"Sword","minLevel":170,"minAtk":1253,"maxAtk":1331},{"itemId":101136,"className":"SWD01_136","name":"Demion Sword","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Sword","equipType2":"Sword","minLevel":170,"minAtk":1253,"maxAtk":1331},{"itemId":101137,"className":"SWD01_137","name":"Yorgis Badelaire","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":2730,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":893,"maxAtk":948},{"itemId":101138,"className":"SWD01_138","name":"Koperon Sword","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":32673,"sellPrice":7936,"equipType1":"Sword","equipType2":"Sword","minLevel":220,"minAtk":1613,"maxAtk":1713},{"itemId":101139,"className":"SWD01_139","name":"Superior Koperon Sword","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":32673,"sellPrice":7968,"equipType1":"Sword","equipType2":"Sword","minLevel":220,"minAtk":1613,"maxAtk":1713},{"itemId":101140,"className":"SWD01_140","name":"(Old) Replica Migantis Sword","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":80000,"sellPrice":5000,"equipType1":"Sword","equipType2":"Sword","minLevel":270,"minAtk":1973,"maxAtk":2095},{"itemId":101141,"className":"SWD01_141","name":"(Old) Replica Pevordimas Sword","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":120000,"sellPrice":5000,"equipType1":"Sword","equipType2":"Sword","minLevel":315,"minAtk":2298,"maxAtk":2440},{"itemId":101999,"className":"SWD01_999","name":"Standard Sword","type":"Equip","group":"Weapon","weight":90,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38},{"itemId":102101,"className":"SWD02_101","name":"Panto Sword","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":2880,"sellPrice":784,"equipType1":"Sword","equipType2":"Sword","minLevel":15,"minAtk":152,"maxAtk":161},{"itemId":102102,"className":"SWD02_102","name":"Flonas Sabre","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":8583,"sellPrice":2759,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":632,"maxAtk":671},{"itemId":102104,"className":"SWD02_104","name":"Golden Falchion","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":8583,"sellPrice":1746,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":632,"maxAtk":671},{"itemId":102105,"className":"SWD02_105","name":"Steel Falchion","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Sword","equipType2":"Sword","minLevel":40,"minAtk":352,"maxAtk":374},{"itemId":102106,"className":"SWD02_106","name":"Silver Falchion","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Sword","equipType2":"Sword","minLevel":40,"minAtk":352,"maxAtk":374},{"itemId":102107,"className":"SWD02_107","name":"Mandrapick","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Sword","equipType2":"Sword","minLevel":40,"minAtk":352,"maxAtk":374},{"itemId":102108,"className":"SWD02_108","name":"Wizard Blade","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":3546,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":992,"maxAtk":1054,"addMAtk":134},{"itemId":102109,"className":"SWD02_109","name":"Cheminis Sword","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":1746,"equipType1":"Sword","equipType2":"Sword","minLevel":40,"minAtk":352,"maxAtk":374},{"itemId":102110,"className":"SWD02_110","name":"Austas","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":24252,"sellPrice":6501,"equipType1":"Sword","equipType2":"Sword","minLevel":170,"minAtk":1392,"maxAtk":1479},{"itemId":102111,"className":"SWD02_111","name":"Miskas Sabre","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":632,"maxAtk":671},{"itemId":102112,"className":"SWD02_112","name":"Imperni Sword","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Sword","equipType2":"Sword","minLevel":170,"minAtk":1392,"maxAtk":1479},{"itemId":102113,"className":"SWD02_113","name":"Gritas","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Sword","equipType2":"Sword","minLevel":170,"minAtk":1392,"maxAtk":1479},{"itemId":102114,"className":"SWD02_114","name":"Spatha","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":400,"sellPrice":457,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":40,"maxAtk":42},{"itemId":102115,"className":"SWD02_115","name":"Aras' Falchion","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":400,"sellPrice":106,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":88,"maxAtk":93},{"itemId":102116,"className":"SWD02_116","name":"Smith Sword","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":400,"sellPrice":576,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":40,"maxAtk":42},{"itemId":102117,"className":"SWD02_117","name":"Klavis Sword","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Sword","equipType2":"Sword","minLevel":15,"minAtk":152,"maxAtk":161},{"itemId":102118,"className":"SWD02_118","name":"Dio Sword","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":2880,"sellPrice":728,"equipType1":"Sword","equipType2":"Sword","minLevel":15,"minAtk":152,"maxAtk":161},{"itemId":102119,"className":"SWD02_119","name":"Thresh Sword","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":3640,"sellPrice":1716,"equipType1":"Sword","equipType2":"Sword","minLevel":40,"minAtk":352,"maxAtk":374},{"itemId":102120,"className":"SWD02_120","name":"Sestas Sword","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":8583,"sellPrice":3104,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":632,"maxAtk":671},{"itemId":102121,"className":"SWD02_121","name":"Dratt Sword","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":15520,"sellPrice":4850,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":992,"maxAtk":1054},{"itemId":102122,"className":"SWD02_122","name":"Aston Sword","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Sword","equipType2":"Sword","minLevel":170,"minAtk":1392,"maxAtk":1479},{"itemId":102123,"className":"SWD02_123","name":"Tenet Sword","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":576,"equipType1":"Sword","equipType2":"Sword","minLevel":40,"minAtk":352,"maxAtk":374},{"itemId":102124,"className":"SWD02_124","name":"Patrice Sword","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":576,"equipType1":"Sword","equipType2":"Sword","minLevel":40,"minAtk":352,"maxAtk":374},{"itemId":102125,"className":"SWD02_125","name":"Lukas Sword","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":1512,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":632,"maxAtk":671},{"itemId":102126,"className":"SWD02_126","name":"Philis Sword","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":1512,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":632,"maxAtk":671},{"itemId":102127,"className":"SWD02_127","name":"Escanciu Sword","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":632,"maxAtk":671},{"itemId":102128,"className":"SWD02_128","name":"Krag Sword","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":632,"maxAtk":671},{"itemId":102129,"className":"SWD02_129","name":"Pilgrim Sword","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":2759,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":992,"maxAtk":1054},{"itemId":102130,"className":"SWD02_130","name":"Istora Sword","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":4335,"equipType1":"Sword","equipType2":"Sword","minLevel":170,"minAtk":1392,"maxAtk":1479},{"itemId":102131,"className":"SWD02_131","name":"Artie Saif","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":15520,"sellPrice":3168,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":992,"maxAtk":1054},{"itemId":102132,"className":"SWD02_132","name":"Vienie Badelaire","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":15520,"sellPrice":4304,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":992,"maxAtk":1054},{"itemId":102133,"className":"SWD02_133","name":"Magi Colichemarde","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":15520,"sellPrice":4335,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":992,"maxAtk":1054},{"itemId":102134,"className":"SWD02_134","name":"Lumas Sword","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":15520,"sellPrice":3104,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":992,"maxAtk":1054},{"itemId":102135,"className":"SWD02_135","name":"Artie Farangi","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":24252,"sellPrice":6501,"equipType1":"Sword","equipType2":"Sword","minLevel":170,"minAtk":1392,"maxAtk":1479,"addMDef":18},{"itemId":102136,"className":"SWD02_136","name":"Vienie Thorn Cutter","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Sword","equipType2":"Sword","minLevel":170,"minAtk":1392,"maxAtk":1479},{"itemId":102137,"className":"SWD02_137","name":"Duro Demion Sword","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Sword","equipType2":"Sword","minLevel":170,"minAtk":1392,"maxAtk":1479},{"itemId":102138,"className":"SWD02_138","name":"Vienie Koperon Sword","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":32673,"sellPrice":7936,"equipType1":"Sword","equipType2":"Sword","minLevel":220,"minAtk":1793,"maxAtk":1903},{"itemId":102139,"className":"SWD02_139","name":"Futere Scimitar","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":32673,"sellPrice":7936,"equipType1":"Sword","equipType2":"Sword","minLevel":220,"minAtk":1793,"maxAtk":1903,"addMinAtk":34},{"itemId":102140,"className":"SWD02_140","name":"Magi Shamshir","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":32673,"sellPrice":7936,"equipType1":"Sword","equipType2":"Sword","minLevel":220,"minAtk":1793,"maxAtk":1903},{"itemId":102141,"className":"SWD02_141","name":"Supportive Badelaire","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":8583,"sellPrice":3104,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":632,"maxAtk":671},{"itemId":102150,"className":"SWD02_150","name":"Tevhrin Sword","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":6534,"equipType1":"Sword","equipType2":"Sword","minLevel":220,"minAtk":1793,"maxAtk":1903},{"itemId":102151,"className":"SWD02_151","name":"(Faded) Migantis Sword","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":40000,"sellPrice":5000,"equipType1":"Sword","equipType2":"Sword","minLevel":270,"minAtk":2193,"maxAtk":2328},{"itemId":102152,"className":"SWD02_152","name":"(Faded) Pevordimas Sword","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":48800,"sellPrice":5000,"equipType1":"Sword","equipType2":"Sword","minLevel":315,"minAtk":2553,"maxAtk":2711},{"itemId":102153,"className":"SWD02_153","name":"Migantis Sword","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":270,"minAtk":2193,"maxAtk":2328},{"itemId":102154,"className":"SWD02_154","name":"Pevordimas Sword","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":315,"minAtk":2553,"maxAtk":2711},{"itemId":102155,"className":"SWD02_155","name":"Fyringy","type":"Equip","group":"Weapon","weight":173,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":992,"maxAtk":1054},{"itemId":102156,"className":"SWD02_156","name":"Harvester","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":170,"minAtk":1392,"maxAtk":1479},{"itemId":102157,"className":"SWD02_157","name":"Sketis Sword","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":632,"maxAtk":671},{"itemId":102158,"className":"SWD02_158","name":"Pajoritas Sword","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":220,"minAtk":1793,"maxAtk":1903},{"itemId":102159,"className":"SWD02_159","name":"Raffye Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":350,"minAtk":2833,"maxAtk":3008},{"itemId":102160,"className":"SWD02_160","name":"Zvaigzde Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":380,"minAtk":3073,"maxAtk":3263},{"itemId":102161,"className":"SWD02_161","name":"Legva Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":400,"minAtk":3233,"maxAtk":3433},{"itemId":103101,"className":"SWD03_101","name":"Trinity Sword","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":15520,"sellPrice":3334,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":1092,"maxAtk":1159},{"itemId":103102,"className":"SWD03_102","name":"Durandal","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":8583,"sellPrice":2730,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":695,"maxAtk":738},{"itemId":103103,"className":"SWD03_103","name":"Velniup","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":15520,"sellPrice":3546,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":1092,"maxAtk":1159},{"itemId":103104,"className":"SWD03_104","name":"Fortis","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":15520,"sellPrice":3168,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":1092,"maxAtk":1159},{"itemId":103105,"className":"SWD03_105","name":"Flame","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":24252,"sellPrice":2730,"equipType1":"Sword","equipType2":"Sword","minLevel":170,"minAtk":1532,"maxAtk":1626},{"itemId":103106,"className":"SWD03_106","name":"Deathweaver Cutter","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Sword","equipType2":"Sword","minLevel":15,"minAtk":167,"maxAtk":178},{"itemId":103107,"className":"SWD03_107","name":"Chapparition Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":8583,"sellPrice":1512,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":695,"maxAtk":738},{"itemId":103108,"className":"SWD03_108","name":"noname","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":24252,"sellPrice":7936,"equipType1":"Sword","equipType2":"Sword","minLevel":170,"minAtk":1532,"maxAtk":1626},{"itemId":103109,"className":"SWD03_109","name":"noname","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":4850,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":1092,"maxAtk":1159},{"itemId":103110,"className":"SWD03_110","name":"Shark Cutter","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":32673,"sellPrice":8256,"equipType1":"Sword","equipType2":"Sword","minLevel":220,"minAtk":1972,"maxAtk":2094},{"itemId":103111,"className":"SWD03_111","name":"Seimos Sword","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":15520,"sellPrice":4304,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":1092,"maxAtk":1159},{"itemId":103112,"className":"SWD03_112","name":"noname","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":15520,"sellPrice":80,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":1092,"maxAtk":1159},{"itemId":103113,"className":"SWD03_113","name":"Magas Sword","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Sword","equipType2":"Sword","minLevel":170,"minAtk":1532,"maxAtk":1626},{"itemId":103114,"className":"SWD03_114","name":"Holy Blade","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":24252,"sellPrice":6501,"equipType1":"Sword","equipType2":"Sword","minLevel":170,"minAtk":1532,"maxAtk":1626,"addDef":22},{"itemId":103115,"className":"SWD03_115","name":"Ira Blade","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":32673,"sellPrice":7936,"equipType1":"Sword","equipType2":"Sword","minLevel":220,"minAtk":1972,"maxAtk":2094,"iceRes":56,"lightningRes":56},{"itemId":103116,"className":"SWD03_116","name":"Pensara Sword","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":32673,"sellPrice":6534,"equipType1":"Sword","equipType2":"Sword","minLevel":220,"minAtk":1972,"maxAtk":2094,"addMDef":28},{"itemId":103120,"className":"SWD03_120","name":"Pierene Sword","type":"Equip","group":"Weapon","weight":145,"maxStack":1,"price":48800,"sellPrice":12921,"equipType1":"Sword","equipType2":"Sword","minLevel":315,"minAtk":2808,"maxAtk":2982,"addMDef":330},{"itemId":103301,"className":"SWD03_301","name":"(Faded) Fyringy","type":"Equip","group":"Weapon","weight":173,"maxStack":1,"price":15520,"sellPrice":2730,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":1092,"maxAtk":1159,"addMinAtk":15,"addMaxAtk":27,"addMAtk":-1242},{"itemId":103302,"className":"SWD03_302","name":"(Faded) Harvester","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":24252,"sellPrice":3546,"equipType1":"Sword","equipType2":"Sword","minLevel":170,"minAtk":1532,"maxAtk":1626,"addMAtk":-1889,"darkRes":-72},{"itemId":103303,"className":"SWD03_303","name":"(Faded) Sketis Sword","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":8583,"sellPrice":1512,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":695,"maxAtk":738,"addMinAtk":-10,"addMaxAtk":60},{"itemId":103304,"className":"SWD03_304","name":"(Faded) Pajoritas Sword","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":32673,"sellPrice":6534,"equipType1":"Sword","equipType2":"Sword","minLevel":220,"minAtk":1972,"maxAtk":2094,"addMinAtk":-15,"addMaxAtk":240},{"itemId":103305,"className":"SWD03_305","name":"(Faded) Purine Migantis Sword","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":40000,"sellPrice":5000,"equipType1":"Sword","equipType2":"Sword","minLevel":270,"minAtk":2412,"maxAtk":2561},{"itemId":103306,"className":"SWD03_306","name":"(Faded) Purine Pevordimas Sword","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":315,"minAtk":2808,"maxAtk":2982},{"itemId":103307,"className":"SWD03_307","name":"Berthas Migantis Sword","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":270,"minAtk":2412,"maxAtk":2561},{"itemId":103308,"className":"SWD03_308","name":"Berthas Pevordimas Sword","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":315,"minAtk":2808,"maxAtk":2982},{"itemId":103309,"className":"SWD03_309","name":"Berthas Fyringy","type":"Equip","group":"Weapon","weight":173,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":1092,"maxAtk":1159},{"itemId":103310,"className":"SWD03_310","name":"Berthas Harvester","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":170,"minAtk":1532,"maxAtk":1626},{"itemId":103311,"className":"SWD03_311","name":"Berthas Sketis Sword","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":695,"maxAtk":738},{"itemId":103312,"className":"SWD03_312","name":"Berthas Pajoritas Sword","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":220,"minAtk":1972,"maxAtk":2094},{"itemId":103313,"className":"SWD03_313","name":"Berthas Raffye Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":350,"minAtk":3116,"maxAtk":3309},{"itemId":103314,"className":"SWD03_314","name":"Berthas Zvaigzde Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":380,"minAtk":3380,"maxAtk":3589},{"itemId":103315,"className":"SWD03_315","name":"Berthas Legva Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":400,"minAtk":3556,"maxAtk":3776},{"itemId":103316,"className":"SWD03_316","name":"Berthas Dysnai Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":430,"minAtk":3820,"maxAtk":4057},{"itemId":104101,"className":"SWD04_101","name":"Bendras Sword","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":4304,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":1240,"maxAtk":1317},{"itemId":104102,"className":"SWD04_102","name":"Illizia","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":15520,"sellPrice":4150,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":1240,"maxAtk":1317},{"itemId":104103,"className":"SWD04_103","name":"Galatunis Sword","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":7936,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":1240,"maxAtk":1317},{"itemId":104104,"className":"SWD04_104","name":"Ruma Sword","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":15520,"sellPrice":4850,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":1240,"maxAtk":1317,"holyRes":26},{"itemId":104105,"className":"SWD04_105","name":"noname","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":24252,"sellPrice":80,"equipType1":"Sword","equipType2":"Sword","minLevel":170,"minAtk":1741,"maxAtk":1848},{"itemId":104106,"className":"SWD04_106","name":"Catacombs Blade","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Sword","equipType2":"Sword","minLevel":170,"minAtk":1741,"maxAtk":1848},{"itemId":104107,"className":"SWD04_107","name":"Lolopanther Sword","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":40000,"sellPrice":9760,"equipType1":"Sword","equipType2":"Sword","minLevel":270,"minAtk":3508,"maxAtk":3725},{"itemId":104108,"className":"SWD04_108","name":"Solmiki Sword","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":48800,"sellPrice":12952,"equipType1":"Sword","equipType2":"Sword","minLevel":330,"minAtk":4277,"maxAtk":4541},{"itemId":104109,"className":"SWD04_109","name":"Abdochar","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":48800,"sellPrice":14780,"equipType1":"Sword","equipType2":"Sword","minLevel":315,"minAtk":3191,"maxAtk":3388,"addMaxAtk":158,"addDef":245},{"itemId":104110,"className":"SWD04_110","name":"Primus Migantis Sword","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":270,"minAtk":2741,"maxAtk":2910},{"itemId":104111,"className":"SWD04_111","name":"Primus Pevordimas Sword","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":315,"minAtk":3191,"maxAtk":3388},{"itemId":104112,"className":"SWD04_112","name":"Primus Fyringy","type":"Equip","group":"Weapon","weight":173,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":1240,"maxAtk":1317},{"itemId":104113,"className":"SWD04_113","name":"Primus Harvester","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":170,"minAtk":1741,"maxAtk":1848},{"itemId":104114,"className":"SWD04_114","name":"Primus Sketis Sword","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":790,"maxAtk":839},{"itemId":104115,"className":"SWD04_115","name":"Primus Pajoritas Sword","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":220,"minAtk":2241,"maxAtk":2379},{"itemId":104116,"className":"SWD04_116","name":"Primus Raffye Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":350,"minAtk":3541,"maxAtk":3760},{"itemId":104117,"className":"SWD04_117","name":"Masinios Sword","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":350,"minAtk":3541,"maxAtk":3760},{"itemId":104118,"className":"SWD04_118","name":"Primus Zvaigzde Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":380,"minAtk":3841,"maxAtk":4079},{"itemId":104119,"className":"SWD04_119","name":"Wastrel Zvaigzde Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":380,"minAtk":3841,"maxAtk":4079,"addDef":248,"strike":325},{"itemId":104120,"className":"SWD04_120","name":"Asio Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":380,"minAtk":3841,"maxAtk":4079},{"itemId":104121,"className":"SWD04_121","name":"Primus Legva Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":400,"minAtk":4041,"maxAtk":4291},{"itemId":104122,"className":"SWD04_122","name":"Skiaclipse Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":400,"minAtk":4041,"maxAtk":4291,"slash":305},{"itemId":104123,"className":"SWD04_123","name":"Moringponia Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":400,"minAtk":4041,"maxAtk":4291},{"itemId":104124,"className":"SWD04_124","name":"Misrus Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":400,"minAtk":4041,"maxAtk":4291,"addMDef":420},{"itemId":104125,"className":"SWD04_125","name":"Primus Dysnai Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":430,"minAtk":4341,"maxAtk":4610},{"itemId":105101,"className":"SWD05_101","name":"Velcoffer Sword","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":360,"minAtk":4661,"maxAtk":4949},{"itemId":105102,"className":"SWD05_102","name":"Velcoffer Sword","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":360,"minAtk":4661,"maxAtk":4949},{"itemId":105103,"className":"SWD05_103","name":"Savinose Legva Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":400,"minAtk":5173,"maxAtk":5493},{"itemId":105104,"className":"SWD05_104","name":"Skiaclipse Varna Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":400,"minAtk":5173,"maxAtk":5493},{"itemId":121101,"className":"TSW01_101","name":"Scheduled for deletion","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":170,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53},{"itemId":121102,"className":"TSW01_102","name":"Dunkel Bastard Sword","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THSword","equipType2":"Sword","minLevel":15,"minAtk":133,"maxAtk":200},{"itemId":121103,"className":"TSW01_103","name":"Flamberge","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THSword","equipType2":"Sword","minLevel":15,"minAtk":133,"maxAtk":200},{"itemId":121104,"className":"TSW01_104","name":"Nodachi","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":5824,"sellPrice":1164,"equipType1":"THSword","equipType2":"Sword","minLevel":40,"minAtk":309,"maxAtk":463},{"itemId":121105,"className":"TSW01_105","name":"Claymore","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THSword","equipType2":"Sword","minLevel":40,"minAtk":309,"maxAtk":463},{"itemId":121106,"className":"TSW01_106","name":"Colossus","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THSword","equipType2":"Sword","minLevel":40,"minAtk":309,"maxAtk":463},{"itemId":121107,"className":"TSW01_107","name":"Caliburn","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THSword","equipType2":"Sword","minLevel":40,"minAtk":309,"maxAtk":463},{"itemId":121108,"className":"TSW01_108","name":"Quaddara","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":555,"maxAtk":832},{"itemId":121109,"className":"TSW01_109","name":"Light Claymore","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THSword","equipType2":"Sword","minLevel":40,"minAtk":309,"maxAtk":463},{"itemId":121110,"className":"TSW01_110","name":"Old Colossus","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THSword","equipType2":"Sword","minLevel":40,"minAtk":309,"maxAtk":463},{"itemId":121111,"className":"TSW01_111","name":"Ilwoon","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":555,"maxAtk":832},{"itemId":121112,"className":"TSW01_112","name":"Scheduled for deletion","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":393,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53},{"itemId":121113,"className":"TSW01_113","name":"Practice Bastard Sword","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":640,"sellPrice":921,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53},{"itemId":121114,"className":"TSW01_114","name":"Bastard Sword","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THSword","equipType2":"Sword","minLevel":15,"minAtk":133,"maxAtk":200},{"itemId":121115,"className":"TSW01_115","name":"Superior Flamberge","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THSword","equipType2":"Sword","minLevel":15,"minAtk":133,"maxAtk":200},{"itemId":121116,"className":"TSW01_116","name":"Superior Nodachi","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THSword","equipType2":"Sword","minLevel":40,"minAtk":309,"maxAtk":463},{"itemId":121117,"className":"TSW01_117","name":"Superior Claymore","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THSword","equipType2":"Sword","minLevel":40,"minAtk":309,"maxAtk":463},{"itemId":121118,"className":"TSW01_118","name":"Dunkel Nodachi","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":5824,"sellPrice":921,"equipType1":"THSword","equipType2":"Sword","minLevel":40,"minAtk":309,"maxAtk":463},{"itemId":121119,"className":"TSW01_119","name":"Dunkel Quaddara","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":13732,"sellPrice":2939,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":555,"maxAtk":832},{"itemId":121120,"className":"TSW01_120","name":"Dunkel Flamberge","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THSword","equipType2":"Sword","minLevel":15,"minAtk":133,"maxAtk":200},{"itemId":121121,"className":"TSW01_121","name":"Dunkel Claymore","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":5824,"sellPrice":2374,"equipType1":"THSword","equipType2":"Sword","minLevel":40,"minAtk":309,"maxAtk":463},{"itemId":121122,"className":"TSW01_122","name":"Greatsword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":13732,"sellPrice":4368,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":555,"maxAtk":832},{"itemId":121123,"className":"TSW01_123","name":"Katzbalger","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":24832,"sellPrice":5068,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":870,"maxAtk":1306},{"itemId":121124,"className":"TSW01_124","name":"Dress Sword","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":24832,"sellPrice":6887,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":870,"maxAtk":1306},{"itemId":121125,"className":"TSW01_125","name":"Zweihander","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":24832,"sellPrice":6936,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":870,"maxAtk":1306},{"itemId":121126,"className":"TSW01_126","name":"Executioner's Sword","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":38803,"sellPrice":8030,"equipType1":"THSword","equipType2":"Sword","minLevel":170,"minAtk":1221,"maxAtk":1832},{"itemId":121127,"className":"TSW01_127","name":"Lumai Two-handed Sword","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THSword","equipType2":"Sword","minLevel":170,"minAtk":1221,"maxAtk":1832},{"itemId":121128,"className":"TSW01_128","name":"Overknife","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THSword","equipType2":"Sword","minLevel":170,"minAtk":1221,"maxAtk":1832},{"itemId":121129,"className":"TSW01_129","name":"Yorgis Katzbalger","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":24832,"sellPrice":4368,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":870,"maxAtk":1306},{"itemId":121130,"className":"TSW01_130","name":"Twin Blade","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":52276,"sellPrice":12697,"equipType1":"THSword","equipType2":"Sword","minLevel":220,"minAtk":1572,"maxAtk":2359},{"itemId":121131,"className":"TSW01_131","name":"Superior Twin Blade","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":52276,"sellPrice":12748,"equipType1":"THSword","equipType2":"Sword","minLevel":220,"minAtk":1572,"maxAtk":2359},{"itemId":121132,"className":"TSW01_132","name":"(Faded) Replica Migantis Two-handed Sword","type":"Equip","group":"Weapon","weight":270,"maxStack":1,"price":96000,"sellPrice":5000,"equipType1":"THSword","equipType2":"Sword","minLevel":270,"minAtk":1923,"maxAtk":2885},{"itemId":121133,"className":"TSW01_133","name":"(Faded) Replica Pevordimas Two-handed Sword","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":144000,"sellPrice":5000,"equipType1":"THSword","equipType2":"Sword","minLevel":315,"minAtk":2239,"maxAtk":3359},{"itemId":121999,"className":"TSW01_999","name":"Standard Two-handed Sword","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":8000,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":15,"minAtk":133,"maxAtk":200},{"itemId":122101,"className":"TSW02_101","name":"Potentia","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THSword","equipType2":"Sword","minLevel":15,"minAtk":148,"maxAtk":222},{"itemId":122102,"className":"TSW02_102","name":"Temsus Flamberge","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THSword","equipType2":"Sword","minLevel":15,"minAtk":148,"maxAtk":222},{"itemId":122103,"className":"TSW02_103","name":"Didel Colossus","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THSword","equipType2":"Sword","minLevel":40,"minAtk":343,"maxAtk":515},{"itemId":122104,"className":"TSW02_104","name":"Collecture","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":122105,"className":"TSW02_105","name":"Hogma Greatsword","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":122106,"className":"TSW02_106","name":"Cheminis Bastard Sword","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":5824,"sellPrice":2794,"equipType1":"THSword","equipType2":"Sword","minLevel":40,"minAtk":343,"maxAtk":515},{"itemId":122107,"className":"TSW02_107","name":"Primaluce","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":13732,"sellPrice":4368,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":122108,"className":"TSW02_108","name":"Kindzal","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":13732,"sellPrice":4414,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":122109,"className":"TSW02_109","name":"Imperni Two-handed Sword","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":122110,"className":"TSW02_110","name":"Prieblanda","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":24832,"sellPrice":6887,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":967,"maxAtk":1451},{"itemId":122111,"className":"TSW02_111","name":"Lapis Katzbalger","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":13732,"sellPrice":4368,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":122112,"className":"TSW02_112","name":"Smith Two-handed Sword","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":921,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":39,"maxAtk":59},{"itemId":122113,"className":"TSW02_113","name":"Klavis Two-handed Sword","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":13732,"sellPrice":4368,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":122114,"className":"TSW02_114","name":"Dio Two-handed Sword","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":4608,"sellPrice":1164,"equipType1":"THSword","equipType2":"Sword","minLevel":15,"minAtk":148,"maxAtk":222},{"itemId":122115,"className":"TSW02_115","name":"Thresh Two-handed Sword","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":5824,"sellPrice":2746,"equipType1":"THSword","equipType2":"Sword","minLevel":40,"minAtk":343,"maxAtk":515},{"itemId":122116,"className":"TSW02_116","name":"Sestas Two-handed Sword","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":13732,"sellPrice":4966,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":122117,"className":"TSW02_117","name":"Dratt Two-handed Sword","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":24832,"sellPrice":7760,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":967,"maxAtk":1451},{"itemId":122118,"className":"TSW02_118","name":"Aston Two-handed Sword","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THSword","equipType2":"Sword","minLevel":170,"minAtk":1357,"maxAtk":2036},{"itemId":122119,"className":"TSW02_119","name":"Tenet Two-handed Sword","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":5824,"sellPrice":921,"equipType1":"THSword","equipType2":"Sword","minLevel":40,"minAtk":343,"maxAtk":515},{"itemId":122120,"className":"TSW02_120","name":"Patrice Two-handed Sword","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":5824,"sellPrice":921,"equipType1":"THSword","equipType2":"Sword","minLevel":40,"minAtk":343,"maxAtk":515},{"itemId":122121,"className":"TSW02_121","name":"Lukas Two-handed Sword","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":13732,"sellPrice":2419,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":122122,"className":"TSW02_122","name":"Philips Two-handed Sword","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":13732,"sellPrice":2419,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":122123,"className":"TSW02_123","name":"Escanciu Two-handed Sword","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":122124,"className":"TSW02_124","name":"Krag Two-handed Sword","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":122125,"className":"TSW02_125","name":"Pilgrim Two-handed Sword","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":24832,"sellPrice":4414,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":967,"maxAtk":1451},{"itemId":122126,"className":"TSW02_126","name":"Istora Two-handed Sword","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":38803,"sellPrice":6936,"equipType1":"THSword","equipType2":"Sword","minLevel":170,"minAtk":1357,"maxAtk":2036},{"itemId":122127,"className":"TSW02_127","name":"Jaas Katzbalger","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":5068,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":967,"maxAtk":1451},{"itemId":122128,"className":"TSW02_128","name":"Earth Dress Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":6887,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":967,"maxAtk":1451,"earthRes":19},{"itemId":122129,"className":"TSW02_129","name":"Slaake Zweihander","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":6936,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":967,"maxAtk":1451},{"itemId":122130,"className":"TSW02_130","name":"Lumas Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":4966,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":967,"maxAtk":1451},{"itemId":122131,"className":"TSW02_131","name":"Magi Executioner's Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":10401,"equipType1":"THSword","equipType2":"Sword","minLevel":170,"minAtk":1357,"maxAtk":2036},{"itemId":122132,"className":"TSW02_132","name":"Artie Greatsword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THSword","equipType2":"Sword","minLevel":170,"minAtk":1357,"maxAtk":2036},{"itemId":122133,"className":"TSW02_133","name":"Vienie Overknife","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THSword","equipType2":"Sword","minLevel":170,"minAtk":1357,"maxAtk":2036},{"itemId":122134,"className":"TSW02_134","name":"Duris Twin Blade","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":52276,"sellPrice":12697,"equipType1":"THSword","equipType2":"Sword","minLevel":220,"minAtk":1747,"maxAtk":2621},{"itemId":122135,"className":"TSW02_135","name":"Eki Lumai Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":52276,"sellPrice":12697,"equipType1":"THSword","equipType2":"Sword","minLevel":220,"minAtk":1747,"maxAtk":2621},{"itemId":122136,"className":"TSW02_136","name":"Vienie Twin Blade","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":52276,"sellPrice":12748,"equipType1":"THSword","equipType2":"Sword","minLevel":220,"minAtk":1747,"maxAtk":2621},{"itemId":122137,"className":"TSW02_137","name":"Supportive Katzbalger","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":13732,"sellPrice":5068,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":122150,"className":"TSW02_150","name":"Tevhrin Two-handed Sword","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":52276,"sellPrice":10455,"equipType1":"THSword","equipType2":"Sword","minLevel":220,"minAtk":1747,"maxAtk":2621},{"itemId":122151,"className":"TSW02_151","name":"(Faded) Migantis Two-handed Sword","type":"Equip","group":"Weapon","weight":270,"maxStack":1,"price":64000,"sellPrice":5000,"equipType1":"THSword","equipType2":"Sword","minLevel":270,"minAtk":2137,"maxAtk":3206},{"itemId":122152,"className":"TSW02_152","name":"(Faded) Pevordimas Two-handed Sword","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":78080,"sellPrice":5000,"equipType1":"THSword","equipType2":"Sword","minLevel":315,"minAtk":2488,"maxAtk":3732},{"itemId":122153,"className":"TSW02_153","name":"Paulownia","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":967,"maxAtk":1451},{"itemId":122154,"className":"TSW02_154","name":"Crystaras","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":170,"minAtk":1357,"maxAtk":2036},{"itemId":122155,"className":"TSW02_155","name":"Sketis Two-Handed Sword","type":"Equip","group":"Weapon","weight":300,"maxStack":1,"price":13732,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":122156,"className":"TSW02_156","name":"Pajoritas Two-Handed Sword","type":"Equip","group":"Weapon","weight":310,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":220,"minAtk":1747,"maxAtk":2621},{"itemId":122157,"className":"TSW02_157","name":"Migantis Two-handed Sword","type":"Equip","group":"Weapon","weight":270,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":270,"minAtk":2137,"maxAtk":3206},{"itemId":122158,"className":"TSW02_158","name":"Pevordimas Two-handed Sword","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":315,"minAtk":2488,"maxAtk":3732},{"itemId":122159,"className":"TSW02_159","name":"Raffye Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":350,"minAtk":2761,"maxAtk":4142},{"itemId":122160,"className":"TSW02_160","name":"Zvaigzde Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":380,"minAtk":2995,"maxAtk":4493},{"itemId":122161,"className":"TSW02_161","name":"Legva Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":400,"minAtk":3151,"maxAtk":4727},{"itemId":123101,"className":"TSW03_101","name":"Flamini","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":13732,"sellPrice":5017,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":678,"maxAtk":1017},{"itemId":123102,"className":"TSW03_102","name":"Wizard Slayer","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":6936,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":1064,"maxAtk":1596,"addMDef":16,"fireRes":10,"iceRes":10},{"itemId":123103,"className":"TSW03_103","name":"Naktis","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":24832,"sellPrice":6936,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":1064,"maxAtk":1596},{"itemId":123104,"className":"TSW03_104","name":"Luciduce","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":38803,"sellPrice":2419,"equipType1":"THSword","equipType2":"Sword","minLevel":170,"minAtk":1493,"maxAtk":2239},{"itemId":123105,"className":"TSW03_105","name":"Hell and Heaven","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":38803,"sellPrice":8137,"equipType1":"THSword","equipType2":"Sword","minLevel":170,"minAtk":1493,"maxAtk":2239,"pAtk":117,"addDef":-235},{"itemId":123106,"className":"TSW03_106","name":"Deathweaver Tooth","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THSword","equipType2":"Sword","minLevel":15,"minAtk":163,"maxAtk":245},{"itemId":123107,"className":"TSW03_107","name":"Chapparition Two-handed Sword","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THSword","equipType2":"Sword","minLevel":40,"minAtk":378,"maxAtk":566},{"itemId":123108,"className":"TSW03_108","name":"Saw","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":4608,"sellPrice":1388,"equipType1":"THSword","equipType2":"Sword","minLevel":15,"minAtk":163,"maxAtk":245},{"itemId":123109,"className":"TSW03_109","name":"noname","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":38803,"sellPrice":12697,"equipType1":"THSword","equipType2":"Sword","minLevel":170,"minAtk":1493,"maxAtk":2239},{"itemId":123110,"className":"TSW03_110","name":"noname","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":24832,"sellPrice":7760,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":1064,"maxAtk":1596},{"itemId":123111,"className":"TSW03_111","name":"Spell Breaker","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":52276,"sellPrice":12646,"equipType1":"THSword","equipType2":"Sword","minLevel":220,"minAtk":1922,"maxAtk":2883,"addMDef":84},{"itemId":123112,"className":"TSW03_112","name":"Seimos Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":6887,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":1064,"maxAtk":1596},{"itemId":123113,"className":"TSW03_113","name":"Tilly Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":6936,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":1064,"maxAtk":1596},{"itemId":123114,"className":"TSW03_114","name":"Khasti Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THSword","equipType2":"Sword","minLevel":170,"minAtk":1493,"maxAtk":2239,"addMinAtk":38},{"itemId":123115,"className":"TSW03_115","name":"noname","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":128,"equipType1":"THSword","equipType2":"Sword","minLevel":170,"minAtk":1493,"maxAtk":2239},{"itemId":123116,"className":"TSW03_116","name":"noname","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":52276,"sellPrice":128,"equipType1":"THSword","equipType2":"Sword","minLevel":220,"minAtk":1922,"maxAtk":2883},{"itemId":123117,"className":"TSW03_117","name":"Pensara Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":52276,"sellPrice":10455,"equipType1":"THSword","equipType2":"Sword","minLevel":220,"minAtk":1922,"maxAtk":2883,"pAtk":57},{"itemId":123120,"className":"TSW03_120","name":"Gale Slasher","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":78080,"sellPrice":20674,"equipType1":"THSword","equipType2":"Sword","minLevel":315,"minAtk":2737,"maxAtk":4106,"pAtk":111,"addMinAtk":358},{"itemId":123301,"className":"TSW03_301","name":"(Faded) Paulownia","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":24832,"sellPrice":6936,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":1064,"maxAtk":1596,"addMinAtk":84,"addMaxAtk":111,"addMAtk":-2483},{"itemId":123302,"className":"TSW03_302","name":"(Faded) Crystaras","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":38803,"sellPrice":10401,"equipType1":"THSword","equipType2":"Sword","minLevel":170,"minAtk":1493,"maxAtk":2239,"addMAtk":-3428},{"itemId":123303,"className":"TSW03_303","name":"(Faded) Sketis Two-Handed Sword","type":"Equip","group":"Weapon","weight":300,"maxStack":1,"price":13732,"sellPrice":2419,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":678,"maxAtk":1017},{"itemId":123304,"className":"TSW03_304","name":"(Faded) Pajoritas Two-Handed Sword","type":"Equip","group":"Weapon","weight":310,"maxStack":1,"price":52276,"sellPrice":10455,"equipType1":"THSword","equipType2":"Sword","minLevel":220,"minAtk":1922,"maxAtk":2883},{"itemId":123305,"className":"TSW03_305","name":"(Faded) Purine Migantis Two-handed Sword","type":"Equip","group":"Weapon","weight":270,"maxStack":1,"price":64000,"sellPrice":5000,"equipType1":"THSword","equipType2":"Sword","minLevel":270,"minAtk":2351,"maxAtk":3526},{"itemId":123306,"className":"TSW03_306","name":"(Faded) Purine Pevordimas Two-handed Sword","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":78080,"sellPrice":5000,"equipType1":"THSword","equipType2":"Sword","minLevel":315,"minAtk":2737,"maxAtk":4106},{"itemId":123307,"className":"TSW03_307","name":"Berthas Paulownia","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":1064,"maxAtk":1596},{"itemId":123308,"className":"TSW03_308","name":"Berthas Crystaras","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":170,"minAtk":1493,"maxAtk":2239},{"itemId":123309,"className":"TSW03_309","name":"Berthas Sketis Two-handed Sword","type":"Equip","group":"Weapon","weight":300,"maxStack":1,"price":13732,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":678,"maxAtk":1017},{"itemId":123310,"className":"TSW03_310","name":"Berthas Pajoritas Two-handed Sword","type":"Equip","group":"Weapon","weight":310,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":220,"minAtk":1922,"maxAtk":2883},{"itemId":123311,"className":"TSW03_311","name":"Berthas Migantis Two-handed Sword","type":"Equip","group":"Weapon","weight":270,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":270,"minAtk":2351,"maxAtk":3526},{"itemId":123312,"className":"TSW03_312","name":"Berthas Pevordimas Two-handed Sword","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":315,"minAtk":2737,"maxAtk":4106},{"itemId":123313,"className":"TSW03_313","name":"Berthas Raffye Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":350,"minAtk":3037,"maxAtk":4556},{"itemId":123314,"className":"TSW03_314","name":"Berthas Zvaigzde Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":380,"minAtk":3295,"maxAtk":4942},{"itemId":123315,"className":"TSW03_315","name":"Berthas Legva Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":400,"minAtk":3466,"maxAtk":5199},{"itemId":123316,"className":"TSW03_316","name":"Berthas Legva Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":400,"minAtk":3466,"maxAtk":5199},{"itemId":123317,"className":"TSW03_317","name":"Berthas Dysnai Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":430,"minAtk":3724,"maxAtk":5586},{"itemId":124101,"className":"TSW04_101","name":"Nulis","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":24832,"sellPrice":8137,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":1209,"maxAtk":1814},{"itemId":124102,"className":"TSW04_102","name":"Gravity","type":"Equip","group":"Weapon","weight":1840,"maxStack":1,"price":24832,"sellPrice":7922,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":1209,"maxAtk":1814},{"itemId":124103,"className":"TSW04_103","name":"Galatunis Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":12697,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":1209,"maxAtk":1814},{"itemId":124104,"className":"TSW04_104","name":"noname","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":128,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":1209,"maxAtk":1814},{"itemId":124105,"className":"TSW04_105","name":"noname","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":128,"equipType1":"THSword","equipType2":"Sword","minLevel":170,"minAtk":1696,"maxAtk":2545},{"itemId":124106,"className":"TSW04_106","name":"Magi Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THSword","equipType2":"Sword","minLevel":170,"minAtk":1696,"maxAtk":2545},{"itemId":124107,"className":"TSW04_107","name":"Lolopanther Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":64000,"sellPrice":15616,"equipType1":"THSword","equipType2":"Sword","minLevel":270,"minAtk":3420,"maxAtk":5129},{"itemId":124108,"className":"TSW04_108","name":"Solmiki Two-handed Sword","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":78080,"sellPrice":20723,"equipType1":"THSword","equipType2":"Sword","minLevel":330,"minAtk":4168,"maxAtk":6252},{"itemId":124109,"className":"TSW04_109","name":"Sarkmis","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":78080,"sellPrice":23649,"equipType1":"THSword","equipType2":"Sword","minLevel":315,"minAtk":3110,"maxAtk":4665,"darkRes":180},{"itemId":124110,"className":"TSW04_110","name":"Primus Paulownia","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":1209,"maxAtk":1814},{"itemId":124111,"className":"TSW04_111","name":"Primus Crystaras","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":170,"minAtk":1696,"maxAtk":2545},{"itemId":124112,"className":"TSW04_112","name":"Primus Sketis Two-handed Sword","type":"Equip","group":"Weapon","weight":300,"maxStack":1,"price":13732,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":770,"maxAtk":1155},{"itemId":124113,"className":"TSW04_113","name":"Primus Pajoritas Two-handed Sword","type":"Equip","group":"Weapon","weight":310,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":220,"minAtk":2184,"maxAtk":3276},{"itemId":124114,"className":"TSW04_114","name":"Primus Migantis Two-handed Sword","type":"Equip","group":"Weapon","weight":270,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":270,"minAtk":2671,"maxAtk":4007},{"itemId":124115,"className":"TSW04_115","name":"Primus Pevordimas Two-handed Sword","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":315,"minAtk":3110,"maxAtk":4665},{"itemId":124116,"className":"TSW04_116","name":"Primus Raffye Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":350,"minAtk":3451,"maxAtk":5177},{"itemId":124117,"className":"TSW04_117","name":"Masinios Two-handed Sword","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":350,"minAtk":3451,"maxAtk":5177},{"itemId":124118,"className":"TSW04_118","name":"Primus Zvaigzde Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":380,"minAtk":3744,"maxAtk":5616},{"itemId":124119,"className":"TSW04_119","name":"Wastrel Zvaigzde Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":380,"minAtk":3744,"maxAtk":5616},{"itemId":124120,"className":"TSW04_120","name":"Asio Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":380,"minAtk":3744,"maxAtk":5616},{"itemId":124121,"className":"TSW04_121","name":"Primus Legva Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":400,"minAtk":3939,"maxAtk":5909},{"itemId":124122,"className":"TSW04_122","name":"Skiaclipse Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":400,"minAtk":3939,"maxAtk":5909},{"itemId":124123,"className":"TSW04_123","name":"Moringponia Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":400,"minAtk":3939,"maxAtk":5909},{"itemId":124124,"className":"TSW04_124","name":"Misrus Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":400,"minAtk":3939,"maxAtk":5909},{"itemId":124125,"className":"TSW04_125","name":"Primus Dysnai Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":430,"minAtk":4231,"maxAtk":6347},{"itemId":125101,"className":"TSW05_101","name":"Velcoffer Two-handed Sword","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":360,"minAtk":4543,"maxAtk":6814},{"itemId":125102,"className":"TSW05_102","name":"Velcoffer Two-handed Sword","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":360,"minAtk":4543,"maxAtk":6814},{"itemId":125103,"className":"TSW05_103","name":"Savinose Legva Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":400,"minAtk":5042,"maxAtk":7563},{"itemId":125104,"className":"TSW05_104","name":"Skiaclipse Varna Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":400,"minAtk":5042,"maxAtk":7563},{"itemId":141101,"className":"STF01_101","name":"Old Short Rod","type":"Equip","group":"Weapon","weight":90,"maxStack":1,"price":400,"sellPrice":80,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37},{"itemId":141102,"className":"STF01_102","name":"Short Rod","type":"Equip","group":"Weapon","weight":90,"maxStack":1,"price":400,"sellPrice":80,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37},{"itemId":141103,"className":"STF01_103","name":"Crude Long Rod","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":400,"sellPrice":106,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37},{"itemId":141104,"className":"STF01_104","name":"Crude Cane Rover","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Staff","equipType2":"Staff","minLevel":15,"mAtk":141},{"itemId":141105,"className":"STF01_105","name":"Cane","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Staff","equipType2":"Staff","minLevel":15,"mAtk":141},{"itemId":141106,"className":"STF01_106","name":"Crook","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":3640,"sellPrice":728,"equipType1":"Staff","equipType2":"Staff","minLevel":40,"mAtk":327},{"itemId":141107,"className":"STF01_107","name":"Pewter Rod","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Staff","equipType2":"Staff","minLevel":40,"mAtk":327},{"itemId":141108,"className":"STF01_108","name":"Owl Rod","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Staff","equipType2":"Staff","minLevel":40,"mAtk":327},{"itemId":141109,"className":"STF01_109","name":"Rune Rod","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Staff","equipType2":"Staff","minLevel":40,"mAtk":327},{"itemId":141110,"className":"STF01_110","name":"Crystal Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Staff","equipType2":"Staff","minLevel":75,"mAtk":587},{"itemId":141111,"className":"STF01_111","name":"Old Puter Rod","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Staff","equipType2":"Staff","minLevel":40,"mAtk":327},{"itemId":141112,"className":"STF01_112","name":"Old Owl Rod","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Staff","equipType2":"Staff","minLevel":40,"mAtk":327},{"itemId":141113,"className":"STF01_113","name":"Soldier's Short Rod","type":"Equip","group":"Weapon","weight":90,"maxStack":1,"price":400,"sellPrice":80,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":52},{"itemId":141114,"className":"STF01_114","name":"Chieftain's Long Rod","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":400,"sellPrice":457,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":97},{"itemId":141115,"className":"STF01_115","name":"Old Cane Rover","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":400,"sellPrice":576,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37},{"itemId":141116,"className":"STF01_116","name":"Battle Rod","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Staff","equipType2":"Staff","minLevel":75,"mAtk":587},{"itemId":141117,"className":"STF01_117","name":"Superior Short Rod","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":400,"sellPrice":80,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37},{"itemId":141118,"className":"STF01_118","name":"Long Rod","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":400,"sellPrice":246,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37},{"itemId":141119,"className":"STF01_119","name":"Superior Long Rod","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":400,"sellPrice":576,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37},{"itemId":141120,"className":"STF01_120","name":"Cane Rover","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Staff","equipType2":"Staff","minLevel":15,"mAtk":141},{"itemId":141121,"className":"STF01_121","name":"Superior Cane","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Staff","equipType2":"Staff","minLevel":15,"mAtk":141},{"itemId":141122,"className":"STF01_122","name":"Superior Crook","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Staff","equipType2":"Staff","minLevel":40,"mAtk":327},{"itemId":141123,"className":"STF01_123","name":"Superior Puter Rod","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Staff","equipType2":"Staff","minLevel":40,"mAtk":327},{"itemId":141124,"className":"STF01_124","name":"Dunkel Crook","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":3640,"sellPrice":576,"equipType1":"Staff","equipType2":"Staff","minLevel":40,"mAtk":327},{"itemId":141125,"className":"STF01_125","name":"Dunkel Crystal Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":8583,"sellPrice":1837,"equipType1":"Staff","equipType2":"Staff","minLevel":75,"mAtk":587},{"itemId":141126,"className":"STF01_126","name":"Dunkel Long Rod","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":400,"sellPrice":106,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37},{"itemId":141127,"className":"STF01_127","name":"Dunkel Cane Rover","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Staff","equipType2":"Staff","minLevel":15,"mAtk":141},{"itemId":141128,"className":"STF01_128","name":"Dunkel Cane","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Staff","equipType2":"Staff","minLevel":15,"mAtk":141},{"itemId":141129,"className":"STF01_129","name":"Dunkel Pewter Rod","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":3640,"sellPrice":1484,"equipType1":"Staff","equipType2":"Staff","minLevel":40,"mAtk":327},{"itemId":141130,"className":"STF01_130","name":"Snake Rod","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":2730,"equipType1":"Staff","equipType2":"Staff","minLevel":75,"mAtk":587},{"itemId":141131,"className":"STF01_131","name":"Alter Rod","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":3168,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":921},{"itemId":141132,"className":"STF01_132","name":"Nald Rod","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":4304,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":921},{"itemId":141133,"className":"STF01_133","name":"Elder Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":4335,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":921},{"itemId":141134,"className":"STF01_134","name":"Meteor Rod","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":5018,"equipType1":"Staff","equipType2":"Staff","minLevel":170,"mAtk":1292},{"itemId":141135,"className":"STF01_135","name":"Ring Rod","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Staff","equipType2":"Staff","minLevel":170,"mAtk":1292},{"itemId":141136,"className":"STF01_136","name":"Servant Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Staff","equipType2":"Staff","minLevel":170,"mAtk":1292},{"itemId":141137,"className":"STF01_137","name":"Yorgis Alter Rod","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":2730,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":921},{"itemId":141138,"className":"STF01_138","name":"Corona Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":32673,"sellPrice":7936,"equipType1":"Staff","equipType2":"Staff","minLevel":220,"mAtk":1663},{"itemId":141139,"className":"STF01_139","name":"Superior Corona Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":32673,"sellPrice":7968,"equipType1":"Staff","equipType2":"Staff","minLevel":220,"mAtk":1663},{"itemId":141140,"className":"STF01_140","name":"(Faded) Replica Migantis Rod","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":80000,"sellPrice":5000,"equipType1":"Staff","equipType2":"Staff","minLevel":270,"mAtk":2034},{"itemId":141141,"className":"STF01_141","name":"(Faded) Replica Pevordimas Rod","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":120000,"sellPrice":5000,"equipType1":"Staff","equipType2":"Staff","minLevel":315,"mAtk":2369},{"itemId":142101,"className":"STF02_101","name":"Panto Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Staff","equipType2":"Staff","minLevel":15,"mAtk":157},{"itemId":142102,"className":"STF02_102","name":"Ice Rod","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Staff","equipType2":"Staff","minLevel":40,"mAtk":363},{"itemId":142103,"className":"STF02_103","name":"Fire Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":8583,"sellPrice":2673,"equipType1":"Staff","equipType2":"Staff","minLevel":75,"mAtk":652},{"itemId":142104,"className":"STF02_104","name":"Vasia Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":8583,"sellPrice":2730,"equipType1":"Staff","equipType2":"Staff","minLevel":75,"mAtk":652},{"itemId":142105,"className":"STF02_105","name":"Magic Rod","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Staff","equipType2":"Staff","minLevel":40,"mAtk":363},{"itemId":142106,"className":"STF02_106","name":"Grynas Rod","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":15520,"sellPrice":4304,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":1023},{"itemId":142107,"className":"STF02_107","name":"Cheminis Rod","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":1746,"equipType1":"Staff","equipType2":"Staff","minLevel":75,"mAtk":652},{"itemId":142108,"className":"STF02_108","name":"Arch Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":4335,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":1023,"poisonRes":12},{"itemId":142109,"className":"STF02_109","name":"Imperni Rod","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Staff","equipType2":"Staff","minLevel":75,"mAtk":652,"poisonRes":12},{"itemId":142110,"className":"STF02_110","name":"Soldier's Long Rod","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":400,"sellPrice":106,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":91},{"itemId":142111,"className":"STF02_111","name":"Smith Rod","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":400,"sellPrice":576,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":41},{"itemId":142112,"className":"STF02_112","name":"Klavis Rod","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Staff","equipType2":"Staff","minLevel":15,"mAtk":157},{"itemId":142113,"className":"STF02_113","name":"Dio Rod","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":2880,"sellPrice":728,"equipType1":"Staff","equipType2":"Staff","minLevel":15,"mAtk":157},{"itemId":142114,"className":"STF02_114","name":"Thresh Rod","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":3640,"sellPrice":1716,"equipType1":"Staff","equipType2":"Staff","minLevel":40,"mAtk":363},{"itemId":142115,"className":"STF02_115","name":"Sestas Rod","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":8583,"sellPrice":3104,"equipType1":"Staff","equipType2":"Staff","minLevel":75,"mAtk":652},{"itemId":142116,"className":"STF02_116","name":"Dratt Rod","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":4850,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":1023},{"itemId":142117,"className":"STF02_117","name":"Aston Rod","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Staff","equipType2":"Staff","minLevel":170,"mAtk":1436},{"itemId":142118,"className":"STF02_118","name":"Tenet Rod","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":576,"equipType1":"Staff","equipType2":"Staff","minLevel":40,"mAtk":363},{"itemId":142119,"className":"STF02_119","name":"Patrice Rod","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":576,"equipType1":"Staff","equipType2":"Staff","minLevel":40,"mAtk":363},{"itemId":142120,"className":"STF02_120","name":"Lukas Rod","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":1512,"equipType1":"Staff","equipType2":"Staff","minLevel":75,"mAtk":652},{"itemId":142121,"className":"STF02_121","name":"Philis Rod","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":1512,"equipType1":"Staff","equipType2":"Staff","minLevel":75,"mAtk":652},{"itemId":142122,"className":"STF02_122","name":"Escanciu Rod","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Staff","equipType2":"Staff","minLevel":75,"mAtk":652},{"itemId":142123,"className":"STF02_123","name":"Krag Rod","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Staff","equipType2":"Staff","minLevel":75,"mAtk":652},{"itemId":142124,"className":"STF02_124","name":"Pilgrim Rod","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":2759,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":1023},{"itemId":142125,"className":"STF02_125","name":"Istora Rod","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":4335,"equipType1":"Staff","equipType2":"Staff","minLevel":170,"mAtk":1436},{"itemId":142126,"className":"STF02_126","name":"Magi Alter Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":3168,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":1023},{"itemId":142127,"className":"STF02_127","name":"Artie Nald Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":4304,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":1023,"addMDef":12},{"itemId":142128,"className":"STF02_128","name":"Schipell Meteor Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":4335,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":1023},{"itemId":142129,"className":"STF02_129","name":"Lumas Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":3104,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":1023},{"itemId":142130,"className":"STF02_130","name":"Slaake Meteor Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":24252,"sellPrice":6501,"equipType1":"Staff","equipType2":"Staff","minLevel":170,"mAtk":1436},{"itemId":142131,"className":"STF02_131","name":"Hunting Ring Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Staff","equipType2":"Staff","minLevel":170,"mAtk":1436},{"itemId":142132,"className":"STF02_132","name":"Servant Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Staff","equipType2":"Staff","minLevel":170,"mAtk":1436},{"itemId":142133,"className":"STF02_133","name":"Vitt Corona Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":32673,"sellPrice":7936,"equipType1":"Staff","equipType2":"Staff","minLevel":220,"mAtk":1848},{"itemId":142134,"className":"STF02_134","name":"Duris Battle Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":32673,"sellPrice":7936,"equipType1":"Staff","equipType2":"Staff","minLevel":220,"mAtk":1848},{"itemId":142135,"className":"STF02_135","name":"Artie Snake Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":32673,"sellPrice":7968,"equipType1":"Staff","equipType2":"Staff","minLevel":220,"mAtk":1848,"addDef":15},{"itemId":142136,"className":"STF02_136","name":"Supportive Alter Rod","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":8583,"sellPrice":3104,"equipType1":"Staff","equipType2":"Staff","minLevel":75,"mAtk":652},{"itemId":142150,"className":"STF02_150","name":"Tevhrin Rod","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":6534,"equipType1":"Staff","equipType2":"Staff","minLevel":220,"mAtk":1848},{"itemId":142151,"className":"STF02_151","name":"(Faded) Migantis Rod","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":40000,"sellPrice":5000,"equipType1":"Staff","equipType2":"Staff","minLevel":270,"mAtk":2261},{"itemId":142152,"className":"STF02_152","name":"(Faded) Pevordimas Rod","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":48800,"sellPrice":5000,"equipType1":"Staff","equipType2":"Staff","minLevel":315,"mAtk":2632},{"itemId":142153,"className":"STF02_153","name":"Baule Sphere","type":"Equip","group":"Weapon","weight":85,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":1023},{"itemId":142154,"className":"STF02_154","name":"Pamane Rod","type":"Equip","group":"Weapon","weight":90,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":170,"mAtk":1436},{"itemId":142155,"className":"STF02_155","name":"Sketis Rod","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":75,"mAtk":652},{"itemId":142156,"className":"STF02_156","name":"Pajoritas Rod","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":220,"mAtk":1848},{"itemId":142157,"className":"STF02_157","name":"Migantis Rod","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":270,"mAtk":2261},{"itemId":142158,"className":"STF02_158","name":"Pevordimas Rod","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":315,"mAtk":2632},{"itemId":142159,"className":"STF02_159","name":"Raffye Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":350,"mAtk":2921},{"itemId":142160,"className":"STF02_160","name":"Zvaigzde Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":380,"mAtk":3168},{"itemId":142161,"className":"STF02_161","name":"Legva Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":400,"mAtk":3333},{"itemId":143101,"className":"STF03_101","name":"Temere","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":15520,"sellPrice":4884,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":1125},{"itemId":143102,"className":"STF03_102","name":"Ignition","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":24252,"sellPrice":6501,"equipType1":"Staff","equipType2":"Staff","minLevel":170,"mAtk":1579},{"itemId":143103,"className":"STF03_103","name":"Secretum","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":8583,"sellPrice":2730,"equipType1":"Staff","equipType2":"Staff","minLevel":75,"mAtk":717},{"itemId":143104,"className":"STF03_104","name":"Deathweaver Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Staff","equipType2":"Staff","minLevel":15,"mAtk":172},{"itemId":143105,"className":"STF03_105","name":"Chapparition Rod","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Staff","equipType2":"Staff","minLevel":40,"mAtk":399},{"itemId":143106,"className":"STF03_106","name":"noname","type":"Equip","group":"Weapon","weight":90,"maxStack":1,"price":24252,"sellPrice":3104,"equipType1":"Staff","equipType2":"Staff","minLevel":170,"mAtk":1579},{"itemId":143107,"className":"STF03_107","name":"noname","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":15520,"sellPrice":4850,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":1125},{"itemId":143108,"className":"STF03_108","name":"Circle Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":32673,"sellPrice":8000,"equipType1":"Staff","equipType2":"Staff","minLevel":220,"mAtk":2033,"addMDef":19},{"itemId":143109,"className":"STF03_109","name":"Seimos Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":4335,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":1125,"addMAtk":20},{"itemId":143110,"className":"STF03_110","name":"Tilly Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":4365,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":1125},{"itemId":143111,"className":"STF03_111","name":"Khasti Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Staff","equipType2":"Staff","minLevel":170,"mAtk":1579},{"itemId":143112,"className":"STF03_112","name":"Magic Circle","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":24252,"sellPrice":4304,"equipType1":"Staff","equipType2":"Staff","minLevel":170,"mAtk":1579,"addMDef":8},{"itemId":143113,"className":"STF03_113","name":"noname","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":32673,"sellPrice":80,"equipType1":"Staff","equipType2":"Staff","minLevel":220,"mAtk":2033},{"itemId":143114,"className":"STF03_114","name":"Pensara Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":32673,"sellPrice":6534,"equipType1":"Staff","equipType2":"Staff","minLevel":220,"mAtk":2033},{"itemId":143120,"className":"STF03_120","name":"Windia Rod","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":48800,"sellPrice":12921,"equipType1":"Staff","equipType2":"Staff","minLevel":315,"mAtk":2895},{"itemId":143301,"className":"STF03_301","name":"(Faded) Baule Sphere","type":"Equip","group":"Weapon","weight":85,"maxStack":1,"price":15520,"sellPrice":3104,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":1125},{"itemId":143302,"className":"STF03_302","name":"(Faded) Pamane Rod","type":"Equip","group":"Weapon","weight":90,"maxStack":1,"price":24252,"sellPrice":4850,"equipType1":"Staff","equipType2":"Staff","minLevel":170,"mAtk":1579},{"itemId":143303,"className":"STF03_303","name":"(Faded) Sketis Rod","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":8583,"sellPrice":1512,"equipType1":"Staff","equipType2":"Staff","minLevel":75,"mAtk":717,"addMDef":40},{"itemId":143304,"className":"STF03_304","name":"(Faded) Pajoritas Rod","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":32673,"sellPrice":6534,"equipType1":"Staff","equipType2":"Staff","minLevel":220,"mAtk":2033,"addMAtk":30},{"itemId":143305,"className":"STF03_305","name":"(Faded) Purine Migantis Rod","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":40000,"sellPrice":5000,"equipType1":"Staff","equipType2":"Staff","minLevel":270,"mAtk":2487},{"itemId":143306,"className":"STF03_306","name":"(Faded) Purine Pevordimas Rod","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":48800,"sellPrice":5000,"equipType1":"Staff","equipType2":"Staff","minLevel":315,"mAtk":2895},{"itemId":143307,"className":"STF03_307","name":"Berthas Baule Sphere","type":"Equip","group":"Weapon","weight":85,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":1125},{"itemId":143308,"className":"STF03_308","name":"Berthas Pamane Rod","type":"Equip","group":"Weapon","weight":90,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":170,"mAtk":1579},{"itemId":143309,"className":"STF03_309","name":"Berthas Sketis Rod","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":75,"mAtk":717},{"itemId":143310,"className":"STF03_310","name":"Berthas Pajoritas Rod","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":220,"mAtk":2033},{"itemId":143311,"className":"STF03_311","name":"Berthas Migantis Rod","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":270,"mAtk":2487},{"itemId":143312,"className":"STF03_312","name":"Berthas Pevordimas Rod","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":315,"mAtk":2895},{"itemId":143313,"className":"STF03_313","name":"Berthas Raffye Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":350,"mAtk":3213},{"itemId":143314,"className":"STF03_314","name":"Berthas Zvaigzde Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":380,"mAtk":3485},{"itemId":143315,"className":"STF03_315","name":"Berthas Legva Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":400,"mAtk":3666},{"itemId":143316,"className":"STF03_316","name":"Berthas Dysnai Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":430,"mAtk":3939},{"itemId":144101,"className":"STF04_101","name":"Zaima","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":4365,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":1279,"addMAtk":14,"fireRes":-46},{"itemId":144102,"className":"STF04_102","name":"Epos","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":6534,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":1279},{"itemId":144103,"className":"STF04_103","name":"Twinkle Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Staff","equipType2":"Staff","minLevel":15,"mAtk":196},{"itemId":144104,"className":"STF04_104","name":"noname","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":80,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":1279},{"itemId":144105,"className":"STF04_105","name":"Galatunis Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":7936,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":1279},{"itemId":144106,"className":"STF04_106","name":"noname","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":24252,"sellPrice":80,"equipType1":"Staff","equipType2":"Staff","minLevel":170,"mAtk":1794},{"itemId":144107,"className":"STF04_107","name":"Maga Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":24252,"sellPrice":6501,"equipType1":"Staff","equipType2":"Staff","minLevel":170,"mAtk":1794,"earthRes":16},{"itemId":144108,"className":"STF04_108","name":"Lolopanther Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":40000,"sellPrice":9760,"equipType1":"Staff","equipType2":"Staff","minLevel":270,"mAtk":3617},{"itemId":144109,"className":"STF04_109","name":"Solmiki Rod","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":48800,"sellPrice":12952,"equipType1":"Staff","equipType2":"Staff","minLevel":330,"mAtk":4409},{"itemId":144110,"className":"STF04_110","name":"Heart of Glory","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":48800,"sellPrice":14780,"equipType1":"Staff","equipType2":"Staff","minLevel":315,"mAtk":3290,"addDef":132},{"itemId":144111,"className":"STF04_111","name":"Primus Baule Sphere","type":"Equip","group":"Weapon","weight":85,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":1279},{"itemId":144112,"className":"STF04_112","name":"Primus Pamane Rod","type":"Equip","group":"Weapon","weight":90,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":170,"mAtk":1794},{"itemId":144113,"className":"STF04_113","name":"Primus Sketis Rod","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":75,"mAtk":815},{"itemId":144114,"className":"STF04_114","name":"Primus Pajoritas Rod","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":220,"mAtk":2310},{"itemId":144115,"className":"STF04_115","name":"Primus Migantis Rod","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":270,"mAtk":2826},{"itemId":144116,"className":"STF04_116","name":"Primus Pevordimas Rod","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":315,"mAtk":3290},{"itemId":144117,"className":"STF04_117","name":"Primus Raffye Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":350,"mAtk":3651},{"itemId":144118,"className":"STF04_118","name":"Masinios Rod","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":350,"mAtk":3651},{"itemId":144119,"className":"STF04_119","name":"Primus Zvaigzde Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":380,"mAtk":3960},{"itemId":144120,"className":"STF04_120","name":"Asio Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":380,"mAtk":3960,"addMDef":325},{"itemId":144121,"className":"STF04_121","name":"Wastrel Zvaigzde Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":380,"mAtk":3960,"addMAtk":232,"addDef":325},{"itemId":144122,"className":"STF04_122","name":"Primus Legva Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":400,"mAtk":4166},{"itemId":144123,"className":"STF04_123","name":"Skiaclipse Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":400,"mAtk":4166,"addMAtk":372},{"itemId":144124,"className":"STF04_124","name":"Moringponia Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":400,"mAtk":4166},{"itemId":144125,"className":"STF04_125","name":"Misrus Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":400,"mAtk":4166},{"itemId":144126,"className":"STF04_126","name":"Primus Dysnai Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":430,"mAtk":4476},{"itemId":145101,"className":"STF05_101","name":"Velcoffer Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":360,"mAtk":4805},{"itemId":145102,"className":"STF05_102","name":"Velcoffer Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":360,"mAtk":4805},{"itemId":145103,"className":"STF05_103","name":"Savinose Legva Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":400,"mAtk":5333},{"itemId":145104,"className":"STF05_104","name":"Skiaclipse Varna Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":400,"mAtk":5333},{"itemId":161101,"className":"TBW01_101","name":"Old Light Bow","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":128,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53},{"itemId":161102,"className":"TBW01_102","name":"Light Bow","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":128,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53},{"itemId":161103,"className":"TBW01_103","name":"Crude Short Bow","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":170,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53},{"itemId":161104,"className":"TBW01_104","name":"Crude Longbow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THBow","equipType2":"Bow","minLevel":15,"minAtk":133,"maxAtk":200},{"itemId":161105,"className":"TBW01_105","name":"Composite Bow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THBow","equipType2":"Bow","minLevel":15,"minAtk":133,"maxAtk":200},{"itemId":161106,"className":"TBW01_106","name":"Self Bow","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":5824,"sellPrice":1164,"equipType1":"THBow","equipType2":"Bow","minLevel":40,"minAtk":309,"maxAtk":463},{"itemId":161107,"className":"TBW01_107","name":"Rokas Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THBow","equipType2":"Bow","minLevel":40,"minAtk":309,"maxAtk":463},{"itemId":161108,"className":"TBW01_108","name":"Gorithos","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THBow","equipType2":"Bow","minLevel":40,"minAtk":309,"maxAtk":463},{"itemId":161109,"className":"TBW01_109","name":"Gulail","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THBow","equipType2":"Bow","minLevel":40,"minAtk":309,"maxAtk":463},{"itemId":161110,"className":"TBW01_110","name":"Kaman","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THBow","equipType2":"Bow","minLevel":75,"minAtk":555,"maxAtk":832},{"itemId":161111,"className":"TBW01_111","name":"Old Rokas Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":4608,"sellPrice":2419,"equipType1":"THBow","equipType2":"Bow","minLevel":15,"minAtk":133,"maxAtk":200},{"itemId":161112,"className":"TBW01_112","name":"Old Gorithos","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THBow","equipType2":"Bow","minLevel":40,"minAtk":309,"maxAtk":463},{"itemId":161113,"className":"TBW01_113","name":"Soldier's Light Bow","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":128,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":49,"maxAtk":74},{"itemId":161114,"className":"TBW01_114","name":"Mayor's Short Bow","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":731,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":91,"maxAtk":137},{"itemId":161115,"className":"TBW01_115","name":"Old Long Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":4608,"sellPrice":731,"equipType1":"THBow","equipType2":"Bow","minLevel":15,"minAtk":133,"maxAtk":200},{"itemId":161116,"className":"TBW01_116","name":"Gendawa","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THBow","equipType2":"Bow","minLevel":75,"minAtk":555,"maxAtk":832},{"itemId":161117,"className":"TBW01_117","name":"Superior Light Bow","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":640,"sellPrice":128,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53},{"itemId":161118,"className":"TBW01_118","name":"Short Bow","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":393,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53},{"itemId":161119,"className":"TBW01_119","name":"Superior Short Bow","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":640,"sellPrice":921,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53},{"itemId":161120,"className":"TBW01_120","name":"Long Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THBow","equipType2":"Bow","minLevel":15,"minAtk":133,"maxAtk":200},{"itemId":161121,"className":"TBW01_121","name":"Superior Composite Bow","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THBow","equipType2":"Bow","minLevel":15,"minAtk":133,"maxAtk":200},{"itemId":161122,"className":"TBW01_122","name":"Superior Self Bow","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THBow","equipType2":"Bow","minLevel":40,"minAtk":309,"maxAtk":463},{"itemId":161123,"className":"TBW01_123","name":"Superior Rokas Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THBow","equipType2":"Bow","minLevel":40,"minAtk":309,"maxAtk":463},{"itemId":161124,"className":"TBW01_124","name":"Dunkel Self Bow","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":5824,"sellPrice":921,"equipType1":"THBow","equipType2":"Bow","minLevel":40,"minAtk":309,"maxAtk":463},{"itemId":161125,"className":"TBW01_125","name":"Dunkel Kaman","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":13732,"sellPrice":2939,"equipType1":"THBow","equipType2":"Bow","minLevel":75,"minAtk":555,"maxAtk":832},{"itemId":161126,"className":"TBW01_126","name":"Dunkel Short Bow","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":170,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53},{"itemId":161127,"className":"TBW01_127","name":"Dunkel Long Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THBow","equipType2":"Bow","minLevel":15,"minAtk":133,"maxAtk":200},{"itemId":161128,"className":"TBW01_128","name":"Dunkel Composite Bow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THBow","equipType2":"Bow","minLevel":15,"minAtk":133,"maxAtk":200},{"itemId":161129,"className":"TBW01_129","name":"Dunkel Rokas Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":5824,"sellPrice":2374,"equipType1":"THBow","equipType2":"Bow","minLevel":40,"minAtk":309,"maxAtk":463},{"itemId":161130,"className":"TBW01_130","name":"Recurve Bow","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":13732,"sellPrice":4368,"equipType1":"THBow","equipType2":"Bow","minLevel":75,"minAtk":555,"maxAtk":832},{"itemId":161131,"className":"TBW01_131","name":"Siege Bow","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":24832,"sellPrice":5068,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":870,"maxAtk":1306},{"itemId":161132,"className":"TBW01_132","name":"Sniper Bow","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":24832,"sellPrice":6887,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":870,"maxAtk":1306},{"itemId":161133,"className":"TBW01_133","name":"Skull Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":24832,"sellPrice":6936,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":870,"maxAtk":1306},{"itemId":161134,"className":"TBW01_134","name":"Wooden Compound Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":8030,"equipType1":"THBow","equipType2":"Bow","minLevel":170,"minAtk":1221,"maxAtk":1832},{"itemId":161135,"className":"TBW01_135","name":"Tag Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THBow","equipType2":"Bow","minLevel":170,"minAtk":1221,"maxAtk":1832},{"itemId":161136,"className":"TBW01_136","name":"Rogue Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THBow","equipType2":"Bow","minLevel":170,"minAtk":1221,"maxAtk":1832},{"itemId":161137,"className":"TBW01_137","name":"Yorgis Siege Bow","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":24832,"sellPrice":4368,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":870,"maxAtk":1306},{"itemId":161138,"className":"TBW01_138","name":"Wreech Bow","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":52276,"sellPrice":12697,"equipType1":"THBow","equipType2":"Bow","minLevel":220,"minAtk":1572,"maxAtk":2359},{"itemId":161139,"className":"TBW01_139","name":"Superior Wreech Bow","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":52276,"sellPrice":12748,"equipType1":"THBow","equipType2":"Bow","minLevel":220,"minAtk":1572,"maxAtk":2359},{"itemId":161140,"className":"TBW01_140","name":"(Faded) Replica Migantis Bow","type":"Equip","group":"Weapon","weight":270,"maxStack":1,"price":96000,"sellPrice":5000,"equipType1":"THBow","equipType2":"Bow","minLevel":270,"minAtk":1923,"maxAtk":2885},{"itemId":161141,"className":"TBW01_141","name":"(Faded) Replica Pevordimas Bow","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":144000,"sellPrice":5000,"equipType1":"THBow","equipType2":"Bow","minLevel":315,"minAtk":2239,"maxAtk":3359},{"itemId":161999,"className":"TBW01_999","name":"Standard Bow","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":13209,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53},{"itemId":162101,"className":"TBW02_101","name":"Seeker","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THBow","equipType2":"Bow","minLevel":15,"minAtk":148,"maxAtk":222},{"itemId":162102,"className":"TBW02_102","name":"Iron Bow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THBow","equipType2":"Bow","minLevel":40,"minAtk":343,"maxAtk":515},{"itemId":162103,"className":"TBW02_103","name":"Hawk Bow","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THBow","equipType2":"Bow","minLevel":40,"minAtk":343,"maxAtk":515},{"itemId":162104,"className":"TBW02_104","name":"Cheminis Bow","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":5824,"sellPrice":2794,"equipType1":"THBow","equipType2":"Bow","minLevel":40,"minAtk":343,"maxAtk":515},{"itemId":162105,"className":"TBW02_105","name":"Hunting Bow","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":13732,"sellPrice":2842,"equipType1":"THBow","equipType2":"Bow","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":162106,"className":"TBW02_106","name":"Maker Bow","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":13732,"sellPrice":3322,"equipType1":"THBow","equipType2":"Bow","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":162107,"className":"TBW02_107","name":"Savage Bow","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":13732,"sellPrice":4368,"equipType1":"THBow","equipType2":"Bow","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":162108,"className":"TBW02_108","name":"Snake Bow","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":24832,"sellPrice":5335,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":967,"maxAtk":1451},{"itemId":162109,"className":"TBW02_109","name":"Imperni Bow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THBow","equipType2":"Bow","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":162110,"className":"TBW02_110","name":"Lethena Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THBow","equipType2":"Bow","minLevel":170,"minAtk":1357,"maxAtk":2036},{"itemId":162111,"className":"TBW02_111","name":"Strong Bow","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":921,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":39,"maxAtk":59},{"itemId":162112,"className":"TBW02_112","name":"Soldier's Short Bow","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":170,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":86,"maxAtk":129},{"itemId":162113,"className":"TBW02_113","name":"Pulley Bow","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THBow","equipType2":"Bow","minLevel":15,"minAtk":148,"maxAtk":222},{"itemId":162114,"className":"TBW02_114","name":"Smith Bow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":640,"sellPrice":921,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":39,"maxAtk":59},{"itemId":162115,"className":"TBW02_115","name":"Klavis Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THBow","equipType2":"Bow","minLevel":15,"minAtk":148,"maxAtk":222},{"itemId":162116,"className":"TBW02_116","name":"Dio Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":4608,"sellPrice":1164,"equipType1":"THBow","equipType2":"Bow","minLevel":15,"minAtk":148,"maxAtk":222},{"itemId":162117,"className":"TBW02_117","name":"Thresh Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":5824,"sellPrice":2746,"equipType1":"THBow","equipType2":"Bow","minLevel":40,"minAtk":343,"maxAtk":515},{"itemId":162118,"className":"TBW02_118","name":"Sestas Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":13732,"sellPrice":4966,"equipType1":"THBow","equipType2":"Bow","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":162119,"className":"TBW02_119","name":"Dratt Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":7760,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":967,"maxAtk":1451},{"itemId":162120,"className":"TBW02_120","name":"Aston Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THBow","equipType2":"Bow","minLevel":170,"minAtk":1357,"maxAtk":2036},{"itemId":162121,"className":"TBW02_121","name":"Tenet Bow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":5824,"sellPrice":921,"equipType1":"THBow","equipType2":"Bow","minLevel":40,"minAtk":343,"maxAtk":515},{"itemId":162122,"className":"TBW02_122","name":"Patrice Bow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":5824,"sellPrice":921,"equipType1":"THBow","equipType2":"Bow","minLevel":40,"minAtk":343,"maxAtk":515},{"itemId":162123,"className":"TBW02_123","name":"Lukas Bow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":13732,"sellPrice":2419,"equipType1":"THBow","equipType2":"Bow","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":162124,"className":"TBW02_124","name":"Philies Bow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":13732,"sellPrice":2419,"equipType1":"THBow","equipType2":"Bow","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":162125,"className":"TBW02_125","name":"Escanciu Bow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THBow","equipType2":"Bow","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":162126,"className":"TBW02_126","name":"Krag Bow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THBow","equipType2":"Bow","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":162127,"className":"TBW02_127","name":"Pilgrim Bow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":24832,"sellPrice":4414,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":967,"maxAtk":1451},{"itemId":162128,"className":"TBW02_128","name":"Istora Bow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":38803,"sellPrice":6936,"equipType1":"THBow","equipType2":"Bow","minLevel":170,"minAtk":1357,"maxAtk":2036},{"itemId":162129,"className":"TBW02_129","name":"Lightning Siege Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":5068,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":967,"maxAtk":1451},{"itemId":162130,"className":"TBW02_130","name":"Vienie Sniper Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":6887,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":967,"maxAtk":1451},{"itemId":162131,"className":"TBW02_131","name":"Earth Skull Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":6936,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":967,"maxAtk":1451,"earthRes":15},{"itemId":162132,"className":"TBW02_132","name":"Lumas Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":4966,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":967,"maxAtk":1451},{"itemId":162133,"className":"TBW02_133","name":"Poison Wooden Compound Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":10401,"equipType1":"THBow","equipType2":"Bow","minLevel":170,"minAtk":1357,"maxAtk":2036},{"itemId":162134,"className":"TBW02_134","name":"Futere Tag Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THBow","equipType2":"Bow","minLevel":170,"minAtk":1357,"maxAtk":2036,"addMaxAtk":20},{"itemId":162135,"className":"TBW02_135","name":"Vienie Rogue Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THBow","equipType2":"Bow","minLevel":170,"minAtk":1357,"maxAtk":2036},{"itemId":162136,"className":"TBW02_136","name":"Hunting Wreech Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":52276,"sellPrice":12697,"equipType1":"THBow","equipType2":"Bow","minLevel":220,"minAtk":1747,"maxAtk":2621},{"itemId":162137,"className":"TBW02_137","name":"Magi Kaman","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":52276,"sellPrice":12697,"equipType1":"THBow","equipType2":"Bow","minLevel":220,"minAtk":1747,"maxAtk":2621},{"itemId":162138,"className":"TBW02_138","name":"Light Gorithos","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":52276,"sellPrice":12748,"equipType1":"THBow","equipType2":"Bow","minLevel":220,"minAtk":1747,"maxAtk":2621},{"itemId":162139,"className":"TBW02_139","name":"Supportive Siege Bow","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":13732,"sellPrice":4966,"equipType1":"THBow","equipType2":"Bow","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":162150,"className":"TBW02_150","name":"Tevhrin Bow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":52276,"sellPrice":10455,"equipType1":"THBow","equipType2":"Bow","minLevel":220,"minAtk":1747,"maxAtk":2621},{"itemId":162151,"className":"TBW02_151","name":"(Faded) Migantis Bow","type":"Equip","group":"Weapon","weight":270,"maxStack":1,"price":64000,"sellPrice":5000,"equipType1":"THBow","equipType2":"Bow","minLevel":270,"minAtk":2137,"maxAtk":3206},{"itemId":162152,"className":"TBW02_152","name":"(Faded) Pevordimas Bow","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":78080,"sellPrice":5000,"equipType1":"THBow","equipType2":"Bow","minLevel":315,"minAtk":2488,"maxAtk":3732},{"itemId":162153,"className":"TBW02_153","name":"Even Eye","type":"Equip","group":"Weapon","weight":192,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":967,"maxAtk":1451},{"itemId":162154,"className":"TBW02_154","name":"Devini Bow","type":"Equip","group":"Weapon","weight":214,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":170,"minAtk":1357,"maxAtk":2036},{"itemId":162155,"className":"TBW02_155","name":"Sketis Bow","type":"Equip","group":"Weapon","weight":270,"maxStack":1,"price":13732,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":75,"minAtk":616,"maxAtk":924},{"itemId":162156,"className":"TBW02_156","name":"Pajoritas Bow","type":"Equip","group":"Weapon","weight":310,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":220,"minAtk":1747,"maxAtk":2621},{"itemId":162157,"className":"TBW02_157","name":"Migantis Bow","type":"Equip","group":"Weapon","weight":270,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":270,"minAtk":2137,"maxAtk":3206},{"itemId":162158,"className":"TBW02_158","name":"Pevordimas Bow","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":315,"minAtk":2488,"maxAtk":3732},{"itemId":162159,"className":"TBW02_159","name":"Raffye Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":350,"minAtk":2761,"maxAtk":4142},{"itemId":162160,"className":"TBW02_160","name":"Zvaigzde Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":380,"minAtk":2995,"maxAtk":4493},{"itemId":162161,"className":"TBW02_161","name":"Legva Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":400,"minAtk":3151,"maxAtk":4727},{"itemId":163101,"className":"TBW03_101","name":"Wildling Bane","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":4966,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":1064,"maxAtk":1596},{"itemId":163102,"className":"TBW03_102","name":"Equalizer","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THBow","equipType2":"Bow","minLevel":75,"minAtk":678,"maxAtk":1017,"pAtk":25},{"itemId":163103,"className":"TBW03_103","name":"Heart Seeker","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THBow","equipType2":"Bow","minLevel":75,"minAtk":678,"maxAtk":1017},{"itemId":163104,"className":"TBW03_104","name":"Viper","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":38803,"sellPrice":2419,"equipType1":"THBow","equipType2":"Bow","minLevel":170,"minAtk":1493,"maxAtk":2239,"poisonRes":-186},{"itemId":163105,"className":"TBW03_105","name":"Deathweaver Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THBow","equipType2":"Bow","minLevel":15,"minAtk":163,"maxAtk":245},{"itemId":163106,"className":"TBW03_106","name":"Chapparition Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THBow","equipType2":"Bow","minLevel":40,"minAtk":378,"maxAtk":566},{"itemId":163107,"className":"TBW03_107","name":"noname","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":38803,"sellPrice":12697,"equipType1":"THBow","equipType2":"Bow","minLevel":170,"minAtk":1493,"maxAtk":2239},{"itemId":163108,"className":"TBW03_108","name":"Excel Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":24832,"sellPrice":7760,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":1064,"maxAtk":1596},{"itemId":163109,"className":"TBW03_109","name":"Marksman","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":52276,"sellPrice":12800,"equipType1":"THBow","equipType2":"Bow","minLevel":220,"minAtk":1922,"maxAtk":2883},{"itemId":163110,"className":"TBW03_110","name":"Seimos Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":6887,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":1064,"maxAtk":1596,"addMDef":20},{"itemId":163111,"className":"TBW03_111","name":"Tilly Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":7868,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":1064,"maxAtk":1596,"addMinAtk":47},{"itemId":163112,"className":"TBW03_112","name":"Khasti Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THBow","equipType2":"Bow","minLevel":170,"minAtk":1493,"maxAtk":2239},{"itemId":163113,"className":"TBW03_113","name":"noname","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":128,"equipType1":"THBow","equipType2":"Bow","minLevel":170,"minAtk":1493,"maxAtk":2239},{"itemId":163114,"className":"TBW03_114","name":"noname","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":52276,"sellPrice":128,"equipType1":"THBow","equipType2":"Bow","minLevel":220,"minAtk":1922,"maxAtk":2883},{"itemId":163115,"className":"TBW03_115","name":"Pensara Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":52276,"sellPrice":10455,"equipType1":"THBow","equipType2":"Bow","minLevel":220,"minAtk":1922,"maxAtk":2883,"addMDef":23},{"itemId":163120,"className":"TBW03_120","name":"Aufgowle Bow","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":78080,"sellPrice":20674,"equipType1":"THBow","equipType2":"Bow","minLevel":315,"minAtk":2737,"maxAtk":4106,"addMinAtk":148,"addMaxAtk":246},{"itemId":163301,"className":"TBW03_301","name":"(Faded) Even Eye","type":"Equip","group":"Weapon","weight":192,"maxStack":1,"price":24832,"sellPrice":6887,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":1064,"maxAtk":1596},{"itemId":163302,"className":"TBW03_302","name":"(Faded) Devini Bow","type":"Equip","group":"Weapon","weight":214,"maxStack":1,"price":38803,"sellPrice":8030,"equipType1":"THBow","equipType2":"Bow","minLevel":170,"minAtk":1493,"maxAtk":2239,"darkRes":-93},{"itemId":163303,"className":"TBW03_303","name":"(Faded) Sketis Bow","type":"Equip","group":"Weapon","weight":270,"maxStack":1,"price":13732,"sellPrice":2419,"equipType1":"THBow","equipType2":"Bow","minLevel":75,"minAtk":678,"maxAtk":1017},{"itemId":163304,"className":"TBW03_304","name":"(Faded) Pajoritas Bow","type":"Equip","group":"Weapon","weight":310,"maxStack":1,"price":52276,"sellPrice":10455,"equipType1":"THBow","equipType2":"Bow","minLevel":220,"minAtk":1922,"maxAtk":2883},{"itemId":163305,"className":"TBW03_305","name":"(Faded) Purine Migantis Bow","type":"Equip","group":"Weapon","weight":270,"maxStack":1,"price":64000,"sellPrice":5000,"equipType1":"THBow","equipType2":"Bow","minLevel":270,"minAtk":2351,"maxAtk":3526},{"itemId":163306,"className":"TBW03_306","name":"(Faded) Purine Pevordimas Bow","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":78080,"sellPrice":5000,"equipType1":"THBow","equipType2":"Bow","minLevel":315,"minAtk":2737,"maxAtk":4106},{"itemId":163307,"className":"TBW03_307","name":"Berthas Even Eye","type":"Equip","group":"Weapon","weight":192,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":1064,"maxAtk":1596},{"itemId":163308,"className":"TBW03_308","name":"Berthas Devini Bow","type":"Equip","group":"Weapon","weight":214,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":170,"minAtk":1493,"maxAtk":2239},{"itemId":163309,"className":"TBW03_309","name":"Berthas Sketis Bow","type":"Equip","group":"Weapon","weight":270,"maxStack":1,"price":13732,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":75,"minAtk":678,"maxAtk":1017},{"itemId":163310,"className":"TBW03_310","name":"Berthas Pajoritas Bow","type":"Equip","group":"Weapon","weight":310,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":220,"minAtk":1922,"maxAtk":2883},{"itemId":163311,"className":"TBW03_311","name":"Berthas Migantis Bow","type":"Equip","group":"Weapon","weight":270,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":270,"minAtk":2351,"maxAtk":3526},{"itemId":163312,"className":"TBW03_312","name":"Berthas Pevordimas Bow","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":315,"minAtk":2737,"maxAtk":4106},{"itemId":163313,"className":"TBW03_313","name":"Berthas Raffye Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":350,"minAtk":3037,"maxAtk":4556},{"itemId":163314,"className":"TBW03_314","name":"Berthas Zvaigzde Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":380,"minAtk":3295,"maxAtk":4942},{"itemId":163315,"className":"TBW03_315","name":"Berthas Legva Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":400,"minAtk":3466,"maxAtk":5199},{"itemId":163316,"className":"TBW03_316","name":"Berthas Dysnai Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":430,"minAtk":3724,"maxAtk":5586},{"itemId":164101,"className":"TBW04_101","name":"Blood Gain","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":24832,"sellPrice":128,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":1209,"maxAtk":1814},{"itemId":164102,"className":"TBW04_102","name":"Tempest Shooter","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":24832,"sellPrice":6887,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":1209,"maxAtk":1814},{"itemId":164103,"className":"TBW04_103","name":"noname","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":128,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":1209,"maxAtk":1814},{"itemId":164104,"className":"TBW04_104","name":"Galatunis Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":12697,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":1209,"maxAtk":1814},{"itemId":164105,"className":"TBW04_105","name":"noname","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":128,"equipType1":"THBow","equipType2":"Bow","minLevel":170,"minAtk":1696,"maxAtk":2545},{"itemId":164106,"className":"TBW04_106","name":"Maga Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":12697,"equipType1":"THBow","equipType2":"Bow","minLevel":170,"minAtk":1696,"maxAtk":2545},{"itemId":164107,"className":"TBW04_107","name":"Lolopanther Bow","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":64000,"sellPrice":15616,"equipType1":"THBow","equipType2":"Bow","minLevel":270,"minAtk":3420,"maxAtk":5129},{"itemId":164108,"className":"TBW04_108","name":"Solmiki Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":78080,"sellPrice":20723,"equipType1":"THBow","equipType2":"Bow","minLevel":330,"minAtk":4168,"maxAtk":6252},{"itemId":164109,"className":"TBW04_109","name":"Astra Bow","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":78080,"sellPrice":23649,"equipType1":"THBow","equipType2":"Bow","minLevel":315,"minAtk":3110,"maxAtk":4665},{"itemId":164110,"className":"TBW04_110","name":"Primus Even Eye","type":"Equip","group":"Weapon","weight":192,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":1209,"maxAtk":1814},{"itemId":164111,"className":"TBW04_111","name":"Primus Devini Bow","type":"Equip","group":"Weapon","weight":214,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":170,"minAtk":1696,"maxAtk":2545},{"itemId":164112,"className":"TBW04_112","name":"Primus Sketis Bow","type":"Equip","group":"Weapon","weight":270,"maxStack":1,"price":13732,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":75,"minAtk":770,"maxAtk":1155},{"itemId":164113,"className":"TBW04_113","name":"Primus Pajoritas Bow","type":"Equip","group":"Weapon","weight":310,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":220,"minAtk":2184,"maxAtk":3276},{"itemId":164114,"className":"TBW04_114","name":"Primus Migantis Bow","type":"Equip","group":"Weapon","weight":270,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":270,"minAtk":2671,"maxAtk":4007},{"itemId":164115,"className":"TBW04_115","name":"Primus Pevordimas Bow","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":315,"minAtk":3110,"maxAtk":4665},{"itemId":164116,"className":"TBW04_116","name":"Primus Raffye Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":350,"minAtk":3451,"maxAtk":5177},{"itemId":164117,"className":"TBW04_117","name":"Masinios Bow","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":350,"minAtk":3451,"maxAtk":5177},{"itemId":164118,"className":"TBW04_118","name":"Primus Zvaigzde Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":380,"minAtk":3744,"maxAtk":5616},{"itemId":164119,"className":"TBW04_119","name":"Wastrel Zvaigzde Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":380,"minAtk":3744,"maxAtk":5616},{"itemId":164120,"className":"TBW04_120","name":"Asio Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":380,"minAtk":3744,"maxAtk":5616},{"itemId":164121,"className":"TBW04_121","name":"Primus Legva Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":400,"minAtk":3939,"maxAtk":5909},{"itemId":164122,"className":"TBW04_122","name":"Skiaclipse Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":400,"minAtk":3939,"maxAtk":5909},{"itemId":164123,"className":"TBW04_123","name":"Moringponia Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":400,"minAtk":3939,"maxAtk":5909},{"itemId":164124,"className":"TBW04_124","name":"Misrus Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":400,"minAtk":3939,"maxAtk":5909},{"itemId":164125,"className":"TBW04_125","name":"Primus Dysnai Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":430,"minAtk":4231,"maxAtk":6347},{"itemId":164999,"className":"TBW04_999","name":"Fixed Bow","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":100,"sellPrice":4323,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":49,"maxAtk":73},{"itemId":165101,"className":"TBW05_101","name":"Velcoffer Bow","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":360,"minAtk":4543,"maxAtk":6814},{"itemId":165102,"className":"TBW05_102","name":"Velcoffer Bow","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":360,"minAtk":4543,"maxAtk":6814},{"itemId":165103,"className":"TBW05_103","name":"Savinose Legva Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":400,"minAtk":5042,"maxAtk":7563},{"itemId":165104,"className":"TBW05_104","name":"Skiaclipse Varna Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":400,"minAtk":5042,"maxAtk":7563},{"itemId":181101,"className":"BOW01_101","name":"Crude Light Crossbow","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":400,"sellPrice":106,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38},{"itemId":181102,"className":"BOW01_102","name":"Crude Crossbow","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Bow","equipType2":"Bow","minLevel":15,"minAtk":137,"maxAtk":145},{"itemId":181103,"className":"BOW01_103","name":"Dokyu","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Bow","equipType2":"Bow","minLevel":15,"minAtk":137,"maxAtk":145},{"itemId":181104,"className":"BOW01_104","name":"Quarrel Bow","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":3640,"sellPrice":728,"equipType1":"Bow","equipType2":"Bow","minLevel":40,"minAtk":317,"maxAtk":337},{"itemId":181105,"className":"BOW01_105","name":"Oak Crossbow","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Bow","equipType2":"Bow","minLevel":40,"minAtk":317,"maxAtk":337},{"itemId":181106,"className":"BOW01_106","name":"Seal Crossbow","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Bow","equipType2":"Bow","minLevel":40,"minAtk":317,"maxAtk":337},{"itemId":181107,"className":"BOW01_107","name":"Catapult","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Bow","equipType2":"Bow","minLevel":40,"minAtk":317,"maxAtk":337},{"itemId":181108,"className":"BOW01_108","name":"Cranequin","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Bow","equipType2":"Bow","minLevel":75,"minAtk":569,"maxAtk":604},{"itemId":181109,"className":"BOW01_109","name":"Old Oak Crossbow","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":2880,"sellPrice":1512,"equipType1":"Bow","equipType2":"Bow","minLevel":15,"minAtk":137,"maxAtk":145},{"itemId":181110,"className":"BOW01_110","name":"Old Seal Crossbow","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Bow","equipType2":"Bow","minLevel":40,"minAtk":317,"maxAtk":337},{"itemId":181111,"className":"BOW01_111","name":"Sniper Crossbow","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Bow","equipType2":"Bow","minLevel":75,"minAtk":569,"maxAtk":604},{"itemId":181112,"className":"BOW01_112","name":"Light Crossbow","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":400,"sellPrice":246,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38},{"itemId":181113,"className":"BOW01_113","name":"Superior Light Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":400,"sellPrice":576,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38},{"itemId":181114,"className":"BOW01_114","name":"Crossbow","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Bow","equipType2":"Bow","minLevel":15,"minAtk":137,"maxAtk":145},{"itemId":181115,"className":"BOW01_115","name":"Superior Dokyu","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Bow","equipType2":"Bow","minLevel":15,"minAtk":137,"maxAtk":145},{"itemId":181116,"className":"BOW01_116","name":"Superior Quarrel Bow","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Bow","equipType2":"Bow","minLevel":40,"minAtk":317,"maxAtk":337},{"itemId":181117,"className":"BOW01_117","name":"Superior Oak Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Bow","equipType2":"Bow","minLevel":40,"minAtk":317,"maxAtk":337},{"itemId":181118,"className":"BOW01_118","name":"Dunkel Quarrel Bow","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":3640,"sellPrice":576,"equipType1":"Bow","equipType2":"Bow","minLevel":40,"minAtk":317,"maxAtk":337},{"itemId":181119,"className":"BOW01_119","name":"Dunkel Cranequin","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":8583,"sellPrice":1837,"equipType1":"Bow","equipType2":"Bow","minLevel":75,"minAtk":569,"maxAtk":604},{"itemId":181120,"className":"BOW01_120","name":"Dunkel Crossbow","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Bow","equipType2":"Bow","minLevel":15,"minAtk":137,"maxAtk":145},{"itemId":181121,"className":"BOW01_121","name":"Dunkel Dokyu","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Bow","equipType2":"Bow","minLevel":15,"minAtk":137,"maxAtk":145},{"itemId":181122,"className":"BOW01_122","name":"Dunkel Oak Crossbow","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":3640,"sellPrice":1484,"equipType1":"Bow","equipType2":"Bow","minLevel":40,"minAtk":317,"maxAtk":337},{"itemId":181123,"className":"BOW01_123","name":"Arbalest","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":8583,"sellPrice":2730,"equipType1":"Bow","equipType2":"Bow","minLevel":75,"minAtk":569,"maxAtk":604},{"itemId":181124,"className":"BOW01_124","name":"Fedimian Turret","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":3168,"equipType1":"Bow","equipType2":"Bow","minLevel":120,"minAtk":893,"maxAtk":948},{"itemId":181125,"className":"BOW01_125","name":"Veteran Crossbow","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":4304,"equipType1":"Bow","equipType2":"Bow","minLevel":120,"minAtk":893,"maxAtk":948},{"itemId":181126,"className":"BOW01_126","name":"Bullet Shooter","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":4335,"equipType1":"Bow","equipType2":"Bow","minLevel":120,"minAtk":893,"maxAtk":948},{"itemId":181127,"className":"BOW01_127","name":"Black Tip Bow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":24252,"sellPrice":5018,"equipType1":"Bow","equipType2":"Bow","minLevel":170,"minAtk":1253,"maxAtk":1331},{"itemId":181128,"className":"BOW01_128","name":"Spiked Crossbow","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Bow","equipType2":"Bow","minLevel":170,"minAtk":1253,"maxAtk":1331},{"itemId":181129,"className":"BOW01_129","name":"Windlass","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Bow","equipType2":"Bow","minLevel":170,"minAtk":1253,"maxAtk":1331},{"itemId":181130,"className":"BOW01_130","name":"Yorgis Fedimian Turret","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":2730,"equipType1":"Bow","equipType2":"Bow","minLevel":120,"minAtk":893,"maxAtk":948},{"itemId":181131,"className":"BOW01_131","name":"Kracked Shooter","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":32673,"sellPrice":7936,"equipType1":"Bow","equipType2":"Bow","minLevel":220,"minAtk":1613,"maxAtk":1713},{"itemId":181132,"className":"BOW01_132","name":"Superior Kracked Shooter","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":32673,"sellPrice":7968,"equipType1":"Bow","equipType2":"Bow","minLevel":220,"minAtk":1613,"maxAtk":1713},{"itemId":181133,"className":"BOW01_133","name":"(Faded) Replica Migantis Crossbow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":80000,"sellPrice":5000,"equipType1":"Bow","equipType2":"Bow","minLevel":270,"minAtk":1973,"maxAtk":2095},{"itemId":181134,"className":"BOW01_134","name":"(Faded) Replica Pevordimas Crossbow","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":120000,"sellPrice":5000,"equipType1":"Bow","equipType2":"Bow","minLevel":315,"minAtk":2298,"maxAtk":2440},{"itemId":181999,"className":"BOW01_999","name":"Standard Crossbow","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":2880,"sellPrice":8256,"equipType1":"Bow","equipType2":"Bow","minLevel":15,"minAtk":137,"maxAtk":145},{"itemId":182101,"className":"BOW02_101","name":"Superior Crossbow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Bow","equipType2":"Bow","minLevel":15,"minAtk":152,"maxAtk":161},{"itemId":182102,"className":"BOW02_102","name":"Wide Crossbow","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Bow","equipType2":"Bow","minLevel":40,"minAtk":352,"maxAtk":374},{"itemId":182103,"className":"BOW02_103","name":"Grand Cross","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Bow","equipType2":"Bow","minLevel":40,"minAtk":352,"maxAtk":374},{"itemId":182104,"className":"BOW02_104","name":"Cheminis Crossbow","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":1746,"equipType1":"Bow","equipType2":"Bow","minLevel":40,"minAtk":352,"maxAtk":374},{"itemId":182105,"className":"BOW02_105","name":"Medina Crossbow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":8583,"sellPrice":2076,"equipType1":"Bow","equipType2":"Bow","minLevel":75,"minAtk":632,"maxAtk":671},{"itemId":182106,"className":"BOW02_106","name":"Regina Crossbow","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":8583,"sellPrice":2730,"equipType1":"Bow","equipType2":"Bow","minLevel":75,"minAtk":632,"maxAtk":671},{"itemId":182107,"className":"BOW02_107","name":"Accuracy Crossbow","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":3168,"equipType1":"Bow","equipType2":"Bow","minLevel":120,"minAtk":992,"maxAtk":1054},{"itemId":182108,"className":"BOW02_108","name":"Imperni Crossbow","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Bow","equipType2":"Bow","minLevel":75,"minAtk":632,"maxAtk":671},{"itemId":182109,"className":"BOW02_109","name":"Grave Crossbow","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Bow","equipType2":"Bow","minLevel":170,"minAtk":1392,"maxAtk":1479},{"itemId":182110,"className":"BOW02_110","name":"Smith Crossbow","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":400,"sellPrice":576,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":40,"maxAtk":42},{"itemId":182111,"className":"BOW02_111","name":"Klavis Crossbow","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Bow","equipType2":"Bow","minLevel":15,"minAtk":152,"maxAtk":161},{"itemId":182112,"className":"BOW02_112","name":"Dio Crossbow","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":2880,"sellPrice":728,"equipType1":"Bow","equipType2":"Bow","minLevel":15,"minAtk":152,"maxAtk":161},{"itemId":182113,"className":"BOW02_113","name":"Thresh Crossbow","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":3640,"sellPrice":1716,"equipType1":"Bow","equipType2":"Bow","minLevel":40,"minAtk":352,"maxAtk":374},{"itemId":182114,"className":"BOW02_114","name":"Sestas Crossbow","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":8583,"sellPrice":3104,"equipType1":"Bow","equipType2":"Bow","minLevel":75,"minAtk":632,"maxAtk":671},{"itemId":182115,"className":"BOW02_115","name":"Dratt Crossbow","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":15520,"sellPrice":4850,"equipType1":"Bow","equipType2":"Bow","minLevel":120,"minAtk":992,"maxAtk":1054},{"itemId":182116,"className":"BOW02_116","name":"Aston Crossbow","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Bow","equipType2":"Bow","minLevel":170,"minAtk":1392,"maxAtk":1479},{"itemId":182117,"className":"BOW02_117","name":"Tenet Crossbow","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":576,"equipType1":"Bow","equipType2":"Bow","minLevel":40,"minAtk":352,"maxAtk":374},{"itemId":182118,"className":"BOW02_118","name":"Patrice Crossbow","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":576,"equipType1":"Bow","equipType2":"Bow","minLevel":40,"minAtk":352,"maxAtk":374},{"itemId":182119,"className":"BOW02_119","name":"Lukas Crossbow","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":1512,"equipType1":"Bow","equipType2":"Bow","minLevel":75,"minAtk":632,"maxAtk":671},{"itemId":182120,"className":"BOW02_120","name":"Philis Crossbow","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":1512,"equipType1":"Bow","equipType2":"Bow","minLevel":75,"minAtk":632,"maxAtk":671},{"itemId":182121,"className":"BOW02_121","name":"Escanciu Crossbow","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Bow","equipType2":"Bow","minLevel":75,"minAtk":632,"maxAtk":671},{"itemId":182122,"className":"BOW02_122","name":"Krag Crossbow","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Bow","equipType2":"Bow","minLevel":75,"minAtk":632,"maxAtk":671},{"itemId":182123,"className":"BOW02_123","name":"Pilgrim Crossbow","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":2759,"equipType1":"Bow","equipType2":"Bow","minLevel":120,"minAtk":992,"maxAtk":1054},{"itemId":182124,"className":"BOW02_124","name":"Istora Crossbow","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":4335,"equipType1":"Bow","equipType2":"Bow","minLevel":170,"minAtk":1392,"maxAtk":1479},{"itemId":182125,"className":"BOW02_125","name":"Eki Fedimian Turret","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":3168,"equipType1":"Bow","equipType2":"Bow","minLevel":120,"minAtk":992,"maxAtk":1054},{"itemId":182126,"className":"BOW02_126","name":"Eki Veteran Crossbow","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":4304,"equipType1":"Bow","equipType2":"Bow","minLevel":120,"minAtk":992,"maxAtk":1054,"addDef":13},{"itemId":182127,"className":"BOW02_127","name":"Holy Bullet Shooter","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":4335,"equipType1":"Bow","equipType2":"Bow","minLevel":120,"minAtk":992,"maxAtk":1054},{"itemId":182128,"className":"BOW02_128","name":"Lumas Crossbow","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":3104,"equipType1":"Bow","equipType2":"Bow","minLevel":120,"minAtk":992,"maxAtk":1054},{"itemId":182129,"className":"BOW02_129","name":"Vitt Black Tip Shooter","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":24252,"sellPrice":6501,"equipType1":"Bow","equipType2":"Bow","minLevel":170,"minAtk":1392,"maxAtk":1479},{"itemId":182130,"className":"BOW02_130","name":"Vienie Spiked Crossbow","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Bow","equipType2":"Bow","minLevel":170,"minAtk":1392,"maxAtk":1479},{"itemId":182131,"className":"BOW02_131","name":"Vienie Windlass","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Bow","equipType2":"Bow","minLevel":170,"minAtk":1392,"maxAtk":1479},{"itemId":182132,"className":"BOW02_132","name":"Light Kracked Shooter","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":32673,"sellPrice":7936,"equipType1":"Bow","equipType2":"Bow","minLevel":220,"minAtk":1793,"maxAtk":1903},{"itemId":182133,"className":"BOW02_133","name":"Adata Cranequin","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":32673,"sellPrice":7936,"equipType1":"Bow","equipType2":"Bow","minLevel":220,"minAtk":1793,"maxAtk":1903},{"itemId":182134,"className":"BOW02_134","name":"Didel Kracked Shooter","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":32673,"sellPrice":7968,"equipType1":"Bow","equipType2":"Bow","minLevel":220,"minAtk":1793,"maxAtk":1903,"addMinAtk":26},{"itemId":182135,"className":"BOW02_135","name":"Supportive Fedimian Turret","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":8583,"sellPrice":3104,"equipType1":"Bow","equipType2":"Bow","minLevel":75,"minAtk":632,"maxAtk":671},{"itemId":182150,"className":"BOW02_150","name":"Tevhrin Crossbow","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":6534,"equipType1":"Bow","equipType2":"Bow","minLevel":220,"minAtk":1793,"maxAtk":1903},{"itemId":182151,"className":"BOW02_151","name":"(Faded) Migantis Crossbow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":40000,"sellPrice":5000,"equipType1":"Bow","equipType2":"Bow","minLevel":270,"minAtk":2193,"maxAtk":2328},{"itemId":182152,"className":"BOW02_152","name":"(Faded) Pevordimas Crossbow","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":48800,"sellPrice":5000,"equipType1":"Bow","equipType2":"Bow","minLevel":315,"minAtk":2553,"maxAtk":2711},{"itemId":182153,"className":"BOW02_153","name":"Star Shooter","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":120,"minAtk":992,"maxAtk":1054},{"itemId":182154,"className":"BOW02_154","name":"Chrisius Shooter","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":170,"minAtk":1392,"maxAtk":1479},{"itemId":182155,"className":"BOW02_155","name":"Sketis Crossbow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":75,"minAtk":632,"maxAtk":671},{"itemId":182156,"className":"BOW02_156","name":"Pajoritas Crossbow","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":220,"minAtk":1793,"maxAtk":1903},{"itemId":182157,"className":"BOW02_157","name":"Migantis Crossbow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":270,"minAtk":2193,"maxAtk":2328},{"itemId":182158,"className":"BOW02_158","name":"Pevordimas Crossbow","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":315,"minAtk":2553,"maxAtk":2711},{"itemId":182159,"className":"BOW02_159","name":"Raffye Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":350,"minAtk":2833,"maxAtk":3008},{"itemId":182160,"className":"BOW02_160","name":"Zvaigzde Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":380,"minAtk":3073,"maxAtk":3263},{"itemId":182161,"className":"BOW02_161","name":"Legva Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":400,"minAtk":3233,"maxAtk":3433},{"itemId":183101,"className":"BOW03_101","name":"Shooting Star","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":8583,"sellPrice":2673,"equipType1":"Bow","equipType2":"Bow","minLevel":75,"minAtk":695,"maxAtk":738},{"itemId":183102,"className":"BOW03_102","name":"Kateen Blaster","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Bow","equipType2":"Bow","minLevel":75,"minAtk":695,"maxAtk":738},{"itemId":183103,"className":"BOW03_103","name":"Grajus","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":6501,"equipType1":"Bow","equipType2":"Bow","minLevel":170,"minAtk":1532,"maxAtk":1626},{"itemId":183104,"className":"BOW03_104","name":"Deathweaver Crossbow","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Bow","equipType2":"Bow","minLevel":15,"minAtk":167,"maxAtk":178},{"itemId":183105,"className":"BOW03_105","name":"Chapparition Shooter","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Bow","equipType2":"Bow","minLevel":40,"minAtk":387,"maxAtk":411},{"itemId":183106,"className":"BOW03_106","name":"noname","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":24252,"sellPrice":7936,"equipType1":"Bow","equipType2":"Bow","minLevel":170,"minAtk":1532,"maxAtk":1626},{"itemId":183107,"className":"BOW03_107","name":"noname","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":4850,"equipType1":"Bow","equipType2":"Bow","minLevel":120,"minAtk":1092,"maxAtk":1159},{"itemId":183108,"className":"BOW03_108","name":"Karacha Crossbow","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":24252,"sellPrice":6501,"equipType1":"Bow","equipType2":"Bow","minLevel":170,"minAtk":1532,"maxAtk":1626},{"itemId":183109,"className":"BOW03_109","name":"Bandit","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":32673,"sellPrice":5086,"equipType1":"Bow","equipType2":"Bow","minLevel":220,"minAtk":1972,"maxAtk":2094},{"itemId":183110,"className":"BOW03_110","name":"Didel Grand Cross","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":32673,"sellPrice":7936,"equipType1":"Bow","equipType2":"Bow","minLevel":220,"minAtk":1972,"maxAtk":2094},{"itemId":183111,"className":"BOW03_111","name":"Seimos Crossbow","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":4304,"equipType1":"Bow","equipType2":"Bow","minLevel":120,"minAtk":1092,"maxAtk":1159},{"itemId":183112,"className":"BOW03_112","name":"noname","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":80,"equipType1":"Bow","equipType2":"Bow","minLevel":120,"minAtk":1092,"maxAtk":1159},{"itemId":183113,"className":"BOW03_113","name":"Magas Shooter","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Bow","equipType2":"Bow","minLevel":170,"minAtk":1532,"maxAtk":1626},{"itemId":183114,"className":"BOW03_114","name":"noname","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":24252,"sellPrice":80,"equipType1":"Bow","equipType2":"Bow","minLevel":170,"minAtk":1532,"maxAtk":1626},{"itemId":183115,"className":"BOW03_115","name":"noname","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":32673,"sellPrice":80,"equipType1":"Bow","equipType2":"Bow","minLevel":220,"minAtk":1972,"maxAtk":2094},{"itemId":183116,"className":"BOW03_116","name":"Pensara Crossbow","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":32673,"sellPrice":7936,"equipType1":"Bow","equipType2":"Bow","minLevel":220,"minAtk":1972,"maxAtk":2094,"addMaxAtk":29},{"itemId":183201,"className":"BOW03_201","name":"Marble Grand Cross","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":40000,"sellPrice":9760,"equipType1":"Bow","equipType2":"Bow","minLevel":270,"minAtk":2412,"maxAtk":2561},{"itemId":183202,"className":"BOW03_202","name":"Silver Hawk","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":48800,"sellPrice":12921,"equipType1":"Bow","equipType2":"Bow","minLevel":315,"minAtk":2808,"maxAtk":2982,"addMinAtk":102,"addMaxAtk":211},{"itemId":183301,"className":"BOW03_301","name":"(Faded) Star Shooter","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":2730,"equipType1":"Bow","equipType2":"Bow","minLevel":120,"minAtk":1092,"maxAtk":1159},{"itemId":183302,"className":"BOW03_302","name":"(Faded) Chrisius Shooter","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":24252,"sellPrice":3546,"equipType1":"Bow","equipType2":"Bow","minLevel":170,"minAtk":1532,"maxAtk":1626},{"itemId":183303,"className":"BOW03_303","name":"(Faded) Sketis Crossbow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":8583,"sellPrice":1512,"equipType1":"Bow","equipType2":"Bow","minLevel":75,"minAtk":695,"maxAtk":738,"darkRes":-60},{"itemId":183304,"className":"BOW03_304","name":"(Faded) Pajoritas Crossbow","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":32673,"sellPrice":6534,"equipType1":"Bow","equipType2":"Bow","minLevel":220,"minAtk":1972,"maxAtk":2094},{"itemId":183305,"className":"BOW03_305","name":"(Faded) Purine Migantis Crossbow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":40000,"sellPrice":5000,"equipType1":"Bow","equipType2":"Bow","minLevel":270,"minAtk":2412,"maxAtk":2561},{"itemId":183306,"className":"BOW03_306","name":"(Faded) Purine Pevordimas Crossbow","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":48800,"sellPrice":5000,"equipType1":"Bow","equipType2":"Bow","minLevel":315,"minAtk":2808,"maxAtk":2982},{"itemId":183307,"className":"BOW03_307","name":"Berthas Star Shooter","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":120,"minAtk":1092,"maxAtk":1159},{"itemId":183308,"className":"BOW03_308","name":"Berthas Chrisius Shooter","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":170,"minAtk":1532,"maxAtk":1626},{"itemId":183309,"className":"BOW03_309","name":"Berthas Sketis Crossbow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":75,"minAtk":695,"maxAtk":738},{"itemId":183310,"className":"BOW03_310","name":"Berthas Pajoritas Crossbow","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":220,"minAtk":1972,"maxAtk":2094},{"itemId":183311,"className":"BOW03_311","name":"Berthas Migantis Crossbow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":270,"minAtk":2412,"maxAtk":2561},{"itemId":183312,"className":"BOW03_312","name":"Berthas Pevordimas Crossbow","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":315,"minAtk":2808,"maxAtk":2982},{"itemId":183313,"className":"BOW03_313","name":"Berthas Raffye Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":350,"minAtk":3116,"maxAtk":3309},{"itemId":183314,"className":"BOW03_314","name":"Berthas Zvaigzde Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":380,"minAtk":3380,"maxAtk":3589},{"itemId":183315,"className":"BOW03_315","name":"Berthas Legva Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":400,"minAtk":3556,"maxAtk":3776},{"itemId":183316,"className":"BOW03_316","name":"Berthas Dysnai Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":430,"minAtk":3820,"maxAtk":4057},{"itemId":184101,"className":"BOW04_101","name":"Isbality","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Bow","equipType2":"Bow","minLevel":170,"minAtk":1741,"maxAtk":1848,"darkRes":39},{"itemId":184102,"className":"BOW04_102","name":"Morto","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Bow","equipType2":"Bow","minLevel":170,"minAtk":1741,"maxAtk":1848},{"itemId":184103,"className":"BOW04_103","name":"Ruma Crossbow","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":4850,"equipType1":"Bow","equipType2":"Bow","minLevel":120,"minAtk":1240,"maxAtk":1317},{"itemId":184104,"className":"BOW04_104","name":"Galatunis Crossbow","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":7936,"equipType1":"Bow","equipType2":"Bow","minLevel":120,"minAtk":1240,"maxAtk":1317},{"itemId":184105,"className":"BOW04_105","name":"noname","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":24252,"sellPrice":80,"equipType1":"Bow","equipType2":"Bow","minLevel":170,"minAtk":1741,"maxAtk":1848},{"itemId":184106,"className":"BOW04_106","name":"Catacombs Shooter","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Bow","equipType2":"Bow","minLevel":170,"minAtk":1741,"maxAtk":1848,"pAtk":31,"iceRes":43},{"itemId":184107,"className":"BOW04_107","name":"Lolopanther Crossbow","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":40000,"sellPrice":9760,"equipType1":"Bow","equipType2":"Bow","minLevel":270,"minAtk":3508,"maxAtk":3725,"addMDef":34},{"itemId":184108,"className":"BOW04_108","name":"Solmiki Crossbow","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":48800,"sellPrice":12952,"equipType1":"Bow","equipType2":"Bow","minLevel":330,"minAtk":4277,"maxAtk":4541},{"itemId":184109,"className":"BOW04_109","name":"Regard Horn Crossbow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":48800,"sellPrice":14780,"equipType1":"Bow","equipType2":"Bow","minLevel":315,"minAtk":3191,"maxAtk":3388},{"itemId":184110,"className":"BOW04_110","name":"Primus Star Shooter","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":120,"minAtk":1240,"maxAtk":1317},{"itemId":184111,"className":"BOW04_111","name":"Primus Crisius Shooter","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":170,"minAtk":1741,"maxAtk":1848},{"itemId":184112,"className":"BOW04_112","name":"Primus Sketis Crossbow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":75,"minAtk":790,"maxAtk":839},{"itemId":184113,"className":"BOW04_113","name":"Primus Pajoritas Crossbow","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":220,"minAtk":2241,"maxAtk":2379},{"itemId":184114,"className":"BOW04_114","name":"Primus Migantis Crossbow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":270,"minAtk":2741,"maxAtk":2910},{"itemId":184115,"className":"BOW04_115","name":"Primus Pevordimas Crossbow","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":315,"minAtk":3191,"maxAtk":3388},{"itemId":184116,"className":"BOW04_116","name":"Primus Raffye Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":350,"minAtk":3541,"maxAtk":3760},{"itemId":184117,"className":"BOW04_117","name":"Masinios Crossbow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":350,"minAtk":3541,"maxAtk":3760},{"itemId":184118,"className":"BOW04_118","name":"Primus Zvaigzde Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":380,"minAtk":3841,"maxAtk":4079},{"itemId":184119,"className":"BOW04_119","name":"Wastrel Zvaigzde Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":380,"minAtk":3841,"maxAtk":4079,"addMinAtk":152,"addMaxAtk":352},{"itemId":184120,"className":"BOW04_120","name":"Asio Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":380,"minAtk":3841,"maxAtk":4079},{"itemId":184121,"className":"BOW04_121","name":"Primus Legva Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":400,"minAtk":4041,"maxAtk":4291},{"itemId":184122,"className":"BOW04_122","name":"Skiaclipse Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":400,"minAtk":4041,"maxAtk":4291},{"itemId":184123,"className":"BOW04_123","name":"Moringponia Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":400,"minAtk":4041,"maxAtk":4291,"addMaxAtk":339},{"itemId":184124,"className":"BOW04_124","name":"Misrus Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":400,"minAtk":4041,"maxAtk":4291},{"itemId":184125,"className":"BOW04_125","name":"Primus Dysnai Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":430,"minAtk":4341,"maxAtk":4610},{"itemId":185101,"className":"BOW05_101","name":"Velcoffer Crossbow","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":360,"minAtk":4661,"maxAtk":4949},{"itemId":185102,"className":"BOW05_102","name":"Velcoffer Crossbow","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":360,"minAtk":4661,"maxAtk":4949},{"itemId":185103,"className":"BOW05_103","name":"Savinose Legva Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":400,"minAtk":5173,"maxAtk":5493},{"itemId":185104,"className":"BOW05_104","name":"Skiaclipse Varna Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":400,"minAtk":5173,"maxAtk":5493},{"itemId":201101,"className":"MAC01_101","name":"Old Wooden Club","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":400,"sellPrice":80,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37},{"itemId":201102,"className":"MAC01_102","name":"Wooden Club","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":400,"sellPrice":80,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37},{"itemId":201103,"className":"MAC01_103","name":"Dunkel Iron Club","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":400,"sellPrice":106,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37},{"itemId":201104,"className":"MAC01_104","name":"Crude Mace","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Mace","equipType2":"Mace","minLevel":15,"minAtk":140,"maxAtk":142,"mAtk":141},{"itemId":201105,"className":"MAC01_105","name":"Morning Star","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Mace","equipType2":"Mace","minLevel":15,"minAtk":140,"maxAtk":142,"mAtk":141},{"itemId":201106,"className":"MAC01_106","name":"Mallet","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":3640,"sellPrice":728,"equipType1":"Mace","equipType2":"Mace","minLevel":40,"minAtk":323,"maxAtk":330,"mAtk":327},{"itemId":201107,"className":"MAC01_107","name":"Goedendag","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Mace","equipType2":"Mace","minLevel":40,"minAtk":323,"maxAtk":330,"mAtk":327},{"itemId":201108,"className":"MAC01_108","name":"Warpick","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Mace","equipType2":"Mace","minLevel":40,"minAtk":323,"maxAtk":330,"mAtk":327},{"itemId":201109,"className":"MAC01_109","name":"Maul","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Mace","equipType2":"Mace","minLevel":40,"minAtk":323,"maxAtk":330,"mAtk":327},{"itemId":201110,"className":"MAC01_110","name":"Battle Hammer","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Mace","equipType2":"Mace","minLevel":75,"minAtk":581,"maxAtk":592,"mAtk":587},{"itemId":201111,"className":"MAC01_111","name":"Old Goedendag","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":2880,"sellPrice":1512,"equipType1":"Mace","equipType2":"Mace","minLevel":15,"minAtk":140,"maxAtk":142,"mAtk":141},{"itemId":201112,"className":"MAC01_112","name":"Old Warpick","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Mace","equipType2":"Mace","minLevel":40,"minAtk":323,"maxAtk":330,"mAtk":327},{"itemId":201113,"className":"MAC01_113","name":"Soldier's Club","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":400,"sellPrice":80,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":51,"maxAtk":52,"mAtk":52},{"itemId":201114,"className":"MAC01_114","name":"Mayor's Iron Club","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":400,"sellPrice":457,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":96,"maxAtk":97,"mAtk":97},{"itemId":201115,"className":"MAC01_115","name":"Old Mace","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":2880,"sellPrice":457,"equipType1":"Mace","equipType2":"Mace","minLevel":15,"minAtk":140,"maxAtk":142,"mAtk":141},{"itemId":201116,"className":"MAC01_116","name":"Chekan","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Mace","equipType2":"Mace","minLevel":75,"minAtk":581,"maxAtk":592,"mAtk":587},{"itemId":201117,"className":"MAC01_117","name":"Superior Wooden Club","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":400,"sellPrice":80,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37},{"itemId":201118,"className":"MAC01_118","name":"Iron Club","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":400,"sellPrice":246,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37},{"itemId":201119,"className":"MAC01_119","name":"Superior Iron Club","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":400,"sellPrice":576,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37},{"itemId":201120,"className":"MAC01_120","name":"Mace","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Mace","equipType2":"Mace","minLevel":15,"minAtk":140,"maxAtk":142,"mAtk":141},{"itemId":201121,"className":"MAC01_121","name":"Superior Morning Star","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Mace","equipType2":"Mace","minLevel":15,"minAtk":140,"maxAtk":142,"mAtk":141},{"itemId":201122,"className":"MAC01_122","name":"Superior Mallet","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Mace","equipType2":"Mace","minLevel":40,"minAtk":323,"maxAtk":330,"mAtk":327},{"itemId":201123,"className":"MAC01_123","name":"Superior Goedendag","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Mace","equipType2":"Mace","minLevel":40,"minAtk":323,"maxAtk":330,"mAtk":327},{"itemId":201124,"className":"MAC01_124","name":"Dunkel Maul","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":3640,"sellPrice":576,"equipType1":"Mace","equipType2":"Mace","minLevel":40,"minAtk":323,"maxAtk":330,"mAtk":327},{"itemId":201125,"className":"MAC01_125","name":"Dunkel Battle Hammer","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":8583,"sellPrice":1837,"equipType1":"Mace","equipType2":"Mace","minLevel":75,"minAtk":581,"maxAtk":592,"mAtk":587},{"itemId":201126,"className":"MAC01_126","name":"Dunkel Mace","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Mace","equipType2":"Mace","minLevel":15,"minAtk":140,"maxAtk":142,"mAtk":141},{"itemId":201127,"className":"MAC01_127","name":"Dunkel Morning Star","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Mace","equipType2":"Mace","minLevel":15,"minAtk":140,"maxAtk":142,"mAtk":141},{"itemId":201128,"className":"MAC01_128","name":"Dunkel Goedendag","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":3640,"sellPrice":1484,"equipType1":"Mace","equipType2":"Mace","minLevel":40,"minAtk":323,"maxAtk":330,"mAtk":327},{"itemId":201129,"className":"MAC01_129","name":"Battle Maul","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":8583,"sellPrice":2730,"equipType1":"Mace","equipType2":"Mace","minLevel":75,"minAtk":581,"maxAtk":592,"mAtk":587},{"itemId":201130,"className":"MAC01_130","name":"Fedimian Club","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":3168,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":911,"maxAtk":930,"mAtk":921},{"itemId":201131,"className":"MAC01_131","name":"Rune Mace","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":15520,"sellPrice":4304,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":911,"maxAtk":930,"mAtk":921},{"itemId":201132,"className":"MAC01_132","name":"Spiked Club","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":15520,"sellPrice":4335,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":911,"maxAtk":930,"mAtk":921},{"itemId":201133,"className":"MAC01_133","name":"Stirus Hammer","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":24252,"sellPrice":5018,"equipType1":"Mace","equipType2":"Mace","minLevel":170,"minAtk":1279,"maxAtk":1305,"mAtk":1292},{"itemId":201134,"className":"MAC01_134","name":"War Hammer","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Mace","equipType2":"Mace","minLevel":170,"minAtk":1279,"maxAtk":1305,"mAtk":1292},{"itemId":201135,"className":"MAC01_135","name":"Sledgehammer","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Mace","equipType2":"Mace","minLevel":170,"minAtk":1279,"maxAtk":1305,"mAtk":1292},{"itemId":201136,"className":"MAC01_136","name":"Yorgis' Fedimian Club","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":2730,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":911,"maxAtk":930,"mAtk":921},{"itemId":201137,"className":"MAC01_137","name":"Burawa","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":32673,"sellPrice":7936,"equipType1":"Mace","equipType2":"Mace","minLevel":220,"minAtk":1647,"maxAtk":1680,"mAtk":1663},{"itemId":201138,"className":"MAC01_138","name":"Superior Burawa","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":32673,"sellPrice":7968,"equipType1":"Mace","equipType2":"Mace","minLevel":220,"minAtk":1647,"maxAtk":1680,"mAtk":1663},{"itemId":201139,"className":"MAC01_139","name":"(Faded) Replica Migantis Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":80000,"sellPrice":5000,"equipType1":"Mace","equipType2":"Mace","minLevel":270,"minAtk":2014,"maxAtk":2055,"mAtk":2034},{"itemId":201140,"className":"MAC01_140","name":"(Faded) Replica Pevordimas Mace","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":120000,"sellPrice":5000,"equipType1":"Mace","equipType2":"Mace","minLevel":315,"minAtk":2345,"maxAtk":2392,"mAtk":2369},{"itemId":202101,"className":"MAC02_101","name":"Five Hammer","type":"Equip","group":"Weapon","weight":55,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Mace","equipType2":"Mace","minLevel":40,"minAtk":359,"maxAtk":367,"mAtk":363},{"itemId":202102,"className":"MAC02_102","name":"Spiked Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Mace","equipType2":"Mace","minLevel":40,"minAtk":359,"maxAtk":367,"mAtk":363,"darkRes":14},{"itemId":202103,"className":"MAC02_103","name":"Shield Breaker","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Mace","equipType2":"Mace","minLevel":75,"minAtk":645,"maxAtk":658,"mAtk":652},{"itemId":202104,"className":"MAC02_104","name":"Skull Crusher","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":8583,"sellPrice":2730,"equipType1":"Mace","equipType2":"Mace","minLevel":75,"minAtk":645,"maxAtk":658,"mAtk":652},{"itemId":202105,"className":"MAC02_105","name":"Cheminis Maul","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":1746,"equipType1":"Mace","equipType2":"Mace","minLevel":40,"minAtk":359,"maxAtk":367,"mAtk":363},{"itemId":202106,"className":"MAC02_106","name":"Mauros Club","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":8583,"sellPrice":2730,"equipType1":"Mace","equipType2":"Mace","minLevel":75,"minAtk":645,"maxAtk":658,"mAtk":652},{"itemId":202107,"className":"MAC02_107","name":"Valtas Morning Star","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":15520,"sellPrice":4304,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":1013,"maxAtk":1033,"mAtk":1023},{"itemId":202108,"className":"MAC02_108","name":"Imperni Mace","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Mace","equipType2":"Mace","minLevel":75,"minAtk":645,"maxAtk":658,"mAtk":652},{"itemId":202109,"className":"MAC02_109","name":"Suncus Maul","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Mace","equipType2":"Mace","minLevel":170,"minAtk":1421,"maxAtk":1450,"mAtk":1436},{"itemId":202110,"className":"MAC02_110","name":"Miner Hammer","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Mace","equipType2":"Mace","minLevel":15,"minAtk":155,"maxAtk":158,"mAtk":157},{"itemId":202111,"className":"MAC02_111","name":"Soldier's Iron Club","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":400,"sellPrice":106,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":90,"maxAtk":92,"mAtk":91},{"itemId":202112,"className":"MAC02_112","name":"Smith Mace","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":400,"sellPrice":576,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":41,"maxAtk":42,"mAtk":41},{"itemId":202113,"className":"MAC02_113","name":"Klavis Mace","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Mace","equipType2":"Mace","minLevel":15,"minAtk":155,"maxAtk":158,"mAtk":157},{"itemId":202114,"className":"MAC02_114","name":"Dio Mace","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":2880,"sellPrice":728,"equipType1":"Mace","equipType2":"Mace","minLevel":15,"minAtk":155,"maxAtk":158,"mAtk":157},{"itemId":202115,"className":"MAC02_115","name":"Thresh Mace","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":3640,"sellPrice":1716,"equipType1":"Mace","equipType2":"Mace","minLevel":40,"minAtk":359,"maxAtk":367,"mAtk":363},{"itemId":202116,"className":"MAC02_116","name":"Sestas Mace","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":8583,"sellPrice":3104,"equipType1":"Mace","equipType2":"Mace","minLevel":75,"minAtk":645,"maxAtk":658,"mAtk":652},{"itemId":202117,"className":"MAC02_117","name":"Dratt Mace","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":15520,"sellPrice":4850,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":1013,"maxAtk":1033,"mAtk":1023},{"itemId":202118,"className":"MAC02_118","name":"Aston Mace","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Mace","equipType2":"Mace","minLevel":170,"minAtk":1421,"maxAtk":1450,"mAtk":1436},{"itemId":202119,"className":"MAC02_119","name":"Krausas Mace","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Mace","equipType2":"Mace","minLevel":40,"minAtk":359,"maxAtk":367,"mAtk":363},{"itemId":202120,"className":"MAC02_120","name":"Tenet Mace","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":576,"equipType1":"Mace","equipType2":"Mace","minLevel":40,"minAtk":359,"maxAtk":367,"mAtk":363},{"itemId":202121,"className":"MAC02_121","name":"Patrice Mace","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":576,"equipType1":"Mace","equipType2":"Mace","minLevel":40,"minAtk":359,"maxAtk":367,"mAtk":363},{"itemId":202122,"className":"MAC02_122","name":"Lukas Mace","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":1512,"equipType1":"Mace","equipType2":"Mace","minLevel":75,"minAtk":645,"maxAtk":658,"mAtk":652},{"itemId":202123,"className":"MAC02_123","name":"Philis Mace","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":1512,"equipType1":"Mace","equipType2":"Mace","minLevel":75,"minAtk":645,"maxAtk":658,"mAtk":652},{"itemId":202124,"className":"MAC02_124","name":"Escanciu Mace","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Mace","equipType2":"Mace","minLevel":75,"minAtk":645,"maxAtk":658,"mAtk":652},{"itemId":202125,"className":"MAC02_125","name":"Krag Mace","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Mace","equipType2":"Mace","minLevel":75,"minAtk":645,"maxAtk":658,"mAtk":652},{"itemId":202126,"className":"MAC02_126","name":"Pilgrim Mace","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":2759,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":1013,"maxAtk":1033,"mAtk":1023},{"itemId":202127,"className":"MAC02_127","name":"Istora Mace","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":4335,"equipType1":"Mace","equipType2":"Mace","minLevel":170,"minAtk":1421,"maxAtk":1450,"mAtk":1436},{"itemId":202128,"className":"MAC02_128","name":"Vienie Fedimian Club","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":3168,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":1013,"maxAtk":1033,"mAtk":1023},{"itemId":202129,"className":"MAC02_129","name":"Slaake Rune Mace","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":4304,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":1013,"maxAtk":1033,"mAtk":1023},{"itemId":202130,"className":"MAC02_130","name":"Lightning Spiked Club","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":4335,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":1013,"maxAtk":1033,"mAtk":1023},{"itemId":202131,"className":"MAC02_131","name":"Lumas Mace","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":3104,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":1013,"maxAtk":1033,"mAtk":1023},{"itemId":202132,"className":"MAC02_132","name":"Magi Stirus Hammer","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":6501,"equipType1":"Mace","equipType2":"Mace","minLevel":170,"minAtk":1421,"maxAtk":1450,"mAtk":1436},{"itemId":202133,"className":"MAC02_133","name":"Vienie War Hammer","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Mace","equipType2":"Mace","minLevel":170,"minAtk":1421,"maxAtk":1450,"mAtk":1436},{"itemId":202134,"className":"MAC02_134","name":"Eki Sledgehammer","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Mace","equipType2":"Mace","minLevel":170,"minAtk":1421,"maxAtk":1450,"mAtk":1436},{"itemId":202135,"className":"MAC02_135","name":"Dark Burawa","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":7936,"equipType1":"Mace","equipType2":"Mace","minLevel":220,"minAtk":1830,"maxAtk":1866,"mAtk":1848},{"itemId":202136,"className":"MAC02_136","name":"Artie Battle Hammer","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":7936,"equipType1":"Mace","equipType2":"Mace","minLevel":220,"minAtk":1830,"maxAtk":1866,"mAtk":1848,"addMDef":14},{"itemId":202137,"className":"MAC02_137","name":"Didel Burawa","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":7968,"equipType1":"Mace","equipType2":"Mace","minLevel":220,"minAtk":1830,"maxAtk":1866,"mAtk":1848},{"itemId":202138,"className":"MAC02_138","name":"Supportive Fedimian Club","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":8583,"sellPrice":3104,"equipType1":"Mace","equipType2":"Mace","minLevel":75,"minAtk":645,"maxAtk":658,"mAtk":652},{"itemId":202150,"className":"MAC02_150","name":"Tevhrin Mace","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":6534,"equipType1":"Mace","equipType2":"Mace","minLevel":220,"minAtk":1830,"maxAtk":1866,"mAtk":1848},{"itemId":202151,"className":"MAC02_151","name":"(Faded) Migantis Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":40000,"sellPrice":5000,"equipType1":"Mace","equipType2":"Mace","minLevel":270,"minAtk":2238,"maxAtk":2283,"mAtk":2261},{"itemId":202152,"className":"MAC02_152","name":"(Faded) Pevordimas Mace","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":48800,"sellPrice":5000,"equipType1":"Mace","equipType2":"Mace","minLevel":315,"minAtk":2605,"maxAtk":2658,"mAtk":2632},{"itemId":202153,"className":"MAC02_153","name":"Krendall Mace","type":"Equip","group":"Weapon","weight":135,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":1013,"maxAtk":1033,"mAtk":1023},{"itemId":202154,"className":"MAC02_154","name":"Reine Mace","type":"Equip","group":"Weapon","weight":141,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":170,"minAtk":1421,"maxAtk":1450,"mAtk":1436},{"itemId":202155,"className":"MAC02_155","name":"Sketis Mace","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":75,"minAtk":645,"maxAtk":658,"mAtk":652},{"itemId":202156,"className":"MAC02_156","name":"Pajoritas Mace","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":220,"minAtk":1830,"maxAtk":1866,"mAtk":1848},{"itemId":202157,"className":"MAC02_157","name":"Migantis Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":270,"minAtk":2238,"maxAtk":2283,"mAtk":2261},{"itemId":202158,"className":"MAC02_158","name":"Pevordimas Mace","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":315,"minAtk":2605,"maxAtk":2658,"mAtk":2632},{"itemId":202159,"className":"MAC02_159","name":"Raffye Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":350,"minAtk":2891,"maxAtk":2950,"mAtk":2921},{"itemId":202160,"className":"MAC02_160","name":"Zvaigzde Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":380,"minAtk":3136,"maxAtk":3200,"mAtk":3168},{"itemId":202161,"className":"MAC02_161","name":"Legva Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":400,"minAtk":3300,"maxAtk":3366,"mAtk":3333},{"itemId":203101,"className":"MAC03_101","name":"Holy Smasher","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":3640,"sellPrice":2702,"equipType1":"Mace","equipType2":"Mace","minLevel":40,"minAtk":395,"maxAtk":403,"mAtk":399},{"itemId":203102,"className":"MAC03_102","name":"Kaloo Hammer","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":15520,"sellPrice":4365,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":1114,"maxAtk":1137,"mAtk":1125},{"itemId":203103,"className":"MAC03_103","name":"Drake Tail","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Mace","equipType2":"Mace","minLevel":170,"minAtk":1563,"maxAtk":1595,"mAtk":1579},{"itemId":203104,"className":"MAC03_104","name":"Royal Mace","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":3640,"sellPrice":2730,"equipType1":"Mace","equipType2":"Mace","minLevel":40,"minAtk":395,"maxAtk":403,"mAtk":399},{"itemId":203105,"className":"MAC03_105","name":"Vubbe Morning Star","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Mace","equipType2":"Mace","minLevel":15,"minAtk":171,"maxAtk":174,"mAtk":172},{"itemId":203106,"className":"MAC03_106","name":"Deathweaver Club","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Mace","equipType2":"Mace","minLevel":15,"minAtk":171,"maxAtk":174,"mAtk":172},{"itemId":203107,"className":"MAC03_107","name":"Chapparition Mace","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Mace","equipType2":"Mace","minLevel":40,"minAtk":395,"maxAtk":403,"mAtk":399},{"itemId":203108,"className":"MAC03_108","name":"noname","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":24252,"sellPrice":7936,"equipType1":"Mace","equipType2":"Mace","minLevel":170,"minAtk":1563,"maxAtk":1595,"mAtk":1579},{"itemId":203109,"className":"MAC03_109","name":"noname","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":15520,"sellPrice":4850,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":1114,"maxAtk":1137,"mAtk":1125},{"itemId":203110,"className":"MAC03_110","name":"Iron Fist","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":32673,"sellPrice":9760,"equipType1":"Mace","equipType2":"Mace","minLevel":220,"minAtk":2012,"maxAtk":2053,"mAtk":2033},{"itemId":203111,"className":"MAC03_111","name":"Seimos Mace","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":4335,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":1114,"maxAtk":1137,"mAtk":1125},{"itemId":203112,"className":"MAC03_112","name":"noname","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":80,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":1114,"maxAtk":1137,"mAtk":1125},{"itemId":203113,"className":"MAC03_113","name":"Magas Mace","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Mace","equipType2":"Mace","minLevel":170,"minAtk":1563,"maxAtk":1595,"mAtk":1579,"addDef":11},{"itemId":203114,"className":"MAC03_114","name":"noname","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":80,"equipType1":"Mace","equipType2":"Mace","minLevel":170,"minAtk":1563,"maxAtk":1595,"mAtk":1579},{"itemId":203115,"className":"MAC03_115","name":"noname","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":80,"equipType1":"Mace","equipType2":"Mace","minLevel":220,"minAtk":2012,"maxAtk":2053,"mAtk":2033},{"itemId":203116,"className":"MAC03_116","name":"Pensara Mace","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":6534,"equipType1":"Mace","equipType2":"Mace","minLevel":220,"minAtk":2012,"maxAtk":2053,"mAtk":2033,"addMDef":17},{"itemId":203201,"className":"MAC03_201","name":"Aghaas Breaker","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":7968,"equipType1":"Mace","equipType2":"Mace","minLevel":220,"minAtk":2012,"maxAtk":2053,"mAtk":2033,"addDef":11},{"itemId":203202,"className":"MAC03_202","name":"Vieretta Mace","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":40000,"sellPrice":9760,"equipType1":"Mace","equipType2":"Mace","minLevel":270,"minAtk":2462,"maxAtk":2511,"mAtk":2487},{"itemId":203203,"className":"MAC03_203","name":"Attilla","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":40000,"sellPrice":9760,"equipType1":"Mace","equipType2":"Mace","minLevel":270,"minAtk":2462,"maxAtk":2511,"mAtk":2487,"holyRes":181},{"itemId":203204,"className":"MAC03_204","name":"Vienarazis Mace","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":48800,"sellPrice":12921,"equipType1":"Mace","equipType2":"Mace","minLevel":315,"minAtk":2866,"maxAtk":2924,"mAtk":2895,"addMinAtk":168,"addMaxAtk":320},{"itemId":203301,"className":"MAC03_301","name":"(Faded) Krendall Mace","type":"Equip","group":"Weapon","weight":135,"maxStack":1,"price":15520,"sellPrice":2730,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":1114,"maxAtk":1137,"mAtk":1125,"addMinAtk":64,"addMaxAtk":80},{"itemId":203302,"className":"MAC03_302","name":"(Faded) Reine Mace","type":"Equip","group":"Weapon","weight":141,"maxStack":1,"price":24252,"sellPrice":3546,"equipType1":"Mace","equipType2":"Mace","minLevel":170,"minAtk":1563,"maxAtk":1595,"mAtk":1579},{"itemId":203303,"className":"MAC03_303","name":"(Faded) Sketis Mace","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":8583,"sellPrice":1512,"equipType1":"Mace","equipType2":"Mace","minLevel":75,"minAtk":710,"maxAtk":724,"mAtk":717},{"itemId":203304,"className":"MAC03_304","name":"(Faded) Pajoritas Mace","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":32673,"sellPrice":6534,"equipType1":"Mace","equipType2":"Mace","minLevel":220,"minAtk":2012,"maxAtk":2053,"mAtk":2033},{"itemId":203305,"className":"MAC03_305","name":"(Faded) Purine Migantis Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":40000,"sellPrice":5000,"equipType1":"Mace","equipType2":"Mace","minLevel":270,"minAtk":2462,"maxAtk":2511,"mAtk":2487},{"itemId":203306,"className":"MAC03_306","name":"(Faded) Purine Pevordimas Mace","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":48800,"sellPrice":5000,"equipType1":"Mace","equipType2":"Mace","minLevel":315,"minAtk":2866,"maxAtk":2924,"mAtk":2895},{"itemId":203307,"className":"MAC03_307","name":"Berthas Krendall Mace","type":"Equip","group":"Weapon","weight":135,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":1114,"maxAtk":1137,"mAtk":1125},{"itemId":203308,"className":"MAC03_308","name":"Berthas Reine Mace","type":"Equip","group":"Weapon","weight":141,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":170,"minAtk":1563,"maxAtk":1595,"mAtk":1579},{"itemId":203309,"className":"MAC03_309","name":"Berthas Sketis Mace","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":75,"minAtk":710,"maxAtk":724,"mAtk":717},{"itemId":203310,"className":"MAC03_310","name":"Berthas Pajoritas Mace","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":220,"minAtk":2012,"maxAtk":2053,"mAtk":2033},{"itemId":203311,"className":"MAC03_311","name":"Berthas Migantis Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":270,"minAtk":2462,"maxAtk":2511,"mAtk":2487},{"itemId":203312,"className":"MAC03_312","name":"Berthas Pevordimas Mace","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":315,"minAtk":2866,"maxAtk":2924,"mAtk":2895},{"itemId":203313,"className":"MAC03_313","name":"Berthas Raffye Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":350,"minAtk":3180,"maxAtk":3245,"mAtk":3213},{"itemId":203314,"className":"MAC03_314","name":"Berthas Zvaigzde Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":380,"minAtk":3450,"maxAtk":3520,"mAtk":3485},{"itemId":203315,"className":"MAC03_315","name":"Berthas Legva Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":400,"minAtk":3630,"maxAtk":3703,"mAtk":3666},{"itemId":203316,"className":"MAC03_316","name":"Berthas Dysnai Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":430,"minAtk":3899,"maxAtk":3978,"mAtk":3939},{"itemId":204101,"className":"MAC04_101","name":"Stunner","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":15520,"sellPrice":3104,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":1266,"maxAtk":1292,"mAtk":1279},{"itemId":204102,"className":"MAC04_102","name":"Valia","type":"Equip","group":"Weapon","weight":155,"maxStack":1,"price":15520,"sellPrice":3168,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":1266,"maxAtk":1292,"mAtk":1279,"addMDef":11},{"itemId":204103,"className":"MAC04_103","name":"Spearfish Rod","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Mace","equipType2":"Mace","minLevel":40,"minAtk":449,"maxAtk":458,"mAtk":454},{"itemId":204104,"className":"MAC04_104","name":"Toy Hammer","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Mace","equipType2":"Mace","minLevel":75,"minAtk":807,"maxAtk":823,"mAtk":815},{"itemId":204105,"className":"MAC04_105","name":"Ruma Mace","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":4335,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":1266,"maxAtk":1292,"mAtk":1279},{"itemId":204106,"className":"MAC04_106","name":"Galatunis Mace","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":7936,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":1266,"maxAtk":1292,"mAtk":1279},{"itemId":204107,"className":"MAC04_107","name":"noname","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":24252,"sellPrice":80,"equipType1":"Mace","equipType2":"Mace","minLevel":170,"minAtk":1776,"maxAtk":1812,"mAtk":1794},{"itemId":204108,"className":"MAC04_108","name":"Catacombs Club","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Mace","equipType2":"Mace","minLevel":170,"minAtk":1776,"maxAtk":1812,"mAtk":1794},{"itemId":204109,"className":"MAC04_109","name":"Lolopanther Club","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":40000,"sellPrice":9760,"equipType1":"Mace","equipType2":"Mace","minLevel":270,"minAtk":3581,"maxAtk":3653,"mAtk":3617},{"itemId":204110,"className":"MAC04_110","name":"Solmiki Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":48800,"sellPrice":12952,"equipType1":"Mace","equipType2":"Mace","minLevel":330,"minAtk":4365,"maxAtk":4453,"mAtk":4409},{"itemId":204111,"className":"MAC04_111","name":"Skull Smasher","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":48800,"sellPrice":14780,"equipType1":"Mace","equipType2":"Mace","minLevel":315,"minAtk":3257,"maxAtk":3323,"mAtk":3290},{"itemId":204112,"className":"MAC04_112","name":"Primus Krendall Mace","type":"Equip","group":"Weapon","weight":135,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":1266,"maxAtk":1292,"mAtk":1279},{"itemId":204113,"className":"MAC04_113","name":"Primus Reine Mace","type":"Equip","group":"Weapon","weight":141,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":170,"minAtk":1776,"maxAtk":1812,"mAtk":1794},{"itemId":204114,"className":"MAC04_114","name":"Primus Sketis Mace","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":75,"minAtk":807,"maxAtk":823,"mAtk":815},{"itemId":204115,"className":"MAC04_115","name":"Primus Pajoritas Mace","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":220,"minAtk":2287,"maxAtk":2333,"mAtk":2310},{"itemId":204116,"className":"MAC04_116","name":"Primus Migantis Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":270,"minAtk":2797,"maxAtk":2854,"mAtk":2826},{"itemId":204117,"className":"MAC04_117","name":"Primus Pevordimas Mace","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":315,"minAtk":3257,"maxAtk":3323,"mAtk":3290},{"itemId":204118,"className":"MAC04_118","name":"Primus Raffye Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":350,"minAtk":3614,"maxAtk":3687,"mAtk":3651},{"itemId":204119,"className":"MAC04_119","name":"Masinios Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":350,"minAtk":3614,"maxAtk":3687,"mAtk":3651},{"itemId":204120,"className":"MAC04_120","name":"Primus Zvaigzde Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":380,"minAtk":3920,"maxAtk":4000,"mAtk":3960},{"itemId":204121,"className":"MAC04_121","name":"Wastrel Zvaigzde Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":380,"minAtk":3920,"maxAtk":4000,"mAtk":3960},{"itemId":204122,"className":"MAC04_122","name":"Asio Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":380,"minAtk":3920,"maxAtk":4000,"mAtk":3960},{"itemId":204123,"className":"MAC04_123","name":"Primus Legva Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":400,"minAtk":4125,"maxAtk":4208,"mAtk":4166},{"itemId":204124,"className":"MAC04_124","name":"Skiaclipse Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":400,"minAtk":4125,"maxAtk":4208,"mAtk":4166},{"itemId":204125,"className":"MAC04_125","name":"Skiaclipse Maul","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":400,"minAtk":4125,"maxAtk":4208,"mAtk":4166},{"itemId":204126,"className":"MAC04_126","name":"Moringponia Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":400,"minAtk":4125,"maxAtk":4208,"mAtk":4166,"addDef":410},{"itemId":204127,"className":"MAC04_127","name":"Misrus Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":400,"minAtk":4125,"maxAtk":4208,"mAtk":4166,"addMDef":398},{"itemId":204128,"className":"MAC04_128","name":"Primus Dysnai Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":430,"minAtk":4431,"maxAtk":4520,"mAtk":4476},{"itemId":205101,"className":"MAC05_101","name":"Velcoffer Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":360,"minAtk":4757,"maxAtk":4853,"mAtk":4805},{"itemId":205102,"className":"MAC05_102","name":"Velcoffer Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":360,"minAtk":4757,"maxAtk":4853,"mAtk":4805},{"itemId":205103,"className":"MAC05_103","name":"Savinose Legva Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":400,"minAtk":5279,"maxAtk":5386,"mAtk":5333},{"itemId":205104,"className":"MAC05_104","name":"Skiaclipse Varna Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":400,"minAtk":5279,"maxAtk":5386,"mAtk":5333},{"itemId":210100,"className":"TMAC01_101","name":"Two-handed Battle Maul","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":13732,"sellPrice":2939,"equipType1":"THMace","equipType2":"Mace","minLevel":75,"minAtk":624,"maxAtk":763,"mAtk":693},{"itemId":210101,"className":"TMAC01_102","name":"Two-handed Rune Mace","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":24832,"sellPrice":5068,"equipType1":"THMace","equipType2":"Mace","minLevel":120,"minAtk":979,"maxAtk":1197,"mAtk":1088},{"itemId":210200,"className":"TMAC02_101","name":"(Faded) Migantis Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":64000,"sellPrice":5000,"equipType1":"THMace","equipType2":"Mace","minLevel":270,"minAtk":2404,"maxAtk":2939,"mAtk":2671},{"itemId":210201,"className":"TMAC02_102","name":"(Faded) Pevordimas Two-handed Mace","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":78080,"sellPrice":5000,"equipType1":"THMace","equipType2":"Mace","minLevel":315,"minAtk":2799,"maxAtk":3421,"mAtk":3110},{"itemId":210202,"className":"TMAC02_103","name":"Krendall Two-handed Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":120,"minAtk":1088,"maxAtk":1330,"mAtk":1209},{"itemId":210203,"className":"TMAC02_104","name":"Reine Two-handed Mace","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":170,"minAtk":1527,"maxAtk":1866,"mAtk":1696},{"itemId":210204,"className":"TMAC02_105","name":"Pajoritas Two-Handed Mace","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":220,"minAtk":1966,"maxAtk":2402,"mAtk":2184},{"itemId":210205,"className":"TMAC02_106","name":"Migantis Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":270,"minAtk":2404,"maxAtk":2939,"mAtk":2671},{"itemId":210206,"className":"TMAC02_107","name":"Pevordimas Two-handed Mace","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":315,"minAtk":2799,"maxAtk":3421,"mAtk":3110},{"itemId":210207,"className":"TMAC02_108","name":"Raffye Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":350,"minAtk":3106,"maxAtk":3797,"mAtk":3451},{"itemId":210208,"className":"TMAC02_109","name":"Zvaigzde Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":380,"minAtk":3370,"maxAtk":4118,"mAtk":3744},{"itemId":210209,"className":"TMAC02_110","name":"Legva Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":400,"minAtk":3545,"maxAtk":4333,"mAtk":3939},{"itemId":210300,"className":"TMAC03_101","name":"(Faded) Krendall Two-handed Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":24832,"sellPrice":2730,"equipType1":"THMace","equipType2":"Mace","minLevel":120,"minAtk":1197,"maxAtk":1463,"mAtk":1330,"addMinAtk":77,"addMaxAtk":96},{"itemId":210301,"className":"TMAC03_102","name":"(Faded) Reine Two-handed Mace","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":38803,"sellPrice":3546,"equipType1":"THMace","equipType2":"Mace","minLevel":170,"minAtk":1680,"maxAtk":2053,"mAtk":1866},{"itemId":210302,"className":"TMAC03_103","name":"(Faded) Pajoritas Two-Handed Mace","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":52276,"sellPrice":6534,"equipType1":"THMace","equipType2":"Mace","minLevel":220,"minAtk":2162,"maxAtk":2643,"mAtk":2402},{"itemId":210303,"className":"TMAC03_104","name":"(Faded) Purine Migantis Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":64000,"sellPrice":5000,"equipType1":"THMace","equipType2":"Mace","minLevel":270,"minAtk":2645,"maxAtk":3233,"mAtk":2939},{"itemId":210304,"className":"TMAC03_105","name":"(Faded) Purine Pevordimas Two-handed Mace","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":78080,"sellPrice":5000,"equipType1":"THMace","equipType2":"Mace","minLevel":315,"minAtk":3079,"maxAtk":3763,"mAtk":3421},{"itemId":210305,"className":"TMAC03_106","name":"Vienarazis Two-handed Mace","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":78080,"sellPrice":20674,"equipType1":"THMace","equipType2":"Mace","minLevel":315,"minAtk":3079,"maxAtk":3763,"mAtk":3421,"addMinAtk":202,"addMaxAtk":384},{"itemId":210306,"className":"TMAC03_107","name":"Berthas Krendall Two-handed Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":120,"minAtk":1197,"maxAtk":1463,"mAtk":1330},{"itemId":210307,"className":"TMAC03_108","name":"Berthas Reine Two-handed Mace","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":170,"minAtk":1680,"maxAtk":2053,"mAtk":1866},{"itemId":210308,"className":"TMAC03_109","name":"Berthas Pajoritas Two-handed Mace","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":220,"minAtk":2162,"maxAtk":2643,"mAtk":2402},{"itemId":210309,"className":"TMAC03_110","name":"Berthas Migantis Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":270,"minAtk":2645,"maxAtk":3233,"mAtk":2939},{"itemId":210310,"className":"TMAC03_111","name":"Berthas Pevordimas Two-handed Mace","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":315,"minAtk":3079,"maxAtk":3763,"mAtk":3421},{"itemId":210311,"className":"TMAC03_112","name":"Berthas Raffye Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":350,"minAtk":3417,"maxAtk":4176,"mAtk":3797},{"itemId":210312,"className":"TMAC03_113","name":"Berthas Zvaigzde Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":380,"minAtk":3707,"maxAtk":4530,"mAtk":4118},{"itemId":210313,"className":"TMAC03_114","name":"Berthas Legva Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":400,"minAtk":3900,"maxAtk":4766,"mAtk":4333},{"itemId":210314,"className":"TMAC03_115","name":"Berthas Dysnai Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":430,"minAtk":4189,"maxAtk":5120,"mAtk":4655},{"itemId":210400,"className":"TMAC04_101","name":"Skull Breaker","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":78080,"sellPrice":23649,"equipType1":"THMace","equipType2":"Mace","minLevel":315,"minAtk":3499,"maxAtk":4277,"mAtk":3888},{"itemId":210401,"className":"TMAC04_102","name":"Primus Krendall Two-handed Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":120,"minAtk":1360,"maxAtk":1662,"mAtk":1511},{"itemId":210402,"className":"TMAC04_103","name":"Primus Reine Two-handed Mace","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":170,"minAtk":1909,"maxAtk":2333,"mAtk":2121},{"itemId":210403,"className":"TMAC04_104","name":"Primus Pajoritas Two-handed Mace","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":220,"minAtk":2457,"maxAtk":3003,"mAtk":2730},{"itemId":210404,"className":"TMAC04_105","name":"Primus Migantis Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":270,"minAtk":3005,"maxAtk":3673,"mAtk":3339},{"itemId":210405,"className":"TMAC04_106","name":"Primus Pevordimas Two-handed Mace","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":315,"minAtk":3499,"maxAtk":4277,"mAtk":3888},{"itemId":210406,"className":"TMAC04_107","name":"Primus Raffye Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":350,"minAtk":3883,"maxAtk":4746,"mAtk":4314},{"itemId":210407,"className":"TMAC04_108","name":"Masinios Two-handed Mace","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":350,"minAtk":3883,"maxAtk":4746,"mAtk":4314},{"itemId":210409,"className":"TMAC04_109","name":"Primus Zvaigzde Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":380,"minAtk":4212,"maxAtk":5148,"mAtk":4680},{"itemId":210410,"className":"TMAC04_110","name":"Wastrel Zvaigzde Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":380,"minAtk":4212,"maxAtk":5148,"mAtk":4680},{"itemId":210411,"className":"TMAC04_111","name":"Asio Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":380,"minAtk":4212,"maxAtk":5148,"mAtk":4680},{"itemId":210412,"className":"TMAC04_112","name":"Primus Legva Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":400,"minAtk":4431,"maxAtk":5416,"mAtk":4924},{"itemId":210413,"className":"TMAC04_113","name":"Skiaclipse Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":400,"minAtk":4431,"maxAtk":5416,"mAtk":4924,"addMaxAtk":762},{"itemId":210414,"className":"TMAC04_114","name":"Skiaclipse Two-handed Maul","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":400,"minAtk":4431,"maxAtk":5416,"mAtk":4924},{"itemId":210415,"className":"TMAC04_115","name":"Moringponia Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":400,"minAtk":4431,"maxAtk":5416,"mAtk":4924,"strike":291},{"itemId":210416,"className":"TMAC04_116","name":"Misrus Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":400,"minAtk":4431,"maxAtk":5416,"mAtk":4924},{"itemId":210417,"className":"TMAC04_117","name":"Primus Dysnai Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":430,"minAtk":4760,"maxAtk":5818,"mAtk":5289},{"itemId":210500,"className":"TMAC05_101","name":"Lolopanther Two-handed Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":64000,"sellPrice":9760,"equipType1":"THMace","equipType2":"Mace","minLevel":270,"minAtk":3847,"maxAtk":4702,"mAtk":4274},{"itemId":210501,"className":"TMAC05_102","name":"Solmiki Two-handed Mace","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":78080,"sellPrice":12952,"equipType1":"THMace","equipType2":"Mace","minLevel":330,"minAtk":4689,"maxAtk":5731,"mAtk":5210},{"itemId":210502,"className":"TMAC05_103","name":"Velcoffer Two-handed Mace","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":360,"minAtk":5111,"maxAtk":6246,"mAtk":5678},{"itemId":210504,"className":"TMAC05_104","name":"Velcoffer Two-handed Mace","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":360,"minAtk":5111,"maxAtk":6246,"mAtk":5678},{"itemId":210505,"className":"TMAC05_105","name":"Savinose Legva Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":400,"minAtk":5672,"maxAtk":6933,"mAtk":6302},{"itemId":210506,"className":"TMAC05_106","name":"Skiaclipse Varna Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":400,"minAtk":5672,"maxAtk":6933,"mAtk":6302},{"itemId":241101,"className":"SPR01_101","name":"Short Spear","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":576,"equipType1":"Spear","equipType2":"Spear","minLevel":40,"minAtk":294,"maxAtk":359},{"itemId":241102,"className":"SPR01_102","name":"Espontoon","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":1164,"equipType1":"Spear","equipType2":"Spear","minLevel":40,"minAtk":294,"maxAtk":359},{"itemId":241103,"className":"SPR01_103","name":"Winged Espontoon","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":3640,"sellPrice":2419,"equipType1":"Spear","equipType2":"Spear","minLevel":40,"minAtk":294,"maxAtk":359},{"itemId":241104,"className":"SPR01_104","name":"Spontoon","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":3640,"sellPrice":2419,"equipType1":"Spear","equipType2":"Spear","minLevel":40,"minAtk":294,"maxAtk":359},{"itemId":241105,"className":"SPR01_105","name":"Hasta","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":8583,"sellPrice":2419,"equipType1":"Spear","equipType2":"Spear","minLevel":75,"minAtk":528,"maxAtk":645},{"itemId":241106,"className":"SPR01_106","name":"Long Hasta","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":8583,"sellPrice":2939,"equipType1":"Spear","equipType2":"Spear","minLevel":75,"minAtk":528,"maxAtk":645},{"itemId":241107,"className":"SPR01_107","name":"Superior Short Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":3640,"sellPrice":921,"equipType1":"Spear","equipType2":"Spear","minLevel":40,"minAtk":294,"maxAtk":359},{"itemId":241108,"className":"SPR01_108","name":"Superior Espontoon","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":3640,"sellPrice":2374,"equipType1":"Spear","equipType2":"Spear","minLevel":40,"minAtk":294,"maxAtk":359},{"itemId":241109,"className":"SPR01_109","name":"Dunkel Short Spear","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":921,"equipType1":"Spear","equipType2":"Spear","minLevel":40,"minAtk":294,"maxAtk":359},{"itemId":241110,"className":"SPR01_110","name":"Dunkel Espontoon","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":921,"equipType1":"Spear","equipType2":"Spear","minLevel":40,"minAtk":294,"maxAtk":359},{"itemId":241111,"className":"SPR01_111","name":"Dunkel Hasta","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":8583,"sellPrice":2419,"equipType1":"Spear","equipType2":"Spear","minLevel":75,"minAtk":528,"maxAtk":645},{"itemId":241112,"className":"SPR01_112","name":"Long Spoonton","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":4323,"equipType1":"Spear","equipType2":"Spear","minLevel":75,"minAtk":528,"maxAtk":645},{"itemId":241113,"className":"SPR01_113","name":"Alchupiz","type":"Equip","group":"Weapon","weight":135,"maxStack":1,"price":15520,"sellPrice":4323,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":829,"maxAtk":1013},{"itemId":241114,"className":"SPR01_114","name":"Gelti Alchupiz","type":"Equip","group":"Weapon","weight":135,"maxStack":1,"price":15520,"sellPrice":4368,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":829,"maxAtk":1013},{"itemId":241115,"className":"SPR01_115","name":"Winged Spear","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":5068,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":829,"maxAtk":1013},{"itemId":241116,"className":"SPR01_116","name":"Breach Pike","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":24252,"sellPrice":6887,"equipType1":"Spear","equipType2":"Spear","minLevel":170,"minAtk":1163,"maxAtk":1421},{"itemId":241117,"className":"SPR01_117","name":"Langdebeve","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":6936,"equipType1":"Spear","equipType2":"Spear","minLevel":170,"minAtk":1163,"maxAtk":1421},{"itemId":241118,"className":"SPR01_118","name":"Chauve-souris","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":24252,"sellPrice":7760,"equipType1":"Spear","equipType2":"Spear","minLevel":170,"minAtk":1163,"maxAtk":1421},{"itemId":241119,"className":"SPR01_119","name":"Yorgis Alchupiz","type":"Equip","group":"Weapon","weight":135,"maxStack":1,"price":15520,"sellPrice":4323,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":829,"maxAtk":1013},{"itemId":241120,"className":"SPR01_120","name":"Corsesca","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":32673,"sellPrice":10401,"equipType1":"Spear","equipType2":"Spear","minLevel":220,"minAtk":1497,"maxAtk":1830},{"itemId":241121,"className":"SPR01_121","name":"Superior Corsesca","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":32673,"sellPrice":10455,"equipType1":"Spear","equipType2":"Spear","minLevel":220,"minAtk":1497,"maxAtk":1830},{"itemId":241122,"className":"SPR01_122","name":"(Faded) Replica Migantis Spear","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":80000,"sellPrice":5000,"equipType1":"Spear","equipType2":"Spear","minLevel":270,"minAtk":1831,"maxAtk":2238},{"itemId":241123,"className":"SPR01_123","name":"(Faded) Replica Pevordimas Spear","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":120000,"sellPrice":5000,"equipType1":"Spear","equipType2":"Spear","minLevel":315,"minAtk":2132,"maxAtk":2605},{"itemId":241124,"className":"SPR01_124","name":"Practice Short Spear","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":40,"minAtk":294,"maxAtk":359},{"itemId":241125,"className":"SPR01_125","name":"Prati","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":220,"minAtk":1497,"maxAtk":1830},{"itemId":242101,"className":"SPR02_101","name":"Sauroter","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":3640,"sellPrice":921,"equipType1":"Spear","equipType2":"Spear","minLevel":40,"minAtk":327,"maxAtk":399},{"itemId":242102,"className":"SPR02_102","name":"Dory","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Spear","equipType2":"Spear","minLevel":40,"minAtk":327,"maxAtk":399},{"itemId":242103,"className":"SPR02_103","name":"Assegai","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Spear","equipType2":"Spear","minLevel":40,"minAtk":327,"maxAtk":399},{"itemId":242104,"className":"SPR02_104","name":"Cheminis Spear","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Spear","equipType2":"Spear","minLevel":40,"minAtk":327,"maxAtk":399},{"itemId":242105,"className":"SPR02_105","name":"Grand Spontoon","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Spear","equipType2":"Spear","minLevel":75,"minAtk":587,"maxAtk":717},{"itemId":242106,"className":"SPR02_106","name":"Zega Spear","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":2730,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":921,"maxAtk":1125},{"itemId":242107,"className":"SPR02_107","name":"Harl Spear","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":4274,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":921,"maxAtk":1125},{"itemId":242108,"className":"SPR02_108","name":"Chaser","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":4304,"equipType1":"Spear","equipType2":"Spear","minLevel":170,"minAtk":1292,"maxAtk":1579},{"itemId":242109,"className":"SPR02_109","name":"Imperni Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":8583,"sellPrice":2673,"equipType1":"Spear","equipType2":"Spear","minLevel":75,"minAtk":587,"maxAtk":717},{"itemId":242110,"className":"SPR02_110","name":"Fedimian Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Spear","equipType2":"Spear","minLevel":75,"minAtk":587,"maxAtk":717},{"itemId":242111,"className":"SPR02_111","name":"Thresh Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Spear","equipType2":"Spear","minLevel":40,"minAtk":327,"maxAtk":399},{"itemId":242112,"className":"SPR02_112","name":"Sestas Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Spear","equipType2":"Spear","minLevel":75,"minAtk":587,"maxAtk":717},{"itemId":242113,"className":"SPR02_113","name":"Dratt Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":4304,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":921,"maxAtk":1125},{"itemId":242114,"className":"SPR02_114","name":"Aston Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":24252,"sellPrice":4951,"equipType1":"Spear","equipType2":"Spear","minLevel":170,"minAtk":1292,"maxAtk":1579},{"itemId":242115,"className":"SPR02_115","name":"Tenet Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":3640,"sellPrice":576,"equipType1":"Spear","equipType2":"Spear","minLevel":40,"minAtk":327,"maxAtk":399},{"itemId":242116,"className":"SPR02_116","name":"Patrice Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":3640,"sellPrice":576,"equipType1":"Spear","equipType2":"Spear","minLevel":40,"minAtk":327,"maxAtk":399},{"itemId":242117,"className":"SPR02_117","name":"Lukas Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":8583,"sellPrice":1512,"equipType1":"Spear","equipType2":"Spear","minLevel":75,"minAtk":587,"maxAtk":717},{"itemId":242118,"className":"SPR02_118","name":"Philis Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":8583,"sellPrice":1512,"equipType1":"Spear","equipType2":"Spear","minLevel":75,"minAtk":587,"maxAtk":717},{"itemId":242119,"className":"SPR02_119","name":"Escanciu Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":8583,"sellPrice":1512,"equipType1":"Spear","equipType2":"Spear","minLevel":75,"minAtk":587,"maxAtk":717},{"itemId":242120,"className":"SPR02_120","name":"Krag Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":8583,"sellPrice":1512,"equipType1":"Spear","equipType2":"Spear","minLevel":75,"minAtk":587,"maxAtk":717},{"itemId":242121,"className":"SPR02_121","name":"Pilgrim Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":2702,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":921,"maxAtk":1125},{"itemId":242122,"className":"SPR02_122","name":"Istora Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":24252,"sellPrice":3136,"equipType1":"Spear","equipType2":"Spear","minLevel":170,"minAtk":1292,"maxAtk":1579},{"itemId":242123,"className":"SPR02_123","name":"Hell's Alchupiz","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":2702,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":921,"maxAtk":1125},{"itemId":242124,"className":"SPR02_124","name":"Hunting Gelti Alchupiz","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":4368,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":921,"maxAtk":1125},{"itemId":242125,"className":"SPR02_125","name":"Jaas Winged Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":5017,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":921,"maxAtk":1125},{"itemId":242126,"className":"SPR02_126","name":"Lumas Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":4323,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":921,"maxAtk":1125},{"itemId":242127,"className":"SPR02_127","name":"Artie Breach Pike","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":24252,"sellPrice":6887,"equipType1":"Spear","equipType2":"Spear","minLevel":170,"minAtk":1292,"maxAtk":1579},{"itemId":242128,"className":"SPR02_128","name":"Light Langdebeve","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":24252,"sellPrice":6936,"equipType1":"Spear","equipType2":"Spear","minLevel":170,"minAtk":1292,"maxAtk":1579},{"itemId":242129,"className":"SPR02_129","name":"Adata Chauve-souris","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":24252,"sellPrice":7814,"equipType1":"Spear","equipType2":"Spear","minLevel":170,"minAtk":1292,"maxAtk":1579},{"itemId":242130,"className":"SPR02_130","name":"Slaake Corsesca","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":32673,"sellPrice":10401,"equipType1":"Spear","equipType2":"Spear","minLevel":220,"minAtk":1663,"maxAtk":2033},{"itemId":242131,"className":"SPR02_131","name":"Artie Hasta","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":32673,"sellPrice":10455,"equipType1":"Spear","equipType2":"Spear","minLevel":220,"minAtk":1663,"maxAtk":2033,"addDef":19},{"itemId":242132,"className":"SPR02_132","name":"Vienie Corsesca","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":32673,"sellPrice":10455,"equipType1":"Spear","equipType2":"Spear","minLevel":220,"minAtk":1663,"maxAtk":2033},{"itemId":242133,"className":"SPR02_133","name":"Supportive Alchupiz","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":75,"minAtk":587,"maxAtk":717},{"itemId":242150,"className":"SPR02_150","name":"Tevhrin Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":32673,"sellPrice":4917,"equipType1":"Spear","equipType2":"Spear","minLevel":220,"minAtk":1663,"maxAtk":2033},{"itemId":242151,"className":"SPR02_151","name":"(Faded) Migantis Spear","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":40000,"sellPrice":5000,"equipType1":"Spear","equipType2":"Spear","minLevel":270,"minAtk":2034,"maxAtk":2487},{"itemId":242152,"className":"SPR02_152","name":"(Faded) Pevordimas Spear","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":48800,"sellPrice":5000,"equipType1":"Spear","equipType2":"Spear","minLevel":315,"minAtk":2369,"maxAtk":2895},{"itemId":242153,"className":"SPR02_153","name":"Fluke Spear","type":"Equip","group":"Weapon","weight":141,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":921,"maxAtk":1125},{"itemId":242154,"className":"SPR02_154","name":"Golden Spear","type":"Equip","group":"Weapon","weight":147,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":170,"minAtk":1292,"maxAtk":1579},{"itemId":242155,"className":"SPR02_155","name":"Sketis Spear","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":75,"minAtk":587,"maxAtk":717},{"itemId":242156,"className":"SPR02_156","name":"Pajoritas Spear","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":220,"minAtk":1663,"maxAtk":2033},{"itemId":242157,"className":"SPR02_157","name":"Migantis Spear","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":270,"minAtk":2034,"maxAtk":2487},{"itemId":242158,"className":"SPR02_158","name":"Pevordimas Spear","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":315,"minAtk":2369,"maxAtk":2895},{"itemId":242159,"className":"SPR02_159","name":"Raffye Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":350,"minAtk":2628,"maxAtk":3213},{"itemId":242160,"className":"SPR02_160","name":"Zvaigzde Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":380,"minAtk":2851,"maxAtk":3485},{"itemId":242161,"className":"SPR02_161","name":"Legva Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":400,"minAtk":3000,"maxAtk":3666},{"itemId":243101,"className":"SPR03_101","name":"Silver Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Spear","equipType2":"Spear","minLevel":40,"minAtk":359,"maxAtk":439,"addMDef":39},{"itemId":243102,"className":"SPR03_102","name":"Geras Spear","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":4951,"equipType1":"Spear","equipType2":"Spear","minLevel":170,"minAtk":1421,"maxAtk":1737},{"itemId":243103,"className":"SPR03_103","name":"Doom Spear","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Spear","equipType2":"Spear","minLevel":75,"minAtk":645,"maxAtk":789},{"itemId":243104,"className":"SPR03_104","name":"Firnas","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":32673,"sellPrice":6534,"equipType1":"Spear","equipType2":"Spear","minLevel":220,"minAtk":1830,"maxAtk":2236},{"itemId":243105,"className":"SPR03_105","name":"noname","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Spear","equipType2":"Spear","minLevel":170,"minAtk":1421,"maxAtk":1737},{"itemId":243106,"className":"SPR03_106","name":"Gamble","type":"Equip","group":"Weapon","weight":135,"maxStack":1,"price":15520,"sellPrice":17700,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":1013,"maxAtk":1238},{"itemId":243107,"className":"SPR03_107","name":"Seimos Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":4368,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":1013,"maxAtk":1238},{"itemId":243108,"className":"SPR03_108","name":"Tilly Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":6887,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":1013,"maxAtk":1238,"pAtk":21},{"itemId":243109,"className":"SPR03_109","name":"Khasti Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":24252,"sellPrice":7814,"equipType1":"Spear","equipType2":"Spear","minLevel":170,"minAtk":1421,"maxAtk":1737,"addMaxAtk":21},{"itemId":243110,"className":"SPR03_110","name":"noname","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":24252,"sellPrice":128,"equipType1":"Spear","equipType2":"Spear","minLevel":170,"minAtk":1421,"maxAtk":1737},{"itemId":243111,"className":"SPR03_111","name":"noname","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":32673,"sellPrice":128,"equipType1":"Spear","equipType2":"Spear","minLevel":220,"minAtk":1830,"maxAtk":2236},{"itemId":243112,"className":"SPR03_112","name":"Pensara Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":32673,"sellPrice":10401,"equipType1":"Spear","equipType2":"Spear","minLevel":220,"minAtk":1830,"maxAtk":2236},{"itemId":243115,"className":"SPR03_115","name":"Pygry Spear","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":48800,"sellPrice":15616,"equipType1":"Spear","equipType2":"Spear","minLevel":315,"minAtk":2605,"maxAtk":3184},{"itemId":243301,"className":"SPR03_301","name":"(Faded) Fluke Spear","type":"Equip","group":"Weapon","weight":141,"maxStack":1,"price":15520,"sellPrice":2702,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":1013,"maxAtk":1238},{"itemId":243302,"className":"SPR03_302","name":"(Faded) Golden Spear","type":"Equip","group":"Weapon","weight":147,"maxStack":1,"price":24252,"sellPrice":2702,"equipType1":"Spear","equipType2":"Spear","minLevel":170,"minAtk":1421,"maxAtk":1737},{"itemId":243305,"className":"SPR03_303","name":"(Faded) Sketis Spear","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":8583,"sellPrice":1512,"equipType1":"Spear","equipType2":"Spear","minLevel":75,"minAtk":645,"maxAtk":789},{"itemId":243306,"className":"SPR03_304","name":"(Faded) Pajoritas Spear","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":32673,"sellPrice":6534,"equipType1":"Spear","equipType2":"Spear","minLevel":220,"minAtk":1830,"maxAtk":2236},{"itemId":243307,"className":"SPR03_307","name":"(Faded) Purine Migantis Spear","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":40000,"sellPrice":5000,"equipType1":"Spear","equipType2":"Spear","minLevel":270,"minAtk":2238,"maxAtk":2735},{"itemId":243308,"className":"SPR03_308","name":"(Faded) Purine Pevordimas Spear","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":48800,"sellPrice":5000,"equipType1":"Spear","equipType2":"Spear","minLevel":315,"minAtk":2605,"maxAtk":3184},{"itemId":243309,"className":"SPR03_309","name":"Berthas Fluke Spear","type":"Equip","group":"Weapon","weight":141,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":1013,"maxAtk":1238},{"itemId":243310,"className":"SPR03_310","name":"Berthas Golden Spear","type":"Equip","group":"Weapon","weight":147,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":170,"minAtk":1421,"maxAtk":1737},{"itemId":243311,"className":"SPR03_311","name":"Berthas Sketis Spear","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":75,"minAtk":645,"maxAtk":789},{"itemId":243312,"className":"SPR03_312","name":"Berthas Pajoritas Spear","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":220,"minAtk":1830,"maxAtk":2236},{"itemId":243313,"className":"SPR03_313","name":"Berthas Migantis Spear","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":270,"minAtk":2238,"maxAtk":2735},{"itemId":243314,"className":"SPR03_314","name":"Berthas Pevordimas Spear","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":315,"minAtk":2605,"maxAtk":3184},{"itemId":243315,"className":"SPR03_315","name":"Berthas Raffye Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":350,"minAtk":2891,"maxAtk":3534},{"itemId":243316,"className":"SPR03_316","name":"Berthas Zvaigzde Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":380,"minAtk":3136,"maxAtk":3833},{"itemId":243317,"className":"SPR03_317","name":"Berthas Legva Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":400,"minAtk":3300,"maxAtk":4033},{"itemId":243318,"className":"SPR03_318","name":"Berthas Dysnai Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":430,"minAtk":3545,"maxAtk":4332},{"itemId":244101,"className":"SPR04_101","name":"Adatag","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":868,"equipType1":"Spear","equipType2":"Spear","minLevel":75,"minAtk":733,"maxAtk":896},{"itemId":244102,"className":"SPR04_102","name":"Stinger","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":15520,"sellPrice":2702,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":1151,"maxAtk":1407,"addMaxAtk":18},{"itemId":244103,"className":"SPR04_103","name":"Brandish","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":6467,"equipType1":"Spear","equipType2":"Spear","minLevel":170,"minAtk":1615,"maxAtk":1974},{"itemId":244104,"className":"SPR04_104","name":"noname","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":80,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":1151,"maxAtk":1407},{"itemId":244105,"className":"SPR04_105","name":"Galatunis Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":10455,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":1151,"maxAtk":1407},{"itemId":244106,"className":"SPR04_106","name":"noname","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":24252,"sellPrice":128,"equipType1":"Spear","equipType2":"Spear","minLevel":170,"minAtk":1615,"maxAtk":1974},{"itemId":244107,"className":"SPR04_107","name":"Maga Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":24252,"sellPrice":7922,"equipType1":"Spear","equipType2":"Spear","minLevel":170,"minAtk":1615,"maxAtk":1974},{"itemId":244108,"className":"SPR04_108","name":"Lolopanther Spear","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":40000,"sellPrice":15616,"equipType1":"Spear","equipType2":"Spear","minLevel":270,"minAtk":3255,"maxAtk":3978},{"itemId":244109,"className":"SPR04_109","name":"Solmiki Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":48800,"sellPrice":17895,"equipType1":"Spear","equipType2":"Spear","minLevel":330,"minAtk":3968,"maxAtk":4850},{"itemId":244110,"className":"SPR04_110","name":"Wingshard Spear","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":48800,"sellPrice":17798,"equipType1":"Spear","equipType2":"Spear","minLevel":315,"minAtk":2961,"maxAtk":3619},{"itemId":244111,"className":"SPR04_111","name":"Primus Fluke Spear","type":"Equip","group":"Weapon","weight":141,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":1151,"maxAtk":1407},{"itemId":244112,"className":"SPR04_112","name":"Primus Golden Spear","type":"Equip","group":"Weapon","weight":147,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":170,"minAtk":1615,"maxAtk":1974},{"itemId":244113,"className":"SPR04_113","name":"Primus Sketis Spear","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":75,"minAtk":733,"maxAtk":896},{"itemId":244114,"className":"SPR04_114","name":"Primus Pajoritas Spear","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":220,"minAtk":2079,"maxAtk":2541},{"itemId":244115,"className":"SPR04_115","name":"Primus Migantis Spear","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":270,"minAtk":2543,"maxAtk":3108},{"itemId":244116,"className":"SPR04_116","name":"Primus Pevordimas Spear","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":315,"minAtk":2961,"maxAtk":3619},{"itemId":244117,"className":"SPR04_117","name":"Primus Raffye Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":350,"minAtk":3286,"maxAtk":4016},{"itemId":244118,"className":"SPR04_118","name":"Masinios Spear","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":350,"minAtk":3286,"maxAtk":4016},{"itemId":244119,"className":"SPR04_119","name":"Primus Zvaigzde Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":380,"minAtk":3564,"maxAtk":4356},{"itemId":244120,"className":"SPR04_120","name":"Wastrel Zvaigzde Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":380,"minAtk":3564,"maxAtk":4356},{"itemId":244121,"className":"SPR04_121","name":"Asio Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":380,"minAtk":3564,"maxAtk":4356},{"itemId":244122,"className":"SPR04_122","name":"Primus Legva Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":400,"minAtk":3750,"maxAtk":4583},{"itemId":244123,"className":"SPR04_123","name":"Skiaclipse Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":400,"minAtk":3750,"maxAtk":4583},{"itemId":244124,"className":"SPR04_124","name":"Moringponia Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":400,"minAtk":3750,"maxAtk":4583},{"itemId":244125,"className":"SPR04_125","name":"Misrus Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":400,"minAtk":3750,"maxAtk":4583,"aries":392},{"itemId":244126,"className":"SPR04_126","name":"Primus Dysnai Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":430,"minAtk":4028,"maxAtk":4923},{"itemId":245101,"className":"SPR05_101","name":"Velcoffer Spear","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":360,"minAtk":4324,"maxAtk":5285},{"itemId":245102,"className":"SPR05_102","name":"Velcoffer Spear","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":360,"minAtk":4324,"maxAtk":5285},{"itemId":245103,"className":"SPR05_103","name":"Savinose Legva Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":400,"minAtk":4800,"maxAtk":5866},{"itemId":245104,"className":"SPR05_104","name":"Skiaclipse Varna Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":400,"minAtk":4800,"maxAtk":5866},{"itemId":251101,"className":"TSP01_101","name":"Pike","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":485,"maxAtk":901},{"itemId":251102,"className":"TSP01_102","name":"Partisan","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":485,"maxAtk":901},{"itemId":251103,"className":"TSP01_103","name":"Trident","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":13732,"sellPrice":4368,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":485,"maxAtk":901},{"itemId":251104,"className":"TSP01_104","name":"Royal Partisan","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":24832,"sellPrice":5068,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":762,"maxAtk":1415},{"itemId":251105,"className":"TSP01_105","name":"Cone Pike","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":24832,"sellPrice":6887,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":762,"maxAtk":1415},{"itemId":251106,"className":"TSP01_106","name":"Fedimian Pike","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":24832,"sellPrice":6936,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":762,"maxAtk":1415},{"itemId":251107,"className":"TSP01_107","name":"Dunkel Pike","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":13732,"sellPrice":2939,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":485,"maxAtk":901},{"itemId":251108,"className":"TSP01_108","name":"Royal Trident","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":38803,"sellPrice":8030,"equipType1":"THSpear","equipType2":"Spear","minLevel":170,"minAtk":1069,"maxAtk":1985},{"itemId":251109,"className":"TSP01_109","name":"Battle Fork","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THSpear","equipType2":"Spear","minLevel":170,"minAtk":1069,"maxAtk":1985},{"itemId":251110,"className":"TSP01_110","name":"Halberd","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THSpear","equipType2":"Spear","minLevel":170,"minAtk":1069,"maxAtk":1985},{"itemId":251111,"className":"TSP01_111","name":"Yorgis Alchupiz","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":24832,"sellPrice":4368,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":762,"maxAtk":1415},{"itemId":251112,"className":"TSP01_112","name":"Demon Pike","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":52276,"sellPrice":12697,"equipType1":"THSpear","equipType2":"Spear","minLevel":220,"minAtk":1376,"maxAtk":2555},{"itemId":251113,"className":"TSP01_113","name":"Superior Demon Pike","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":52276,"sellPrice":12748,"equipType1":"THSpear","equipType2":"Spear","minLevel":220,"minAtk":1376,"maxAtk":2555},{"itemId":251114,"className":"TSP01_114","name":"(Faded) Replica Migantis Pike","type":"Equip","group":"Weapon","weight":290,"maxStack":1,"price":96000,"sellPrice":5000,"equipType1":"THSpear","equipType2":"Spear","minLevel":270,"minAtk":1683,"maxAtk":3126},{"itemId":251115,"className":"TSP01_115","name":"(Faded) Replica Pevordimas Pike","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":144000,"sellPrice":5000,"equipType1":"THSpear","equipType2":"Spear","minLevel":315,"minAtk":1959,"maxAtk":3639},{"itemId":251116,"className":"TSP01_116","name":"Practice Pike","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":13732,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":485,"maxAtk":901},{"itemId":251117,"className":"TSP01_117","name":"Practice Pike","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":270,"minAtk":1683,"maxAtk":3126},{"itemId":251999,"className":"TSP01_999","name":"Standard Two-handed Spear","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":13732,"sellPrice":13209,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":485,"maxAtk":901},{"itemId":252101,"className":"TSP02_101","name":"Medina Pike","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":539,"maxAtk":1001},{"itemId":252102,"className":"TSP02_102","name":"Free Partisan","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":13732,"sellPrice":4966,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":539,"maxAtk":1001},{"itemId":252103,"className":"TSP02_103","name":"Cheminis Pike","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":5824,"sellPrice":2794,"equipType1":"THSpear","equipType2":"Spear","minLevel":40,"minAtk":300,"maxAtk":558},{"itemId":252104,"className":"TSP02_104","name":"Entra Partisan","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":24832,"sellPrice":6887,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":846,"maxAtk":1572},{"itemId":252105,"className":"TSP02_105","name":"Galin Trident","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":24832,"sellPrice":6936,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":846,"maxAtk":1572},{"itemId":252106,"className":"TSP02_106","name":"Imperni Pike","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":539,"maxAtk":1001},{"itemId":252107,"className":"TSP02_107","name":"Pine Cone Pike","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":10401,"equipType1":"THSpear","equipType2":"Spear","minLevel":170,"minAtk":1188,"maxAtk":2205},{"itemId":252108,"className":"TSP02_108","name":"Great Pike","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":13732,"sellPrice":4368,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":539,"maxAtk":1001},{"itemId":252109,"className":"TSP02_109","name":"Sestas Pike","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":13732,"sellPrice":4966,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":539,"maxAtk":1001},{"itemId":252110,"className":"TSP02_110","name":"Dratt Pike","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":7760,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":846,"maxAtk":1572},{"itemId":252111,"className":"TSP02_111","name":"Aston Pike","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THSpear","equipType2":"Spear","minLevel":170,"minAtk":1188,"maxAtk":2205},{"itemId":252112,"className":"TSP02_112","name":"Lukas Pike","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":13732,"sellPrice":2419,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":539,"maxAtk":1001},{"itemId":252113,"className":"TSP02_113","name":"Philis Pike","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":13732,"sellPrice":2419,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":539,"maxAtk":1001},{"itemId":252114,"className":"TSP02_114","name":"Escanciu Pike","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":539,"maxAtk":1001},{"itemId":252115,"className":"TSP02_115","name":"Krag Pike","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":539,"maxAtk":1001},{"itemId":252116,"className":"TSP02_116","name":"Pilgrim Pike","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":24832,"sellPrice":4414,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":846,"maxAtk":1572},{"itemId":252117,"className":"TSP02_117","name":"Istora Pike","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":38803,"sellPrice":6936,"equipType1":"THSpear","equipType2":"Spear","minLevel":170,"minAtk":1188,"maxAtk":2205},{"itemId":252118,"className":"TSP02_118","name":"Light Royal Partisan","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":24832,"sellPrice":5068,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":846,"maxAtk":1572},{"itemId":252119,"className":"TSP02_119","name":"Slaake Cone Pike","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":24832,"sellPrice":6887,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":846,"maxAtk":1572},{"itemId":252120,"className":"TSP02_120","name":"Holy Fedimian Pike","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":24832,"sellPrice":6936,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":846,"maxAtk":1572},{"itemId":252121,"className":"TSP02_121","name":"Lumas Pike","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":24832,"sellPrice":4966,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":846,"maxAtk":1572},{"itemId":252122,"className":"TSP02_122","name":"Earth Royal Trident","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":38803,"sellPrice":10401,"equipType1":"THSpear","equipType2":"Spear","minLevel":170,"minAtk":1188,"maxAtk":2205,"earthRes":34},{"itemId":252123,"className":"TSP02_123","name":"Artie Battle Fork","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THSpear","equipType2":"Spear","minLevel":170,"minAtk":1188,"maxAtk":2205,"addDef":20},{"itemId":252124,"className":"TSP02_124","name":"Magi Halberd","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THSpear","equipType2":"Spear","minLevel":170,"minAtk":1188,"maxAtk":2205},{"itemId":252125,"className":"TSP02_125","name":"Duris Demon Pike","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":52276,"sellPrice":12697,"equipType1":"THSpear","equipType2":"Spear","minLevel":220,"minAtk":1529,"maxAtk":2839},{"itemId":252126,"className":"TSP02_126","name":"Holy Partisan","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":52276,"sellPrice":12697,"equipType1":"THSpear","equipType2":"Spear","minLevel":220,"minAtk":1529,"maxAtk":2839},{"itemId":252127,"className":"TSP02_127","name":"Hell's Demon Pike","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":52276,"sellPrice":12748,"equipType1":"THSpear","equipType2":"Spear","minLevel":220,"minAtk":1529,"maxAtk":2839},{"itemId":252128,"className":"TSP02_128","name":"Supportive Royal Partisan","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":13732,"sellPrice":4966,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":539,"maxAtk":1001},{"itemId":252150,"className":"TSP02_150","name":"Tevhrin Pike","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":52276,"sellPrice":10455,"equipType1":"THSpear","equipType2":"Spear","minLevel":220,"minAtk":1529,"maxAtk":2839},{"itemId":252151,"className":"TSP02_151","name":"(Faded) Migantis Pike","type":"Equip","group":"Weapon","weight":290,"maxStack":1,"price":64000,"sellPrice":5000,"equipType1":"THSpear","equipType2":"Spear","minLevel":270,"minAtk":1870,"maxAtk":3473},{"itemId":252152,"className":"TSP02_152","name":"(Faded) Pevordimas Pike","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":78080,"sellPrice":5000,"equipType1":"THSpear","equipType2":"Spear","minLevel":315,"minAtk":2177,"maxAtk":4043},{"itemId":252153,"className":"TSP02_153","name":"Benesda","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":846,"maxAtk":1572},{"itemId":252154,"className":"TSP02_154","name":"Reine Pike","type":"Equip","group":"Weapon","weight":237,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":170,"minAtk":1188,"maxAtk":2205},{"itemId":252155,"className":"TSP02_155","name":"Sketis Pike","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":13732,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":539,"maxAtk":1001},{"itemId":252156,"className":"TSP02_156","name":"Pajoritas Pike","type":"Equip","group":"Weapon","weight":310,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":220,"minAtk":1529,"maxAtk":2839},{"itemId":252157,"className":"TSP02_157","name":"Migantis Pike","type":"Equip","group":"Weapon","weight":290,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":270,"minAtk":1870,"maxAtk":3473},{"itemId":252158,"className":"TSP02_158","name":"Pevordimas Pike","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":315,"minAtk":2177,"maxAtk":4043},{"itemId":252159,"className":"TSP02_159","name":"Raffye Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":350,"minAtk":2416,"maxAtk":4487},{"itemId":252160,"className":"TSP02_160","name":"Zvaigzde Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":380,"minAtk":2621,"maxAtk":4867},{"itemId":252161,"className":"TSP02_161","name":"Legva Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":400,"minAtk":2757,"maxAtk":5121},{"itemId":253101,"className":"TSP03_101","name":"Traxia","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":593,"maxAtk":1101},{"itemId":253102,"className":"TSP03_102","name":"Biteregina Thorns","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":593,"maxAtk":1101,"addMaxAtk":20},{"itemId":253103,"className":"TSP03_103","name":"Lydeka","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":13732,"sellPrice":7760,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":593,"maxAtk":1101},{"itemId":253104,"className":"TSP03_104","name":"noname","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":38803,"sellPrice":12697,"equipType1":"THSpear","equipType2":"Spear","minLevel":170,"minAtk":1306,"maxAtk":2426},{"itemId":253105,"className":"TSP03_105","name":"noname","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":24832,"sellPrice":7760,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":931,"maxAtk":1729,"pAtk":121},{"itemId":253106,"className":"TSP03_106","name":"Cripple","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":52276,"sellPrice":12902,"equipType1":"THSpear","equipType2":"Spear","minLevel":220,"minAtk":1682,"maxAtk":3123},{"itemId":253107,"className":"TSP03_107","name":"Seimos Pike","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":24832,"sellPrice":6887,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":931,"maxAtk":1729},{"itemId":253108,"className":"TSP03_108","name":"noname","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":24832,"sellPrice":128,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":931,"maxAtk":1729},{"itemId":253109,"className":"TSP03_109","name":"Magas Pike","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THSpear","equipType2":"Spear","minLevel":170,"minAtk":1306,"maxAtk":2426,"addMinAtk":30},{"itemId":253110,"className":"TSP03_110","name":"noname","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":38803,"sellPrice":128,"equipType1":"THSpear","equipType2":"Spear","minLevel":170,"minAtk":1306,"maxAtk":2426},{"itemId":253111,"className":"TSP03_111","name":"noname","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":52276,"sellPrice":128,"equipType1":"THSpear","equipType2":"Spear","minLevel":220,"minAtk":1682,"maxAtk":3123},{"itemId":253112,"className":"TSP03_112","name":"Pensara Pike","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":52276,"sellPrice":12697,"equipType1":"THSpear","equipType2":"Spear","minLevel":220,"minAtk":1682,"maxAtk":3123},{"itemId":253115,"className":"TSP03_115","name":"Sacmet","type":"Equip","group":"Weapon","weight":205,"maxStack":1,"price":78080,"sellPrice":17798,"equipType1":"THSpear","equipType2":"Spear","minLevel":315,"minAtk":2395,"maxAtk":4448},{"itemId":253301,"className":"TSP03_301","name":"(Faded) Benesda","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":6936,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":931,"maxAtk":1729,"addMinAtk":71,"addMaxAtk":100},{"itemId":253302,"className":"TSP03_302","name":"(Faded) Reine Pike","type":"Equip","group":"Weapon","weight":237,"maxStack":1,"price":38803,"sellPrice":10401,"equipType1":"THSpear","equipType2":"Spear","minLevel":170,"minAtk":1306,"maxAtk":2426},{"itemId":253303,"className":"TSP03_303","name":"(Faded) Sketis Pike","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":13732,"sellPrice":2419,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":593,"maxAtk":1101},{"itemId":253304,"className":"TSP03_304","name":"(Faded) Pajoritas Pike","type":"Equip","group":"Weapon","weight":310,"maxStack":1,"price":52276,"sellPrice":10455,"equipType1":"THSpear","equipType2":"Spear","minLevel":220,"minAtk":1682,"maxAtk":3123},{"itemId":253305,"className":"TSP03_305","name":"(Faded) Purine Migantis Pike","type":"Equip","group":"Weapon","weight":290,"maxStack":1,"price":64000,"sellPrice":5000,"equipType1":"THSpear","equipType2":"Spear","minLevel":270,"minAtk":2057,"maxAtk":3820},{"itemId":253306,"className":"TSP03_306","name":"(Faded) Purine Pevordimas Pike","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":78080,"sellPrice":5000,"equipType1":"THSpear","equipType2":"Spear","minLevel":315,"minAtk":2395,"maxAtk":4448},{"itemId":253307,"className":"TSP03_307","name":"Berthas Benesda","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":931,"maxAtk":1729},{"itemId":253308,"className":"TSP03_308","name":"Berthas Reine Pike","type":"Equip","group":"Weapon","weight":237,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":170,"minAtk":1306,"maxAtk":2426},{"itemId":253309,"className":"TSP03_309","name":"Berthas Sketis Pike","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":13732,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":593,"maxAtk":1101},{"itemId":253310,"className":"TSP03_310","name":"Berthas Pajoritas Pike","type":"Equip","group":"Weapon","weight":310,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":220,"minAtk":1682,"maxAtk":3123},{"itemId":253311,"className":"TSP03_311","name":"Berthas Migantis Pike","type":"Equip","group":"Weapon","weight":290,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":270,"minAtk":2057,"maxAtk":3820},{"itemId":253312,"className":"TSP03_312","name":"Berthas Pevordimas Pike","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":315,"minAtk":2395,"maxAtk":4448},{"itemId":253313,"className":"TSP03_313","name":"Berthas Raffye Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":350,"minAtk":2658,"maxAtk":4936},{"itemId":253314,"className":"TSP03_314","name":"Berthas Zvaigzde Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":380,"minAtk":2883,"maxAtk":5354},{"itemId":253315,"className":"TSP03_315","name":"Berthas Legva Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":400,"minAtk":3033,"maxAtk":5633},{"itemId":253316,"className":"TSP03_316","name":"Berthas Dysnai Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":430,"minAtk":3258,"maxAtk":6051},{"itemId":254101,"className":"TSP04_101","name":"Flame Pike","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":5068,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":1058,"maxAtk":1965,"fireRes":-100},{"itemId":254102,"className":"TSP04_102","name":"Triton","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":24832,"sellPrice":15616,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":1058,"maxAtk":1965,"iceRes":56},{"itemId":254103,"className":"TSP04_103","name":"Elements","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":4368,"equipType1":"THSpear","equipType2":"Spear","minLevel":170,"minAtk":1484,"maxAtk":2757},{"itemId":254104,"className":"TSP04_104","name":"Ruma Pike","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":24832,"sellPrice":7868,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":1058,"maxAtk":1965,"addMDef":17},{"itemId":254105,"className":"TSP04_105","name":"Galatunis Pike","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":24832,"sellPrice":12697,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":1058,"maxAtk":1965},{"itemId":254106,"className":"TSP04_106","name":"noname","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":38803,"sellPrice":128,"equipType1":"THSpear","equipType2":"Spear","minLevel":170,"minAtk":1484,"maxAtk":2757},{"itemId":254107,"className":"TSP04_107","name":"Catacombs Pike","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":38803,"sellPrice":12697,"equipType1":"THSpear","equipType2":"Spear","minLevel":170,"minAtk":1484,"maxAtk":2757},{"itemId":254108,"className":"TSP04_108","name":"Lolopanther Pike","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":64000,"sellPrice":15616,"equipType1":"THSpear","equipType2":"Spear","minLevel":270,"minAtk":2992,"maxAtk":5557},{"itemId":254109,"className":"TSP04_109","name":"Plunger","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":52276,"sellPrice":12748,"equipType1":"THSpear","equipType2":"Spear","minLevel":220,"minAtk":1911,"maxAtk":3549,"poisonRes":35},{"itemId":254110,"className":"TSP04_110","name":"Solmiki Pike","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":78080,"sellPrice":20723,"equipType1":"THSpear","equipType2":"Spear","minLevel":330,"minAtk":3647,"maxAtk":6774},{"itemId":254111,"className":"TSP04_111","name":"Regard Horn Pike","type":"Equip","group":"Weapon","weight":215,"maxStack":1,"price":78080,"sellPrice":20723,"equipType1":"THSpear","equipType2":"Spear","minLevel":315,"minAtk":2721,"maxAtk":5054},{"itemId":254112,"className":"TSP04_112","name":"Primus Benesda","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":1058,"maxAtk":1965},{"itemId":254113,"className":"TSP04_113","name":"Primus Reine Pike","type":"Equip","group":"Weapon","weight":237,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":170,"minAtk":1484,"maxAtk":2757},{"itemId":254114,"className":"TSP04_114","name":"Primus Sketis Pike","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":13732,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":674,"maxAtk":1252},{"itemId":254115,"className":"TSP04_115","name":"Primus Pajoritas Pike","type":"Equip","group":"Weapon","weight":310,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":220,"minAtk":1911,"maxAtk":3549},{"itemId":254116,"className":"TSP04_116","name":"Primus Migantis Pike","type":"Equip","group":"Weapon","weight":290,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":270,"minAtk":2338,"maxAtk":4341},{"itemId":254117,"className":"TSP04_117","name":"Primus Pevordimas Pike","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":315,"minAtk":2721,"maxAtk":5054},{"itemId":254118,"className":"TSP04_118","name":"Primus Raffye Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":350,"minAtk":3020,"maxAtk":5609},{"itemId":254119,"className":"TSP04_119","name":"Masinios Pike","type":"Equip","group":"Weapon","weight":290,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":350,"minAtk":3020,"maxAtk":5609},{"itemId":254120,"className":"TSP04_120","name":"Primus Zvaigzde Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":380,"minAtk":3276,"maxAtk":6084},{"itemId":254121,"className":"TSP04_121","name":"Wastrel Zvaigzde Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":380,"minAtk":3276,"maxAtk":6084},{"itemId":254122,"className":"TSP04_122","name":"Asio Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":380,"minAtk":3276,"maxAtk":6084},{"itemId":254123,"className":"TSP04_123","name":"Primus Legva Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":400,"minAtk":3447,"maxAtk":6401},{"itemId":254124,"className":"TSP04_124","name":"Skiaclipse Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":400,"minAtk":3447,"maxAtk":6401,"addMaxAtk":725},{"itemId":254125,"className":"TSP04_125","name":"Moringponia Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":400,"minAtk":3447,"maxAtk":6401},{"itemId":254126,"className":"TSP04_126","name":"Misrus Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":400,"minAtk":3447,"maxAtk":6401},{"itemId":254127,"className":"TSP04_127","name":"Primus Dysnai Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":430,"minAtk":3703,"maxAtk":6876},{"itemId":255101,"className":"TSP05_101","name":"Velcoffer Pike","type":"Equip","group":"Weapon","weight":290,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":360,"minAtk":3975,"maxAtk":7382},{"itemId":255102,"className":"TSP05_102","name":"Velcoffer Pike","type":"Equip","group":"Weapon","weight":290,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":360,"minAtk":3975,"maxAtk":7382},{"itemId":255103,"className":"TSP05_103","name":"Savinose Legva Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":400,"minAtk":4412,"maxAtk":8193},{"itemId":255104,"className":"TSP05_104","name":"Skiaclipse Varna Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":400,"minAtk":4412,"maxAtk":8193},{"itemId":271101,"className":"TSF01_101","name":"Crude Wooden Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":170,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44},{"itemId":271102,"className":"TSF01_102","name":"Crude Oak Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THStaff","equipType2":"Staff","minLevel":15,"mAtk":167},{"itemId":271103,"className":"TSF01_103","name":"Staff","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THStaff","equipType2":"Staff","minLevel":15,"mAtk":167},{"itemId":271104,"className":"TSF01_104","name":"Ju Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":5824,"sellPrice":1164,"equipType1":"THStaff","equipType2":"Staff","minLevel":40,"mAtk":386},{"itemId":271105,"className":"TSF01_105","name":"Ubuko Staff","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THStaff","equipType2":"Staff","minLevel":40,"mAtk":386},{"itemId":271106,"className":"TSF01_106","name":"Stag Staff","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THStaff","equipType2":"Staff","minLevel":40,"mAtk":386},{"itemId":271107,"className":"TSF01_107","name":"Geometry Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THStaff","equipType2":"Staff","minLevel":40,"mAtk":386},{"itemId":271108,"className":"TSF01_108","name":"Demon Staff","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THStaff","equipType2":"Staff","minLevel":75,"mAtk":693},{"itemId":271109,"className":"TSF01_109","name":"Storm Staff","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THStaff","equipType2":"Staff","minLevel":75,"mAtk":693},{"itemId":271110,"className":"TSF01_110","name":"Wooden Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":393,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44},{"itemId":271111,"className":"TSF01_111","name":"Superior Wooden Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":921,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44},{"itemId":271112,"className":"TSF01_112","name":"Oak Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THStaff","equipType2":"Staff","minLevel":15,"mAtk":167},{"itemId":271113,"className":"TSF01_113","name":"Superior Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THStaff","equipType2":"Staff","minLevel":15,"mAtk":167},{"itemId":271114,"className":"TSF01_114","name":"Superior Ju Staff","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THStaff","equipType2":"Staff","minLevel":40,"mAtk":386},{"itemId":271115,"className":"TSF01_115","name":"Superior Ubuko Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THStaff","equipType2":"Staff","minLevel":40,"mAtk":386},{"itemId":271116,"className":"TSF01_116","name":"Dunkel Ju Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":5824,"sellPrice":921,"equipType1":"THStaff","equipType2":"Staff","minLevel":40,"mAtk":386},{"itemId":271117,"className":"TSF01_117","name":"Dunkel Demon Staff","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":13732,"sellPrice":2939,"equipType1":"THStaff","equipType2":"Staff","minLevel":75,"mAtk":693},{"itemId":271118,"className":"TSF01_118","name":"Dunkel Wooden Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":170,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44},{"itemId":271119,"className":"TSF01_119","name":"Dunkel Oak Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THStaff","equipType2":"Staff","minLevel":15,"mAtk":167},{"itemId":271120,"className":"TSF01_120","name":"Dunkel Staff","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THStaff","equipType2":"Staff","minLevel":15,"mAtk":167},{"itemId":271121,"className":"TSF01_121","name":"Dunkel Uboko Staff","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":5824,"sellPrice":2374,"equipType1":"THStaff","equipType2":"Staff","minLevel":40,"mAtk":386},{"itemId":271122,"className":"TSF01_122","name":"Drake Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":13732,"sellPrice":4368,"equipType1":"THStaff","equipType2":"Staff","minLevel":75,"mAtk":693},{"itemId":271123,"className":"TSF01_123","name":"Superior Drake Staff","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":24832,"sellPrice":5068,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1088},{"itemId":271124,"className":"TSF01_124","name":"Cross Staff","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":6887,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1088},{"itemId":271125,"className":"TSF01_125","name":"Superior Cross Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":24832,"sellPrice":6936,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1088},{"itemId":271126,"className":"TSF01_126","name":"Astro Staff","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":38803,"sellPrice":8030,"equipType1":"THStaff","equipType2":"Staff","minLevel":170,"mAtk":1527},{"itemId":271127,"className":"TSF01_127","name":"Superior Astro Staff","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THStaff","equipType2":"Staff","minLevel":170,"mAtk":1527},{"itemId":271128,"className":"TSF01_128","name":"Bokun Staff","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THStaff","equipType2":"Staff","minLevel":170,"mAtk":1527},{"itemId":271129,"className":"TSF01_129","name":"Yorgis Drake Staff","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":24832,"sellPrice":4368,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1088},{"itemId":271130,"className":"TSF01_130","name":"Evil Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":52276,"sellPrice":12697,"equipType1":"THStaff","equipType2":"Staff","minLevel":220,"mAtk":1966},{"itemId":271131,"className":"TSF01_131","name":"Superior Evil Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":52276,"sellPrice":12748,"equipType1":"THStaff","equipType2":"Staff","minLevel":220,"mAtk":1966},{"itemId":271132,"className":"TSF01_132","name":"(Faded) Replica Migantis Staff","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":96000,"sellPrice":5000,"equipType1":"THStaff","equipType2":"Staff","minLevel":270,"mAtk":2404},{"itemId":271133,"className":"TSF01_133","name":"(Faded) Replica Pevordimas Staff","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":144000,"sellPrice":5000,"equipType1":"THStaff","equipType2":"Staff","minLevel":315,"mAtk":2799},{"itemId":271999,"className":"TSF01_999","name":"Standard Staff","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":4608,"sellPrice":13209,"equipType1":"THStaff","equipType2":"Staff","minLevel":15,"mAtk":167},{"itemId":272101,"className":"TSF02_101","name":"Melinas Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":4608,"sellPrice":1388,"equipType1":"THStaff","equipType2":"Staff","minLevel":15,"mAtk":185},{"itemId":272102,"className":"TSF02_102","name":"Magi Staff","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THStaff","equipType2":"Staff","minLevel":40,"mAtk":429},{"itemId":272103,"className":"TSF02_103","name":"Ludas Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THStaff","equipType2":"Staff","minLevel":40,"mAtk":429},{"itemId":272104,"className":"TSF02_104","name":"Saltas Staff","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":13732,"sellPrice":3322,"equipType1":"THStaff","equipType2":"Staff","minLevel":75,"mAtk":770},{"itemId":272105,"className":"TSF02_105","name":"Cheminis Staff","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":5824,"sellPrice":2794,"equipType1":"THStaff","equipType2":"Staff","minLevel":40,"mAtk":429},{"itemId":272106,"className":"TSF02_106","name":"Karsto Staff","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":13732,"sellPrice":4368,"equipType1":"THStaff","equipType2":"Staff","minLevel":75,"mAtk":770},{"itemId":272107,"className":"TSF02_107","name":"Expecta Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":24832,"sellPrice":2419,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1209},{"itemId":272108,"className":"TSF02_108","name":"Black Staff","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":24832,"sellPrice":6936,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"pAtk":181,"mAtk":1209},{"itemId":272109,"className":"TSF02_109","name":"Welsh Staff","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":10401,"equipType1":"THStaff","equipType2":"Staff","minLevel":170,"mAtk":1696},{"itemId":272110,"className":"TSF02_110","name":"Magic Wooden Staff","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":640,"sellPrice":921,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":49},{"itemId":272111,"className":"TSF02_111","name":"Smith Staff","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":640,"sellPrice":2419,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":49},{"itemId":272112,"className":"TSF02_112","name":"Klavis Staff","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":4608,"sellPrice":2419,"equipType1":"THStaff","equipType2":"Staff","minLevel":15,"mAtk":185},{"itemId":272113,"className":"TSF02_113","name":"Dio Staff","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":4608,"sellPrice":1164,"equipType1":"THStaff","equipType2":"Staff","minLevel":15,"mAtk":185},{"itemId":272114,"className":"TSF02_114","name":"Thresh Staff","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":5824,"sellPrice":2746,"equipType1":"THStaff","equipType2":"Staff","minLevel":40,"mAtk":429},{"itemId":272115,"className":"TSF02_115","name":"Sestas Staff","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":13732,"sellPrice":4966,"equipType1":"THStaff","equipType2":"Staff","minLevel":75,"mAtk":770},{"itemId":272116,"className":"TSF02_116","name":"Dratt Staff","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":7760,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1209},{"itemId":272117,"className":"TSF02_117","name":"Aston Staff","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THStaff","equipType2":"Staff","minLevel":170,"mAtk":1696},{"itemId":272118,"className":"TSF02_118","name":"Tenet Staff","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":5824,"sellPrice":921,"equipType1":"THStaff","equipType2":"Staff","minLevel":40,"mAtk":429},{"itemId":272119,"className":"TSF02_119","name":"Patrice Staff","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":5824,"sellPrice":921,"equipType1":"THStaff","equipType2":"Staff","minLevel":40,"mAtk":429},{"itemId":272120,"className":"TSF02_120","name":"Lukas Staff","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":13732,"sellPrice":2419,"equipType1":"THStaff","equipType2":"Staff","minLevel":75,"mAtk":770},{"itemId":272121,"className":"TSF02_121","name":"Philis Staff","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":13732,"sellPrice":2419,"equipType1":"THStaff","equipType2":"Staff","minLevel":75,"mAtk":770},{"itemId":272122,"className":"TSF02_122","name":"Escanciu Staff","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THStaff","equipType2":"Staff","minLevel":75,"mAtk":770},{"itemId":272123,"className":"TSF02_123","name":"Krag Staff","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THStaff","equipType2":"Staff","minLevel":75,"mAtk":770},{"itemId":272124,"className":"TSF02_124","name":"Pilgrim Staff","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":24832,"sellPrice":4414,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1209},{"itemId":272125,"className":"TSF02_125","name":"Istora Staff","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":38803,"sellPrice":6936,"equipType1":"THStaff","equipType2":"Staff","minLevel":170,"mAtk":1696},{"itemId":272126,"className":"TSF02_126","name":"Earth Drake Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":24832,"sellPrice":5068,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1209},{"itemId":272127,"className":"TSF02_127","name":"Red Cross Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":24832,"sellPrice":6887,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1209},{"itemId":272128,"className":"TSF02_128","name":"Artie Cross Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":24832,"sellPrice":6936,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1209,"addMDef":21},{"itemId":272129,"className":"TSF02_129","name":"Lumas Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":24832,"sellPrice":4966,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1209},{"itemId":272130,"className":"TSF02_130","name":"Hunting Astro Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":38803,"sellPrice":10401,"equipType1":"THStaff","equipType2":"Staff","minLevel":170,"mAtk":1696},{"itemId":272131,"className":"TSF02_131","name":"Light Astro Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THStaff","equipType2":"Staff","minLevel":170,"mAtk":1696},{"itemId":272132,"className":"TSF02_132","name":"Artie Bokun Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THStaff","equipType2":"Staff","minLevel":170,"mAtk":1696},{"itemId":272133,"className":"TSF02_133","name":"Dellis Evil Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":52276,"sellPrice":12697,"equipType1":"THStaff","equipType2":"Staff","minLevel":220,"mAtk":2184},{"itemId":272134,"className":"TSF02_134","name":"Ice Evil Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":52276,"sellPrice":12697,"equipType1":"THStaff","equipType2":"Staff","minLevel":220,"mAtk":2184,"iceRes":29},{"itemId":272135,"className":"TSF02_135","name":"Artie Stag Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":52276,"sellPrice":12748,"equipType1":"THStaff","equipType2":"Staff","minLevel":220,"mAtk":2184,"addDef":22},{"itemId":272136,"className":"TSF02_136","name":"Supportive Drake Staff","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":13732,"sellPrice":4966,"equipType1":"THStaff","equipType2":"Staff","minLevel":75,"mAtk":770},{"itemId":272150,"className":"TSF02_150","name":"Tevhrin Staff","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":52276,"sellPrice":10455,"equipType1":"THStaff","equipType2":"Staff","minLevel":220,"mAtk":2184},{"itemId":272151,"className":"TSF02_151","name":"(Faded) Migantis Staff","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":64000,"sellPrice":5000,"equipType1":"THStaff","equipType2":"Staff","minLevel":270,"mAtk":2671},{"itemId":272152,"className":"TSF02_152","name":"(Faded) Pevordimas Staff","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":78080,"sellPrice":5000,"equipType1":"THStaff","equipType2":"Staff","minLevel":315,"mAtk":3110},{"itemId":272153,"className":"TSF02_153","name":"Ellinis","type":"Equip","group":"Weapon","weight":151,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1209},{"itemId":272154,"className":"TSF02_154","name":"Tiesa Staff","type":"Equip","group":"Weapon","weight":164,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":170,"mAtk":1696},{"itemId":272155,"className":"TSF02_155","name":"Sketis Staff","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":13732,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":75,"mAtk":770},{"itemId":272156,"className":"TSF02_156","name":"Pajoritas Staff","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":220,"mAtk":2184},{"itemId":272157,"className":"TSF02_157","name":"Migantis Staff","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":270,"mAtk":2671},{"itemId":272158,"className":"TSF02_158","name":"Pevordimas Staff","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":315,"mAtk":3110},{"itemId":272159,"className":"TSF02_159","name":"Raffye Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":350,"mAtk":3451},{"itemId":272160,"className":"TSF02_160","name":"Zvaigzde Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":380,"mAtk":3744},{"itemId":272161,"className":"TSF02_161","name":"Legva Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":400,"mAtk":3939},{"itemId":273101,"className":"TSF03_101","name":"Candle Staff","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":13732,"sellPrice":4368,"equipType1":"THStaff","equipType2":"Staff","minLevel":75,"mAtk":847},{"itemId":273102,"className":"TSF03_102","name":"Audra","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THStaff","equipType2":"Staff","minLevel":170,"mAtk":1866,"fireRes":-40},{"itemId":273103,"className":"TSF03_103","name":"Sunflower","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":24832,"sellPrice":6936,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1330,"iceRes":-59},{"itemId":273104,"className":"TSF03_104","name":"Maledic","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":24832,"sellPrice":6887,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1330},{"itemId":273105,"className":"TSF03_105","name":"Maledoom","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THStaff","equipType2":"Staff","minLevel":170,"mAtk":1866},{"itemId":273106,"className":"TSF03_106","name":"Chapparition Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THStaff","equipType2":"Staff","minLevel":40,"mAtk":536},{"itemId":273107,"className":"TSF03_107","name":"noname","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":170,"mAtk":1866},{"itemId":273108,"className":"TSF03_108","name":"noname","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":24832,"sellPrice":7760,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1330},{"itemId":273109,"className":"TSF03_109","name":"Power Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":52276,"sellPrice":10401,"equipType1":"THStaff","equipType2":"Staff","minLevel":220,"mAtk":2402},{"itemId":273110,"className":"TSF03_110","name":"Seimos Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":24832,"sellPrice":6887,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1330},{"itemId":273111,"className":"TSF03_111","name":"Wizard Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":24832,"sellPrice":6887,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1330},{"itemId":273112,"className":"TSF03_112","name":"Magas Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THStaff","equipType2":"Staff","minLevel":170,"mAtk":1866,"addMDef":29,"fireRes":29},{"itemId":273113,"className":"TSF03_113","name":"noname","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":38803,"sellPrice":128,"equipType1":"THStaff","equipType2":"Staff","minLevel":170,"mAtk":1866},{"itemId":273114,"className":"TSF03_114","name":"noname","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":52276,"sellPrice":128,"equipType1":"THStaff","equipType2":"Staff","minLevel":220,"mAtk":2402},{"itemId":273115,"className":"TSF03_115","name":"Pensara Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":52276,"sellPrice":2794,"equipType1":"THStaff","equipType2":"Staff","minLevel":220,"mAtk":2402,"holyRes":39},{"itemId":273120,"className":"TSF03_120","name":"Vienarazis Staff","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":78080,"sellPrice":20674,"equipType1":"THStaff","equipType2":"Staff","minLevel":315,"mAtk":3421},{"itemId":273301,"className":"TSF03_301","name":"(Faded) Ellinis","type":"Equip","group":"Weapon","weight":151,"maxStack":1,"price":24832,"sellPrice":6887,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1330},{"itemId":273302,"className":"TSF03_302","name":"(Faded) Tiesa Staff","type":"Equip","group":"Weapon","weight":164,"maxStack":1,"price":38803,"sellPrice":8030,"equipType1":"THStaff","equipType2":"Staff","minLevel":170,"mAtk":1866},{"itemId":273303,"className":"TSF03_303","name":"(Faded) Sketis Staff","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":13732,"sellPrice":2419,"equipType1":"THStaff","equipType2":"Staff","minLevel":75,"mAtk":847},{"itemId":273304,"className":"TSF03_304","name":"(Faded) Pajoritas Staff","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":52276,"sellPrice":10455,"equipType1":"THStaff","equipType2":"Staff","minLevel":220,"mAtk":2402},{"itemId":273305,"className":"TSF03_305","name":"(Faded) Purine Migantis Staff","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":64000,"sellPrice":5000,"equipType1":"THStaff","equipType2":"Staff","minLevel":270,"mAtk":2939},{"itemId":273306,"className":"TSF03_306","name":"(Faded) Purine Pevordimas Staff","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":78080,"sellPrice":5000,"equipType1":"THStaff","equipType2":"Staff","minLevel":315,"mAtk":3421},{"itemId":273307,"className":"TSF03_307","name":"Berthas Elinis","type":"Equip","group":"Weapon","weight":151,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1330},{"itemId":273308,"className":"TSF03_308","name":"Berthas Tiesa Staff","type":"Equip","group":"Weapon","weight":164,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":170,"mAtk":1866},{"itemId":273309,"className":"TSF03_309","name":"Berthas Sketis Staff","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":13732,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":75,"mAtk":847},{"itemId":273310,"className":"TSF03_310","name":"Berthas Pajoritas Staff","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":220,"mAtk":2402},{"itemId":273311,"className":"TSF03_311","name":"Berthas Migantis Staff","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":270,"mAtk":2939},{"itemId":273312,"className":"TSF03_312","name":"Berthas Pevordimas Staff","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":315,"mAtk":3421},{"itemId":273313,"className":"TSF03_313","name":"Berthas Raffye Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":350,"mAtk":3797},{"itemId":273314,"className":"TSF03_314","name":"Berthas Zvaigzde Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":380,"mAtk":4118},{"itemId":273315,"className":"TSF03_315","name":"Berthas Legva Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":400,"mAtk":4333},{"itemId":273316,"className":"TSF03_316","name":"Berthas Dysnai Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":430,"mAtk":4655},{"itemId":274101,"className":"TSF04_101","name":"Arca Staff","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":6936,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1511},{"itemId":274102,"className":"TSF04_102","name":"Raganos Horn","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":24832,"sellPrice":15616,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1511,"addMDef":110},{"itemId":274103,"className":"TSF04_103","name":"Ruma Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":24832,"sellPrice":6936,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1511},{"itemId":274104,"className":"TSF04_104","name":"Galatunis Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":24832,"sellPrice":12697,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1511},{"itemId":274105,"className":"TSF04_105","name":"noname","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":38803,"sellPrice":128,"equipType1":"THStaff","equipType2":"Staff","minLevel":170,"mAtk":2121},{"itemId":274106,"className":"TSF04_106","name":"Catacombs Staff","type":"Equip","group":"Weapon","weight":400,"maxStack":1,"price":38803,"sellPrice":4414,"equipType1":"THStaff","equipType2":"Staff","minLevel":170,"mAtk":2121,"addDef":16,"addMDef":23},{"itemId":274107,"className":"TSF04_107","name":"Lolopanther Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":64000,"sellPrice":15616,"equipType1":"THStaff","equipType2":"Staff","minLevel":270,"mAtk":4274},{"itemId":274108,"className":"TSF04_108","name":"Solmiki Staff","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":78080,"sellPrice":20723,"equipType1":"THStaff","equipType2":"Staff","minLevel":330,"mAtk":5210},{"itemId":274109,"className":"TSF04_109","name":"Regard Horn Staff","type":"Equip","group":"Weapon","weight":235,"maxStack":1,"price":78080,"sellPrice":23649,"equipType1":"THStaff","equipType2":"Staff","minLevel":315,"mAtk":3888},{"itemId":274110,"className":"TSF04_110","name":"Primus Elinis","type":"Equip","group":"Weapon","weight":151,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1511},{"itemId":274111,"className":"TSF04_111","name":"Primus Tiesa Staff","type":"Equip","group":"Weapon","weight":164,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":170,"mAtk":2121},{"itemId":274112,"className":"TSF04_112","name":"Primus Sketis Staff","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":13732,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":75,"mAtk":963},{"itemId":274113,"className":"TSF04_113","name":"Primus Pajoritas Staff","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":220,"mAtk":2730},{"itemId":274114,"className":"TSF04_114","name":"Primus Migantis Staff","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":270,"mAtk":3339},{"itemId":274115,"className":"TSF04_115","name":"Primus Pevordimas Staff","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":315,"mAtk":3888},{"itemId":274116,"className":"TSF04_116","name":"Primus Raffye Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":350,"mAtk":4314},{"itemId":274117,"className":"TSF04_117","name":"Masinios Staff","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":350,"mAtk":4314},{"itemId":274118,"className":"TSF04_118","name":"Primus Zvaigzde Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":380,"mAtk":4680},{"itemId":274119,"className":"TSF04_19","name":"Wastrel Zvaigzde Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":380,"mAtk":4680},{"itemId":274120,"className":"TSF04_120","name":"Asio Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":380,"mAtk":4680},{"itemId":274121,"className":"TSF04_121","name":"Primus Legva Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":400,"mAtk":4924},{"itemId":274122,"className":"TSF04_122","name":"Skiaclipse Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":400,"mAtk":4924},{"itemId":274123,"className":"TSF04_123","name":"Skiaclipse Caster","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":400,"mAtk":4924},{"itemId":274124,"className":"TSF04_124","name":"Skiaclipse Rune Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":400,"mAtk":4924},{"itemId":274125,"className":"TSF04_125","name":"Moringponia Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":400,"mAtk":4924},{"itemId":274126,"className":"TSF04_126","name":"Moringponia Caster","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":400,"mAtk":4924},{"itemId":274127,"className":"TSF04_127","name":"Misrus Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":400,"mAtk":4924,"addMAtk":407},{"itemId":274128,"className":"TSF04_128","name":"Primus Dysnai Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":430,"mAtk":5289},{"itemId":275101,"className":"TSF05_101","name":"Velcoffer Staff","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":360,"mAtk":5678},{"itemId":275102,"className":"TSF05_102","name":"Velcoffer Staff","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":360,"mAtk":5678},{"itemId":275103,"className":"TSF05_103","name":"Savinose Legva Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":400,"mAtk":6302},{"itemId":275104,"className":"TSF05_104","name":"Skiaclipse Varna Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":400,"mAtk":6302},{"itemId":311101,"className":"RAP01_101","name":"Rapier","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":24252,"sellPrice":5018,"equipType1":"Rapier","equipType2":"Sword","minLevel":170,"minAtk":1292,"maxAtk":1292},{"itemId":311102,"className":"RAP01_102","name":"Superior Rapier","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Rapier","equipType2":"Sword","minLevel":170,"minAtk":1292,"maxAtk":1292},{"itemId":311103,"className":"RAP01_103","name":"Training Rapier","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":24252,"sellPrice":4335,"equipType1":"Rapier","equipType2":"Sword","minLevel":170,"minAtk":1292,"maxAtk":1292},{"itemId":311104,"className":"RAP01_104","name":"Epee","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Rapier","equipType2":"Sword","minLevel":170,"minAtk":1292,"maxAtk":1292},{"itemId":311105,"className":"RAP01_105","name":"Dual Rapier","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":7936,"equipType1":"Rapier","equipType2":"Sword","minLevel":220,"minAtk":1663,"maxAtk":1663},{"itemId":311106,"className":"RAP01_106","name":"Superior Dual Rapier","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":7968,"equipType1":"Rapier","equipType2":"Sword","minLevel":220,"minAtk":1663,"maxAtk":1663},{"itemId":311107,"className":"RAP01_107","name":"(Faded) Replica Migantis Rapier","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":80000,"sellPrice":5000,"equipType1":"Rapier","equipType2":"Sword","minLevel":270,"minAtk":2034,"maxAtk":2034},{"itemId":311108,"className":"RAP01_108","name":"(Faded) Replica Pevordimas Rapier","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":120000,"sellPrice":5000,"equipType1":"Rapier","equipType2":"Sword","minLevel":315,"minAtk":2369,"maxAtk":2369},{"itemId":311109,"className":"RAP01_109","name":"Training Rapier","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":170,"minAtk":1292,"maxAtk":1292},{"itemId":311110,"className":"RAP01_110","name":"Training Rapier","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":270,"minAtk":2034,"maxAtk":2034},{"itemId":311111,"className":"RAP01_111","name":"Training Rapier","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":500,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":15,"minAtk":141,"maxAtk":141},{"itemId":311112,"className":"RAP01_112","name":"Dunkel Rapier","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":800,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":40,"minAtk":327,"maxAtk":327},{"itemId":311113,"className":"RAP01_113","name":"Dunkel Raudona Rapier","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":1200,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":75,"minAtk":587,"maxAtk":587},{"itemId":312101,"className":"RAP02_101","name":"Aston Rapier","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Rapier","equipType2":"Sword","minLevel":170,"minAtk":1436,"maxAtk":1436},{"itemId":312102,"className":"RAP02_102","name":"Sharp Rapier","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Rapier","equipType2":"Sword","minLevel":170,"minAtk":1436,"maxAtk":1436},{"itemId":312103,"className":"RAP02_103","name":"Eki Rapier","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":6501,"equipType1":"Rapier","equipType2":"Sword","minLevel":170,"minAtk":1436,"maxAtk":1436},{"itemId":312104,"className":"RAP02_104","name":"Lightning Rapier","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Rapier","equipType2":"Sword","minLevel":170,"minAtk":1436,"maxAtk":1436},{"itemId":312105,"className":"RAP02_105","name":"Duris Epee","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Rapier","equipType2":"Sword","minLevel":170,"minAtk":1436,"maxAtk":1436},{"itemId":312106,"className":"RAP02_106","name":"Coro Epee","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":7936,"equipType1":"Rapier","equipType2":"Sword","minLevel":220,"minAtk":1848,"maxAtk":1848},{"itemId":312107,"className":"RAP02_107","name":"Artie Dual Rapier","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":7936,"equipType1":"Rapier","equipType2":"Sword","minLevel":220,"minAtk":1848,"maxAtk":1848,"addMDef":22},{"itemId":312108,"className":"RAP02_108","name":"Slaake Dual Rapier","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":7968,"equipType1":"Rapier","equipType2":"Sword","minLevel":220,"minAtk":1848,"maxAtk":1848},{"itemId":312111,"className":"RAP02_111","name":"Tevhrin Rapier","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":32673,"sellPrice":6534,"equipType1":"Rapier","equipType2":"Sword","minLevel":220,"minAtk":1848,"maxAtk":1848},{"itemId":312112,"className":"RAP02_112","name":"(Faded) Migantis Rapier","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":40000,"sellPrice":5000,"equipType1":"Rapier","equipType2":"Sword","minLevel":270,"minAtk":2261,"maxAtk":2261},{"itemId":312113,"className":"RAP02_113","name":"(Faded) Pevordimas Rapier","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":48800,"sellPrice":5000,"equipType1":"Rapier","equipType2":"Sword","minLevel":315,"minAtk":2632,"maxAtk":2632},{"itemId":312114,"className":"RAP02_114","name":"Red Karuna","type":"Equip","group":"Weapon","weight":105,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":170,"minAtk":1436,"maxAtk":1436},{"itemId":312115,"className":"RAP02_115","name":"Pajoritas Rapier","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":220,"minAtk":1848,"maxAtk":1848},{"itemId":312116,"className":"RAP02_116","name":"Migantis Rapier","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":270,"minAtk":2261,"maxAtk":2261},{"itemId":312117,"className":"RAP02_117","name":"Pevordimas Rapier","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":315,"minAtk":2632,"maxAtk":2632},{"itemId":312118,"className":"RAP02_118","name":"Raffye Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":350,"minAtk":2921,"maxAtk":2921},{"itemId":312119,"className":"RAP02_119","name":"Zvaigzde Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":380,"minAtk":3168,"maxAtk":3168},{"itemId":312120,"className":"RAP02_120","name":"Sketis Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":75,"minAtk":652,"maxAtk":652},{"itemId":312121,"className":"RAP02_121","name":"Duelist Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":120,"minAtk":1023,"maxAtk":1023},{"itemId":312122,"className":"RAP02_122","name":"Legva Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":400,"minAtk":3333,"maxAtk":3333},{"itemId":313101,"className":"RAP03_101","name":"Duelist","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":24252,"sellPrice":2702,"equipType1":"Rapier","equipType2":"Sword","minLevel":170,"minAtk":1579,"maxAtk":1579},{"itemId":313102,"className":"RAP03_102","name":"Spada","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":8000,"equipType1":"Rapier","equipType2":"Sword","minLevel":220,"minAtk":2033,"maxAtk":2033,"pAtk":68},{"itemId":313103,"className":"RAP03_103","name":"Magas Rapier","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Rapier","equipType2":"Sword","minLevel":170,"minAtk":1579,"maxAtk":1579},{"itemId":313104,"className":"RAP03_104","name":"noname","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":80,"equipType1":"Rapier","equipType2":"Sword","minLevel":170,"minAtk":1579,"maxAtk":1579},{"itemId":313105,"className":"RAP03_105","name":"noname","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":80,"equipType1":"Rapier","equipType2":"Sword","minLevel":220,"minAtk":2033,"maxAtk":2033},{"itemId":313106,"className":"RAP03_106","name":"Pensara Rapier","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":7936,"equipType1":"Rapier","equipType2":"Sword","minLevel":220,"minAtk":2033,"maxAtk":2033,"pAtk":23},{"itemId":313301,"className":"RAP03_301","name":"(Faded) Red Karuna","type":"Equip","group":"Weapon","weight":105,"maxStack":1,"price":24252,"sellPrice":4335,"equipType1":"Rapier","equipType2":"Sword","minLevel":170,"minAtk":1579,"maxAtk":1579,"addMinAtk":74,"addMaxAtk":91},{"itemId":313302,"className":"RAP03_302","name":"(Faded) Pajoritas Rapier","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":32673,"sellPrice":6534,"equipType1":"Rapier","equipType2":"Sword","minLevel":220,"minAtk":2033,"maxAtk":2033,"pAtk":20},{"itemId":313303,"className":"RAP03_303","name":"(Faded) Purine Migantis Rapier","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":40000,"sellPrice":6610,"equipType1":"Rapier","equipType2":"Sword","minLevel":270,"minAtk":2487,"maxAtk":2487},{"itemId":313304,"className":"RAP03_304","name":"(Faded) Purine Pevordimas Rapier","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":48800,"sellPrice":5000,"equipType1":"Rapier","equipType2":"Sword","minLevel":315,"minAtk":2895,"maxAtk":2895},{"itemId":313305,"className":"RAP03_305","name":"Elga Rapier","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":48800,"sellPrice":5000,"equipType1":"Rapier","equipType2":"Sword","minLevel":315,"minAtk":2895,"maxAtk":2895},{"itemId":313306,"className":"RAP03_306","name":"Berthas Red Karuna","type":"Equip","group":"Weapon","weight":105,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":170,"minAtk":1579,"maxAtk":1579},{"itemId":313307,"className":"RAP03_307","name":"Berthas Pajoritas Rapier","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":220,"minAtk":2033,"maxAtk":2033},{"itemId":313308,"className":"RAP03_308","name":"Berthas Migantis Rapier","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":270,"minAtk":2487,"maxAtk":2487},{"itemId":313309,"className":"RAP03_309","name":"Berthas Pevordimas Rapier","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":315,"minAtk":2895,"maxAtk":2895},{"itemId":313310,"className":"RAP03_310","name":"Berthas Raffye Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":350,"minAtk":3213,"maxAtk":3213},{"itemId":313311,"className":"RAP03_311","name":"Berthas Zvaigzde Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":380,"minAtk":3485,"maxAtk":3485},{"itemId":313312,"className":"RAP03_312","name":"Berthas Sketis Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":75,"minAtk":717,"maxAtk":717},{"itemId":313313,"className":"RAP03_313","name":"Berthas Duelist Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":120,"minAtk":1125,"maxAtk":1125},{"itemId":313314,"className":"RAP03_314","name":"Berthas Legva Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":400,"minAtk":3666,"maxAtk":3666},{"itemId":313315,"className":"RAP03_315","name":"Berthas Dysnai Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":430,"minAtk":3939,"maxAtk":3939},{"itemId":314101,"className":"RAP04_101","name":"Venier","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":1716,"equipType1":"Rapier","equipType2":"Sword","minLevel":170,"minAtk":1073,"maxAtk":1073},{"itemId":314102,"className":"RAP04_102","name":"noname","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":80,"equipType1":"Rapier","equipType2":"Sword","minLevel":170,"minAtk":1794,"maxAtk":1794},{"itemId":314103,"className":"RAP04_103","name":"Catacombs Rapier","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":7936,"equipType1":"Rapier","equipType2":"Sword","minLevel":170,"minAtk":1794,"maxAtk":1794},{"itemId":314104,"className":"RAP04_104","name":"Lolopanther Rapier","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":40000,"sellPrice":9760,"equipType1":"Rapier","equipType2":"Sword","minLevel":270,"minAtk":3617,"maxAtk":3617},{"itemId":314105,"className":"RAP04_105","name":"Solmiki Rapier","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":48800,"sellPrice":12952,"equipType1":"Rapier","equipType2":"Sword","minLevel":330,"minAtk":4409,"maxAtk":4409},{"itemId":314106,"className":"RAP04_106","name":"Black Horn","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":48800,"sellPrice":11991,"equipType1":"Rapier","equipType2":"Sword","minLevel":315,"minAtk":3290,"maxAtk":3290},{"itemId":314107,"className":"RAP04_107","name":"Primus Red Karuna","type":"Equip","group":"Weapon","weight":105,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":170,"minAtk":1794,"maxAtk":1794},{"itemId":314108,"className":"RAP04_108","name":"Primus Pajoritas Rapier","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":220,"minAtk":2310,"maxAtk":2310},{"itemId":314109,"className":"RAP04_109","name":"Primus Migantis Rapier","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":270,"minAtk":2826,"maxAtk":2826},{"itemId":314110,"className":"RAP04_110","name":"Primus Pevordimas Rapier","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":315,"minAtk":3290,"maxAtk":3290},{"itemId":314111,"className":"RAP04_111","name":"Primus Raffye Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":350,"minAtk":3651,"maxAtk":3651},{"itemId":314112,"className":"RAP04_112","name":"Masinios Rapier","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":350,"minAtk":3651,"maxAtk":3651},{"itemId":314113,"className":"RAP04_113","name":"Primus Zvaigzde Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":380,"minAtk":3960,"maxAtk":3960},{"itemId":314114,"className":"RAP04_114","name":"Wastrel Zvaigzde Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":380,"minAtk":3960,"maxAtk":3960,"pAtk":132},{"itemId":314115,"className":"RAP04_115","name":"Asio Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":380,"minAtk":3960,"maxAtk":3960},{"itemId":314116,"className":"RAP04_116","name":"Primus Sketis Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":75,"minAtk":815,"maxAtk":815},{"itemId":314117,"className":"RAP04_117","name":"Primus Duelist Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":120,"minAtk":1279,"maxAtk":1279},{"itemId":314118,"className":"RAP04_118","name":"Primus Legva Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":400,"minAtk":4166,"maxAtk":4166},{"itemId":314119,"className":"RAP04_119","name":"Skiaclipse Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":400,"minAtk":4166,"maxAtk":4166},{"itemId":314120,"className":"RAP04_120","name":"Skiaclipse Epee","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":400,"minAtk":4166,"maxAtk":4166},{"itemId":314121,"className":"RAP04_121","name":"Moringponia Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":400,"minAtk":4166,"maxAtk":4166},{"itemId":314122,"className":"RAP04_122","name":"Misrus Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":400,"minAtk":4166,"maxAtk":4166},{"itemId":314123,"className":"RAP04_123","name":"Primus Dysnai Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":430,"minAtk":4476,"maxAtk":4476},{"itemId":315101,"className":"RAP05_101","name":"Velcoffer Rapier","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":360,"minAtk":4805,"maxAtk":4805},{"itemId":315102,"className":"RAP05_102","name":"Velcoffer Rapier","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":360,"minAtk":4805,"maxAtk":4805},{"itemId":315103,"className":"RAP05_103","name":"Savinose Legva Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":400,"minAtk":5333,"maxAtk":5333},{"itemId":315104,"className":"RAP05_104","name":"Skiaclipse Varna Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":400,"minAtk":5333,"maxAtk":5333},{"itemId":321001,"className":"CAN01_101","name":"Cannon","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":52276,"sellPrice":3955,"equipType1":"Cannon","equipType2":"Gun","minLevel":220,"minAtk":983,"maxAtk":2948},{"itemId":321002,"className":"CAN01_102","name":"Superior Cannon","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":52276,"sellPrice":4780,"equipType1":"Cannon","equipType2":"Gun","minLevel":220,"minAtk":983,"maxAtk":2948},{"itemId":321003,"className":"CAN01_103","name":"Practice Cannon","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":52276,"sellPrice":3920,"equipType1":"Cannon","equipType2":"Gun","minLevel":220,"minAtk":983,"maxAtk":2948},{"itemId":321004,"className":"CAN01_104","name":"Yorgis Cannon","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":52276,"sellPrice":3920,"equipType1":"Cannon","equipType2":"Gun","minLevel":220,"minAtk":983,"maxAtk":2948},{"itemId":321005,"className":"CAN01_105","name":"Critti Cannon","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":52276,"sellPrice":4761,"equipType1":"Cannon","equipType2":"Gun","minLevel":220,"minAtk":1092,"maxAtk":3276},{"itemId":321006,"className":"CAN01_106","name":"Vista Cannon","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":52276,"sellPrice":4780,"equipType1":"Cannon","equipType2":"Gun","minLevel":220,"minAtk":1092,"maxAtk":3276},{"itemId":321007,"className":"CAN01_107","name":"Erera Cannon","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":52276,"sellPrice":4838,"equipType1":"Cannon","equipType2":"Gun","minLevel":220,"minAtk":1201,"maxAtk":3604},{"itemId":321008,"className":"CAN01_108","name":"Stropy Cannon","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":52276,"sellPrice":4761,"equipType1":"Cannon","equipType2":"Gun","minLevel":220,"minAtk":1201,"maxAtk":3604},{"itemId":321009,"className":"CAN01_109","name":"Agvara Cannon","type":"Equip","group":"Weapon","weight":300,"maxStack":1,"price":52276,"sellPrice":5856,"equipType1":"Cannon","equipType2":"Gun","minLevel":220,"minAtk":1365,"maxAtk":4095},{"itemId":321010,"className":"CAN01_110","name":"(Faded) Replica Migantis Cannon","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64000,"sellPrice":5000,"equipType1":"Cannon","equipType2":"Gun","minLevel":270,"minAtk":1202,"maxAtk":3607},{"itemId":321011,"className":"CAN01_111","name":"(Faded) Replica Pevordimas Cannon","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":96000,"sellPrice":5000,"equipType1":"Cannon","equipType2":"Gun","minLevel":315,"minAtk":1400,"maxAtk":4199},{"itemId":321012,"className":"CAN01_112","name":"Practice Cannon","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":220,"minAtk":983,"maxAtk":2948},{"itemId":321013,"className":"CAN01_113","name":"Practice Cannon","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":170,"minAtk":763,"maxAtk":2290},{"itemId":321999,"className":"CAN01_999","name":"Standard Cannon","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":52276,"sellPrice":4953,"equipType1":"Cannon","equipType2":"Gun","minLevel":220,"minAtk":983,"maxAtk":2948},{"itemId":322001,"className":"CAN02_101","name":"Tevhrin Cannon","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":52276,"sellPrice":3920,"equipType1":"Cannon","equipType2":"Gun","minLevel":220,"minAtk":983,"maxAtk":2948},{"itemId":322002,"className":"CAN02_102","name":"Noname Cannon","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":52276,"sellPrice":4780,"equipType1":"Cannon","equipType2":"Gun","minLevel":220,"minAtk":983,"maxAtk":2948},{"itemId":322003,"className":"CAN02_103","name":"Enhanced Vista Cannon","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":52276,"sellPrice":4780,"equipType1":"Cannon","equipType2":"Gun","minLevel":220,"minAtk":1092,"maxAtk":3276},{"itemId":322004,"className":"CAN02_104","name":"(Faded) Migantis Cannon","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64000,"sellPrice":5000,"equipType1":"Cannon","equipType2":"Gun","minLevel":270,"minAtk":1336,"maxAtk":4007},{"itemId":322005,"className":"CAN02_105","name":"(Faded) Pevordimas Cannon","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":78080,"sellPrice":5000,"equipType1":"Cannon","equipType2":"Gun","minLevel":315,"minAtk":1555,"maxAtk":4665},{"itemId":322006,"className":"CAN02_106","name":"Pajoritas Cannon","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":220,"minAtk":1092,"maxAtk":3276},{"itemId":322007,"className":"CAN02_107","name":"Migantis Cannon","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":270,"minAtk":1336,"maxAtk":4007},{"itemId":322008,"className":"CAN02_108","name":"Pevordimas Cannon","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":315,"minAtk":1555,"maxAtk":4665},{"itemId":322009,"className":"CAN02_109","name":"Raffye Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":350,"minAtk":1726,"maxAtk":5177},{"itemId":322010,"className":"CAN02_110","name":"Zvaigzde Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":380,"minAtk":1872,"maxAtk":5616},{"itemId":322011,"className":"CAN02_111","name":"Reine Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":170,"minAtk":848,"maxAtk":2545},{"itemId":322012,"className":"CAN02_112","name":"Legva Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":400,"minAtk":1969,"maxAtk":5908},{"itemId":323001,"className":"CAN03_101","name":"Lionhead Cannon","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":78080,"sellPrice":7753,"equipType1":"Cannon","equipType2":"Gun","minLevel":315,"minAtk":1711,"maxAtk":5132},{"itemId":323002,"className":"CAN03_102","name":"(Faded) Pajoritas Cannon","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":52276,"sellPrice":3920,"equipType1":"Cannon","equipType2":"Gun","minLevel":220,"minAtk":1201,"maxAtk":3604},{"itemId":323003,"className":"CAN03_103","name":"(Faded) Purine Migantis Cannon","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64000,"sellPrice":5000,"equipType1":"Cannon","equipType2":"Gun","minLevel":270,"minAtk":1469,"maxAtk":4408},{"itemId":323004,"className":"CAN03_104","name":"(Faded) Purine Pevordimas Cannon","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":78080,"sellPrice":5000,"equipType1":"Cannon","equipType2":"Gun","minLevel":315,"minAtk":1711,"maxAtk":5132},{"itemId":323005,"className":"CAN03_105","name":"Berthas Pajoritas Cannon","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":220,"minAtk":1201,"maxAtk":3604},{"itemId":323006,"className":"CAN03_106","name":"Berthas Migantis Cannon","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":270,"minAtk":1469,"maxAtk":4408},{"itemId":323007,"className":"CAN03_107","name":"Berthas Pevordimas Cannon","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":315,"minAtk":1711,"maxAtk":5132},{"itemId":323008,"className":"CAN03_108","name":"Berthas Raffye Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":350,"minAtk":1898,"maxAtk":5695},{"itemId":323009,"className":"CAN03_109","name":"Berthas Zvaigzde Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":380,"minAtk":2059,"maxAtk":6178},{"itemId":323010,"className":"CAN03_110","name":"Berthas Reine Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":170,"minAtk":933,"maxAtk":2799},{"itemId":323011,"className":"CAN03_111","name":"Berthas Legva Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":400,"minAtk":2166,"maxAtk":6499},{"itemId":323012,"className":"CAN03_112","name":"Berthas Dysnai Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":430,"minAtk":2327,"maxAtk":6982},{"itemId":324101,"className":"CAN04_101","name":"Lolopanther Cannon","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":64000,"sellPrice":5856,"equipType1":"Cannon","equipType2":"Gun","minLevel":270,"minAtk":2137,"maxAtk":6412},{"itemId":324102,"className":"CAN04_102","name":"Solmiki Cannon","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":78080,"sellPrice":7771,"equipType1":"Cannon","equipType2":"Gun","minLevel":330,"minAtk":2605,"maxAtk":7816},{"itemId":324103,"className":"CAN04_103","name":"Emengard Cannon","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":78080,"sellPrice":8868,"equipType1":"Cannon","equipType2":"Gun","minLevel":315,"minAtk":1944,"maxAtk":5832,"addMaxAtk":302},{"itemId":324104,"className":"CAN04_104","name":"Primus Pajoritas Cannon","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":220,"minAtk":1365,"maxAtk":4095},{"itemId":324105,"className":"CAN04_105","name":"Primus Migantis Cannon","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":270,"minAtk":1670,"maxAtk":5009},{"itemId":324106,"className":"CAN04_106","name":"Primus Pevordimas Cannon","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":315,"minAtk":1944,"maxAtk":5832},{"itemId":324107,"className":"CAN04_107","name":"Primus Raffye Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":350,"minAtk":2157,"maxAtk":6472},{"itemId":324108,"className":"CAN04_108","name":"Masinios Cannon","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":350,"minAtk":2157,"maxAtk":6472,"addMaxAtk":314},{"itemId":324109,"className":"CAN04_109","name":"Primus Zvaigzde Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":380,"minAtk":2340,"maxAtk":7020},{"itemId":324110,"className":"CAN04_110","name":"Wastrel Zvaigzde Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":380,"minAtk":2340,"maxAtk":7020},{"itemId":324111,"className":"CAN04_111","name":"Asio Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":380,"minAtk":2340,"maxAtk":7020},{"itemId":324112,"className":"CAN04_112","name":"Primus Reine Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":170,"minAtk":1060,"maxAtk":3181},{"itemId":324113,"className":"CAN04_113","name":"Primus Legva Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":400,"minAtk":2462,"maxAtk":7386},{"itemId":324114,"className":"CAN04_114","name":"Skiaclipse Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":400,"minAtk":2462,"maxAtk":7386,"addMaxAtk":732},{"itemId":324115,"className":"CAN04_115","name":"Moringponia Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":400,"minAtk":2462,"maxAtk":7386},{"itemId":324116,"className":"CAN04_116","name":"Misrus Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":400,"minAtk":2462,"maxAtk":7386,"addMaxAtk":722},{"itemId":324117,"className":"CAN04_117","name":"Primus Dysnai Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":430,"minAtk":2645,"maxAtk":7934},{"itemId":325103,"className":"CAN05_103","name":"Velcoffer Cannon","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":360,"minAtk":2839,"maxAtk":8518},{"itemId":325104,"className":"CAN05_104","name":"Velcoffer Cannon","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":360,"minAtk":2839,"maxAtk":8518},{"itemId":325105,"className":"CAN05_105","name":"Savinose Legva Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":400,"minAtk":3151,"maxAtk":9454},{"itemId":325106,"className":"CAN05_106","name":"Skiaclipse Varna Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":400,"minAtk":3151,"maxAtk":9454},{"itemId":331001,"className":"MUS01_101","name":"Musket","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":52276,"sellPrice":10547,"equipType1":"Musket","equipType2":"Gun","minLevel":220,"minAtk":1278,"maxAtk":2654},{"itemId":331002,"className":"MUS01_102","name":"Superior Musket","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":52276,"sellPrice":12748,"equipType1":"Musket","equipType2":"Gun","minLevel":220,"minAtk":1278,"maxAtk":2654},{"itemId":331003,"className":"MUS01_103","name":"Practice Musket","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":52276,"sellPrice":10455,"equipType1":"Musket","equipType2":"Gun","minLevel":220,"minAtk":1278,"maxAtk":2654},{"itemId":331004,"className":"MUS01_102_","name":"Yorgis Musket","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":52276,"sellPrice":10455,"equipType1":"Musket","equipType2":"Gun","minLevel":220,"minAtk":1278,"maxAtk":2654},{"itemId":331005,"className":"MUS01_104","name":"Yorgis Musket","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":52276,"sellPrice":10455,"equipType1":"Musket","equipType2":"Gun","minLevel":220,"minAtk":1278,"maxAtk":2654},{"itemId":331006,"className":"MUS01_106","name":"(Faded) Replica Migantis Musket","type":"Equip","group":"Weapon","weight":155,"maxStack":1,"price":96000,"sellPrice":5000,"equipType1":"Musket","equipType2":"Gun","minLevel":270,"minAtk":1563,"maxAtk":3246},{"itemId":331007,"className":"MUS01_107","name":"(Faded) Replica Pevordimas Musket","type":"Equip","group":"Weapon","weight":145,"maxStack":1,"price":144000,"sellPrice":5000,"equipType1":"Musket","equipType2":"Gun","minLevel":315,"minAtk":1819,"maxAtk":3779},{"itemId":331008,"className":"MUS01_108","name":"Practice Musket","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":220,"minAtk":1278,"maxAtk":2654},{"itemId":331009,"className":"MUS01_110","name":"Practice Musket","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":120,"minAtk":707,"maxAtk":1469},{"itemId":331999,"className":"MUS01_999","name":"Standard Musket","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":52276,"sellPrice":13209,"equipType1":"Musket","equipType2":"Gun","minLevel":220,"minAtk":1278,"maxAtk":2654},{"itemId":332001,"className":"MUS02_101","name":"Fire Musket","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":52276,"sellPrice":12697,"equipType1":"Musket","equipType2":"Gun","minLevel":220,"minAtk":1420,"maxAtk":2948},{"itemId":332002,"className":"MUS02_102","name":"Eki Musket","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":52276,"sellPrice":12697,"equipType1":"Musket","equipType2":"Gun","minLevel":220,"minAtk":1420,"maxAtk":2948},{"itemId":332003,"className":"MUS02_103","name":"Vienie Musket","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":52276,"sellPrice":12748,"equipType1":"Musket","equipType2":"Gun","minLevel":220,"minAtk":1420,"maxAtk":2948},{"itemId":332004,"className":"MUS02_104","name":"(Faded) Migantis Musket","type":"Equip","group":"Weapon","weight":155,"maxStack":1,"price":64000,"sellPrice":5000,"equipType1":"Musket","equipType2":"Gun","minLevel":270,"minAtk":1736,"maxAtk":3607},{"itemId":332005,"className":"MUS02_105","name":"(Faded) Pevordimas Musket","type":"Equip","group":"Weapon","weight":145,"maxStack":1,"price":78080,"sellPrice":5000,"equipType1":"Musket","equipType2":"Gun","minLevel":315,"minAtk":2022,"maxAtk":4199},{"itemId":332006,"className":"MUS02_106","name":"Pajoritas Musket","type":"Equip","group":"Weapon","weight":165,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":220,"minAtk":1420,"maxAtk":2948},{"itemId":332007,"className":"MUS02_107","name":"Migantis Musket","type":"Equip","group":"Weapon","weight":155,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":270,"minAtk":1736,"maxAtk":3607},{"itemId":332008,"className":"MUS02_108","name":"Pevordimas Musket","type":"Equip","group":"Weapon","weight":145,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":315,"minAtk":2022,"maxAtk":4199},{"itemId":332009,"className":"MUS02_109","name":"Raffye Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":350,"minAtk":2243,"maxAtk":4660},{"itemId":332010,"className":"MUS02_110","name":"Zvaigzde Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":380,"minAtk":2434,"maxAtk":5054},{"itemId":332011,"className":"MUS02_111","name":"Crystaras Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":170,"minAtk":1103,"maxAtk":2290},{"itemId":332012,"className":"MUS02_112","name":"Legva Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":400,"minAtk":2560,"maxAtk":5318},{"itemId":333101,"className":"MUS03_101","name":"Finisher","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":52276,"sellPrice":13209,"equipType1":"Musket","equipType2":"Gun","minLevel":220,"minAtk":1562,"maxAtk":3243},{"itemId":333102,"className":"MUS03_102","name":"noname","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":52276,"sellPrice":12748,"equipType1":"Musket","equipType2":"Gun","minLevel":220,"minAtk":1278,"maxAtk":2654},{"itemId":333103,"className":"MUS03_103","name":"Pensara Musket","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":52276,"sellPrice":12748,"equipType1":"Musket","equipType2":"Gun","minLevel":220,"minAtk":1562,"maxAtk":3243},{"itemId":333104,"className":"MUS03_104","name":"Dragoon Piper","type":"Equip","group":"Weapon","weight":158,"maxStack":1,"price":78080,"sellPrice":20674,"equipType1":"Musket","equipType2":"Gun","minLevel":315,"minAtk":2224,"maxAtk":4619,"addMinAtk":75,"addMaxAtk":115,"addDef":-13},{"itemId":333105,"className":"MUS03_105","name":"(Faded) Pajoritas Musket","type":"Equip","group":"Weapon","weight":165,"maxStack":1,"price":52276,"sellPrice":10455,"equipType1":"Musket","equipType2":"Gun","minLevel":220,"minAtk":1562,"maxAtk":3243},{"itemId":333106,"className":"MUS03_106","name":"(Faded) Purine Migantis Musket","type":"Equip","group":"Weapon","weight":155,"maxStack":1,"price":64000,"sellPrice":5000,"equipType1":"Musket","equipType2":"Gun","minLevel":270,"minAtk":1910,"maxAtk":3967},{"itemId":333107,"className":"MUS03_107","name":"(Faded) Purine Pevordimas Musket","type":"Equip","group":"Weapon","weight":145,"maxStack":1,"price":78080,"sellPrice":5000,"equipType1":"Musket","equipType2":"Gun","minLevel":315,"minAtk":2224,"maxAtk":4619},{"itemId":333108,"className":"MUS03_108","name":"Berthas Pajoritas Musket","type":"Equip","group":"Weapon","weight":165,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":220,"minAtk":1562,"maxAtk":3243},{"itemId":333109,"className":"MUS03_109","name":"Berthas Migantis Musket","type":"Equip","group":"Weapon","weight":155,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":270,"minAtk":1910,"maxAtk":3967},{"itemId":333110,"className":"MUS03_110","name":"Berthas Pevordimas Musket","type":"Equip","group":"Weapon","weight":145,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":315,"minAtk":2224,"maxAtk":4619},{"itemId":333111,"className":"MUS03_111","name":"Berthas Raffye Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":350,"minAtk":2468,"maxAtk":5125},{"itemId":333112,"className":"MUS03_112","name":"Berthas Zvaigzde Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":380,"minAtk":2677,"maxAtk":5560},{"itemId":333113,"className":"MUS03_113","name":"Berthas Crystaras Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":170,"minAtk":1213,"maxAtk":2519},{"itemId":333114,"className":"MUS03_114","name":"Berthas Legva Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":400,"minAtk":2816,"maxAtk":5849},{"itemId":333115,"className":"MUS03_115","name":"Berthas Dysnai Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":430,"minAtk":3026,"maxAtk":6284},{"itemId":334101,"className":"MUS04_101","name":"Lolopanther Musket","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":64000,"sellPrice":15616,"equipType1":"Musket","equipType2":"Gun","minLevel":270,"minAtk":2778,"maxAtk":5770},{"itemId":334102,"className":"MUS04_102","name":"Solmiki Musket","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":78080,"sellPrice":20723,"equipType1":"Musket","equipType2":"Gun","minLevel":330,"minAtk":3387,"maxAtk":7034},{"itemId":334103,"className":"MUS04_103","name":"Emengard Musket","type":"Equip","group":"Weapon","weight":172,"maxStack":1,"price":78080,"sellPrice":23649,"equipType1":"Musket","equipType2":"Gun","minLevel":315,"minAtk":2527,"maxAtk":5249},{"itemId":334104,"className":"MUS04_104","name":"Primus Pajoritas Musket","type":"Equip","group":"Weapon","weight":165,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":220,"minAtk":1774,"maxAtk":3685},{"itemId":334105,"className":"MUS04_105","name":"Primus Migantis Musket","type":"Equip","group":"Weapon","weight":155,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":270,"minAtk":2171,"maxAtk":4508},{"itemId":334106,"className":"MUS04_106","name":"Primus Pevordimas Musket","type":"Equip","group":"Weapon","weight":145,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":315,"minAtk":2527,"maxAtk":5249},{"itemId":334107,"className":"MUS04_107","name":"Primus Raffye Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":350,"minAtk":2804,"maxAtk":5824},{"itemId":334108,"className":"MUS04_108","name":"Masinios Musket","type":"Equip","group":"Weapon","weight":155,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":350,"minAtk":2804,"maxAtk":5824,"addMinAtk":-77,"addMaxAtk":777},{"itemId":334109,"className":"MUS04_109","name":"Primus Zvaigzde Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":380,"minAtk":3042,"maxAtk":6318},{"itemId":334110,"className":"MUS04_110","name":"Wastrel Zvaigzde Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":380,"minAtk":3042,"maxAtk":6318,"addMaxAtk":732},{"itemId":334111,"className":"MUS04_111","name":"Asio Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":380,"minAtk":3042,"maxAtk":6318,"addMaxAtk":572},{"itemId":334112,"className":"MUS04_112","name":"Primus Crystaras Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":170,"minAtk":1378,"maxAtk":2863},{"itemId":334113,"className":"MUS04_113","name":"Primus Legva Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":400,"minAtk":3200,"maxAtk":6647},{"itemId":334114,"className":"MUS04_114","name":"Skiaclipse Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":400,"minAtk":3200,"maxAtk":6647},{"itemId":334115,"className":"MUS04_115","name":"Moringponia Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":400,"minAtk":3200,"maxAtk":6647,"pAtk":350},{"itemId":334116,"className":"MUS04_116","name":"Misrus Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":400,"minAtk":3200,"maxAtk":6647},{"itemId":334117,"className":"MUS04_117","name":"Primus Dysnai Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":430,"minAtk":3438,"maxAtk":7141},{"itemId":335101,"className":"MUS05_101","name":"Velcoffer Musket","type":"Equip","group":"Weapon","weight":155,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":360,"minAtk":3691,"maxAtk":7666},{"itemId":335102,"className":"MUS05_102","name":"Velcoffer Musket","type":"Equip","group":"Weapon","weight":155,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":360,"minAtk":3691,"maxAtk":7666},{"itemId":335103,"className":"MUS05_103","name":"Savinose Legva Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":400,"minAtk":4097,"maxAtk":8508},{"itemId":335104,"className":"MUS05_104","name":"Skiaclipse Varna Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":400,"minAtk":4097,"maxAtk":8508},{"itemId":630046,"className":"Artefact_630045","name":"Marine Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":630047,"className":"Artefact_630046","name":"Marine Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":630048,"className":"Artefact_630047","name":"Marine Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":631001,"className":"Artefact_631001","name":"Four-leaf Clover","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":0,"sellPrice":0,"equipType1":"Charm","minLevel":1},{"itemId":634001,"className":"Artefact_634001","name":"Ivory Pawn Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634002,"className":"Artefact_634002","name":"Ivory Rook Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634003,"className":"Artefact_634003","name":"Bishop Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634004,"className":"Artefact_634004","name":"Bishop Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":634005,"className":"Artefact_634005","name":"Knight Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":634006,"className":"Artefact_634006","name":"Knight Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634007,"className":"Artefact_634007","name":"Ivory Queen Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634008,"className":"Artefact_634008","name":"Ebony King Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634009,"className":"Artefact_634009","name":"Knight Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634010,"className":"Artefact_634010","name":"Bishop Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634011,"className":"Artefact_634011","name":"Ebony King Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634012,"className":"Artefact_634012","name":"Ivory Queen Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634013,"className":"Artefact_634013","name":"Ebony King Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634014,"className":"Artefact_634014","name":"Ivory Queen Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634016,"className":"Artefact_634016","name":"Bishop Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634017,"className":"Artefact_634017","name":"Knight Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634020,"className":"Artefact_634020","name":"Moon Rabbit Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":634021,"className":"Artefact_634021","name":"Moon Rabbit Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634022,"className":"Artefact_634022","name":"Dumpling Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634023,"className":"Artefact_634023","name":"Brush Stroke Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":634024,"className":"Artefact_634024","name":"Scimitar of Glory","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":634025,"className":"Artefact_634025","name":"Wooden Stick Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634026,"className":"Artefact_634026","name":"Apricot Blossom Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":634028,"className":"Artefact_634028","name":"Jack-O-Lantern Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634029,"className":"Artefact_634029","name":"Pumpkin Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634030,"className":"Artefact_634030","name":"Triple Jack-O-Lantern Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":634031,"className":"Artefact_634031","name":"Chainsaw Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634032,"className":"Artefact_634032","name":"Jack-O-Lantern Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634033,"className":"Artefact_634033","name":"Broomstick Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634034,"className":"Artefact_634034","name":"Bat Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634035,"className":"Artefact_634035","name":"Jack-O-Lantern Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":634036,"className":"Artefact_634036","name":"Jack-O-Lantern Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":634039,"className":"Artefact_634039","name":"Red Syringe Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":634040,"className":"Artefact_634040","name":"Christmas Tree Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":634041,"className":"Artefact_634041","name":"Christmas Tree Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634042,"className":"Artefact_634042","name":"Snowman Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":634044,"className":"Artefact_634044","name":"Candy Cane Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":634045,"className":"Artefact_634045","name":"Candlelight Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634046,"className":"Artefact_634046","name":"Candlelight Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634047,"className":"Artefact_634047","name":"Gift Pouch Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":634049,"className":"Artefact_634049","name":"Fluffy Kitty Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634050,"className":"Artefact_634050","name":"Fluffy Kitty Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634051,"className":"Artefact_634051","name":"Fluffy Kitty Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634053,"className":"Artefact_634053","name":"Fluffy Kitty Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":634054,"className":"Artefact_634054","name":"Fluffy Kitty Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634056,"className":"Artefact_634056","name":"Fluffy Kitty Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":634057,"className":"Artefact_634057","name":"Fluffy Kitty Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":634058,"className":"Artefact_634058","name":"Fluffy Kitty Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634059,"className":"Artefact_634059","name":"Fluffy Kitty Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634060,"className":"Artefact_634060","name":"Fluffy Kitty Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634061,"className":"Artefact_634061","name":"Mystic Savior Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634062,"className":"Artefact_634062","name":"Mystic Savior Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634063,"className":"Artefact_634063","name":"Mystic Savior Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634064,"className":"Artefact_634064","name":"Mystic Savior Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634066,"className":"Artefact_634066","name":"Crunchy Choco Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":634067,"className":"Artefact_634067","name":"Crunchy Choco Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634068,"className":"Artefact_634068","name":"Crunchy Choco Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634070,"className":"Artefact_634070","name":"Crunchy Choco Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":634071,"className":"Artefact_634071","name":"Crunchy Choco Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":634072,"className":"Artefact_634072","name":"Crunchy Choco Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634073,"className":"Artefact_634073","name":"Crunchy Choco Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634074,"className":"Artefact_634074","name":"Crunchy Choco Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634075,"className":"Artefact_634075","name":"Crunchy Choco Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634076,"className":"Artefact_634076","name":"Crunchy Choco Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634077,"className":"Artefact_634077","name":"Crunchy Choco Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":634078,"className":"Artefact_634078","name":"Crunchy Choco Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":634079,"className":"Artefact_634079","name":"Crunchy Choco Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":634081,"className":"Artefact_634081","name":"Impassioned Rose Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634082,"className":"Artefact_634082","name":"Impassioned Rose Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":634083,"className":"Artefact_634083","name":"Impassioned Rose Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":634086,"className":"Artefact_634086","name":"Twilight Star Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634087,"className":"Artefact_634087","name":"Twilight Star Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634088,"className":"Artefact_634088","name":"Twilight Star Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":634089,"className":"Artefact_634089","name":"Twilight Star Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634090,"className":"Artefact_634090","name":"Twilight Star Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":634091,"className":"Artefact_634091","name":"Twilight Star Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":634092,"className":"Artefact_634092","name":"Red Pincer Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":634093,"className":"Artefact_634093","name":"Sawfish Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634094,"className":"Artefact_634094","name":"Sawfish Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634096,"className":"Artefact_634096","name":"Pink Parasol Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":634097,"className":"Artefact_634097","name":"Blue Parasol Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":634098,"className":"Artefact_634098","name":"Butter-roasted Squid Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634099,"className":"Artefact_634099","name":"Crab-hunter Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634100,"className":"Artefact_634100","name":"Ukulele Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634101,"className":"Artefact_634101","name":"Guitar Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634102,"className":"Artefact_634102","name":"Toucan Toy Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":634103,"className":"Artefact_634103","name":"Octo-cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":634105,"className":"Artefact_634105","name":"Rubber Ducky Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":634106,"className":"Artefact_634106","name":"Hibiscus Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634108,"className":"Artefact_634108","name":"BBQ Skewer Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634109,"className":"Artefact_634109","name":"Roasted Marshmallow Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634111,"className":"Artefact_634111","name":"Roasted Kepa Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":634112,"className":"Artefact_634112","name":"Red Kepa Roast Spike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":634113,"className":"Artefact_634113","name":"Steel Frying Pan Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634114,"className":"Artefact_634114","name":"Grilled Mackerel Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634115,"className":"Artefact_634115","name":"Lumberjack Axe Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634116,"className":"Artefact_634116","name":"Buttered Corn Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634117,"className":"Artefact_634117","name":"Canned Kepa Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":634118,"className":"Artefact_634118","name":"Sausage Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":634119,"className":"Artefact_634119","name":"Calcot Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634121,"className":"Artefact_634121","name":"Whisk Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":634122,"className":"Artefact_634122","name":"Fish-Carver Rapier ","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634123,"className":"Artefact_634123","name":"Wine Glass Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634124,"className":"Artefact_634124","name":"Saltshaker Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634126,"className":"Artefact_634126","name":"Whisk Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":634127,"className":"Artefact_634127","name":"Pepper Shaker Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634128,"className":"Artefact_634128","name":"Spatula Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634130,"className":"Artefact_634130","name":"Two-handed Butcher Knife","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634131,"className":"Artefact_634131","name":"Pepper Grinder Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":634133,"className":"Artefact_634133","name":"Table Knife Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":634134,"className":"Artefact_634134","name":"TOS Ranger Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":634135,"className":"Artefact_634135","name":"TOS Ranger Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634136,"className":"Artefact_634136","name":"TOS Ranger Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":634137,"className":"Artefact_634137","name":"TOS Ranger Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":634138,"className":"Artefact_634138","name":"TOS Ranger Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634139,"className":"Artefact_634139","name":"TOS Ranger Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634140,"className":"Artefact_634140","name":"TOS Ranger Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634141,"className":"Artefact_634141","name":"TOS Ranger Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634142,"className":"Artefact_634142","name":"TOS Ranger Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":634143,"className":"Artefact_634143","name":"TOS Ranger Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":634144,"className":"Artefact_634144","name":"TOS Ranger Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":634147,"className":"Artefact_634147","name":"TOS Ranger Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634148,"className":"Artefact_634148","name":"TOS Ranger Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634150,"className":"Artefact_634150","name":"The Bat Count Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":634151,"className":"Artefact_634151","name":"The Bat Count Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634152,"className":"Artefact_634152","name":"Pumpkin Lantern Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":634153,"className":"Artefact_634153","name":"Pumpkin Streetlamp Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":634154,"className":"Artefact_634154","name":"Surgical Scissors Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634155,"className":"Artefact_634155","name":"Ripped Teddy Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634156,"className":"Artefact_634156","name":"Rag Doll Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634157,"className":"Artefact_634157","name":"Haunted Oak Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634158,"className":"Artefact_634158","name":"Clown Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":634159,"className":"Artefact_634159","name":"Pumpkin Mage Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":634160,"className":"Artefact_634160","name":"Heavy Coffin Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":634163,"className":"Artefact_634163","name":"Haunted Skull Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634164,"className":"Artefact_634164","name":"Hallowventer Hand Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634166,"className":"Artefact_634166","name":"Aurora Dafne Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634167,"className":"Artefact_634167","name":"Ice Crystal Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":634168,"className":"Artefact_634168","name":"Ice Crystal Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":634169,"className":"Artefact_634169","name":"Santa Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634170,"className":"Artefact_634170","name":"Jingle Bell Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634171,"className":"Artefact_634171","name":"Crystal Dafne Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634172,"className":"Artefact_634172","name":"Rudolf Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634173,"className":"Artefact_634173","name":"Evergreen Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":634174,"className":"Artefact_634174","name":"Christmas Sock Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":634175,"className":"Artefact_634175","name":"Rudolf Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":634177,"className":"Artefact_634177","name":"Ice Crystal Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634178,"className":"Artefact_634178","name":"Candy Cane Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634180,"className":"Artefact_634180","name":"Crane Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":634182,"className":"Artefact_634182","name":"Wave Greatsword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634183,"className":"Artefact_634183","name":"Lotus Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634184,"className":"Artefact_634184","name":"Red Lotus Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634185,"className":"Artefact_634185","name":"Dark Cloud Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634186,"className":"Artefact_634186","name":"White Cloud Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634187,"className":"Artefact_634187","name":"Wave Scimitar","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":634188,"className":"Artefact_634188","name":"Guardian Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634189,"className":"Artefact_634189","name":"Dokkabi Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634190,"className":"Artefact_634190","name":"Dokkabi Maul","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634191,"className":"Artefact_634191","name":"Swallow Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":634192,"className":"Artefact_634192","name":"Giant Bell Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":634193,"className":"Artefact_634193","name":"Magical Savior Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634194,"className":"Artefact_634194","name":"Magical Savior Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634195,"className":"Artefact_634195","name":"Magical Savior Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634196,"className":"Artefact_634196","name":"Magical Savior Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634197,"className":"Artefact_634197","name":"Magical Savior Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":634198,"className":"Artefact_634198","name":"Magical Savior Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":634199,"className":"Artefact_634199","name":"Magical Savior Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634200,"className":"Artefact_634200","name":"Magical Savior Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634201,"className":"Artefact_634201","name":"Magical Savior Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634202,"className":"Artefact_634202","name":"Magical Savior Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":634205,"className":"Artefact_634205","name":"Popo Pop Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634206,"className":"Artefact_634206","name":"Popo Pop Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":634207,"className":"Artefact_634207","name":"Popo Pop Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":634208,"className":"Artefact_634208","name":"Popo Pop Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":634209,"className":"Artefact_634209","name":"Popo Pop Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":634210,"className":"Artefact_634210","name":"Popo Pop Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":634211,"className":"Artefact_634211","name":"Popo Pop Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":634213,"className":"Artefact_634213","name":"Popo Pop Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":635001,"className":"E_SWD01_101","name":"[Event] Colichemarde","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38},{"itemId":635002,"className":"E_TSW01_101","name":"[Event] Zweihander","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"THSword","minLevel":1,"minAtk":35,"maxAtk":53},{"itemId":635003,"className":"E_STF01_101","name":"[Event] Elder Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37},{"itemId":635004,"className":"E_TBW01_101","name":"[Event] Skull Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"THBow","minLevel":1,"minAtk":35,"maxAtk":53},{"itemId":635005,"className":"E_MAC01_101","name":"[Event] Spiked Club","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37},{"itemId":635006,"className":"E_BOW01_101","name":"[Event] Bullet Shooter","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38},{"itemId":635007,"className":"E_TSF01_101","name":"[Event] Superior Cross Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"THStaff","minLevel":1,"mAtk":44},{"itemId":635008,"className":"E_SPR01_101","name":"[Event] Langdebeve","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41},{"itemId":635009,"className":"SWD03_106_14d","name":"Deathweaver Cutter (14 Days)","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":2880,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":15,"minAtk":361,"maxAtk":383},{"itemId":635010,"className":"TSW03_106_14d","name":"Deathweaver Tooth (14 Days)","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":4608,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":15,"minAtk":352,"maxAtk":528},{"itemId":635011,"className":"STF03_104_14d","name":"Deathweaver Rod (14 Days)","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":2880,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":15,"mAtk":372},{"itemId":635012,"className":"TBW03_105_14d","name":"Deathweaver Bow (14 Days)","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":4608,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":15,"minAtk":352,"maxAtk":528},{"itemId":635013,"className":"BOW03_104_14d","name":"Deathweaver Crossbow (14 Days)","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":2880,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":15,"minAtk":361,"maxAtk":383},{"itemId":635014,"className":"MAC03_106_14d","name":"Deathweaver Club (14 Days)","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":2880,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":15,"minAtk":359,"maxAtk":367,"mAtk":363,"addMAtk":32},{"itemId":635019,"className":"E_SWD01_137","name":"Badelaire [Event]","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38},{"itemId":635020,"className":"E_TSW01_129","name":"Katzbalger [Event]","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53},{"itemId":635021,"className":"E_STF01_137","name":"Alter Rod [Event]","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37},{"itemId":635022,"className":"E_TBW01_137","name":"Siege Bow [Event]","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53},{"itemId":635023,"className":"E_BOW01_130","name":"Fedimian Turret [Event]","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38},{"itemId":635024,"className":"E_MAC01_136","name":"Fedimian Club [Event]","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37},{"itemId":635025,"className":"E_SPR01_119","name":"Alchupiz [Event]","type":"Equip","group":"Weapon","weight":135,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41},{"itemId":635026,"className":"E_TSP01_111","name":"Royal Partisan [Event]","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57},{"itemId":635027,"className":"E_TSF01_129","name":"Drake Staff [Event]","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44},{"itemId":635029,"className":"E_RAP01_103","name":"Rapier [Event]","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37},{"itemId":635038,"className":"E_SWD04_108","name":"[Event][Appearance] Solmiki Sword","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":64,"maxAtk":68,"script":{"strArg":"WoodCarving"}},{"itemId":635039,"className":"E_TSW04_108","name":"[Event][Appearance] Solmiki Two-handed Sword","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":62,"maxAtk":94,"script":{"strArg":"WoodCarving"}},{"itemId":635040,"className":"E_STF04_109","name":"[Event][Appearance] Solmiki Rod","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":635041,"className":"E_TBW04_108","name":"[Event][Appearance] Solmiki Bow","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":62,"maxAtk":94,"script":{"strArg":"WoodCarving"}},{"itemId":635042,"className":"E_BOW04_108","name":"[Event][Appearance] Solmiki Crossbow","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":64,"maxAtk":68,"script":{"strArg":"WoodCarving"}},{"itemId":635043,"className":"E_MAC04_110","name":"[Event][Appearance] Solmiki Mace","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":65,"maxAtk":67,"script":{"strArg":"WoodCarving"}},{"itemId":635045,"className":"E_SPR04_109","name":"[Event][Appearance] Solmiki Spear","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":59,"maxAtk":73,"script":{"strArg":"WoodCarving"}},{"itemId":635046,"className":"E_TSP04_110","name":"[Event][Appearance] Solmiki Pike","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":55,"maxAtk":101,"script":{"strArg":"WoodCarving"}},{"itemId":635048,"className":"E_TSF04_108","name":"[Event][Appearance] Solmiki Staff","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":78,"script":{"strArg":"WoodCarving"}},{"itemId":635050,"className":"E_RAP04_105","name":"[Event][Appearance] Solmiki Rapier","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":66,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":635051,"className":"E_CAN04_102","name":"[Event][Appearance] Solmiki Cannon","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":39,"maxAtk":117,"script":{"strArg":"WoodCarving"}},{"itemId":635052,"className":"E_MUS04_102","name":"[Event][Appearance] Solmiki Musket","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":51,"maxAtk":105,"script":{"strArg":"WoodCarving"}},{"itemId":635062,"className":"E_SWD04_106","name":"[EVENT] Catacombs Blade","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":7560,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":50,"minAtk":540,"maxAtk":574},{"itemId":635063,"className":"E_TSW04_106","name":"[EVENT] Magi Two-handed Sword","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":12096,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":50,"minAtk":526,"maxAtk":790},{"itemId":635064,"className":"E_MAC04_108","name":"[EVENT] Catacombs Club","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":7560,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":50,"minAtk":551,"maxAtk":562,"addMAtk":303},{"itemId":635065,"className":"E_TSF04_106","name":"[EVENT] Catacombs Staff","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":12096,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":50,"mAtk":658,"addDef":16,"addMDef":23},{"itemId":635066,"className":"E_STF04_107","name":"[EVENT] Maga Rod","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":7560,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":50,"mAtk":557,"earthRes":16},{"itemId":635067,"className":"E_SPR04_103","name":"[EVENT] Brandish","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":7560,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":50,"minAtk":501,"maxAtk":613},{"itemId":635068,"className":"E_TSP04_107","name":"[EVENT] Catacombs Pike","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":12096,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":50,"minAtk":461,"maxAtk":856},{"itemId":635069,"className":"E_BOW04_106","name":"[EVENT] Catacombs Shooter","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":7560,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":50,"minAtk":540,"maxAtk":574,"pAtk":31,"iceRes":43},{"itemId":635070,"className":"E_TBW04_106","name":"[EVENT] Maga Bow","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":12096,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":50,"minAtk":526,"maxAtk":790},{"itemId":635072,"className":"E_SWD01_106","name":"[Level Up Event] Sabre","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":2880,"sellPrice":728,"equipType1":"Sword","equipType2":"Sword","minLevel":15,"minAtk":137,"maxAtk":145},{"itemId":635073,"className":"E_TSW01_104","name":"[Level Up Event] Nodachi","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":4608,"sellPrice":1164,"equipType1":"THSword","equipType2":"Sword","minLevel":15,"minAtk":133,"maxAtk":200},{"itemId":635074,"className":"E_STF01_106","name":"[Level Up Event] Crook","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":2880,"sellPrice":728,"equipType1":"Staff","equipType2":"Staff","minLevel":15,"mAtk":141},{"itemId":635075,"className":"E_TSF01_104","name":"[Level Up Event] Ju Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":4608,"sellPrice":1164,"equipType1":"THStaff","equipType2":"Staff","minLevel":15,"mAtk":167},{"itemId":635076,"className":"E_TBW01_107","name":"[Level Up Event] Rokas Bow","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":4608,"sellPrice":2419,"equipType1":"THBow","equipType2":"Bow","minLevel":15,"minAtk":133,"maxAtk":200},{"itemId":635077,"className":"E_BOW01_104","name":"[Level Up Event] Quarrel Bow","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":2880,"sellPrice":728,"equipType1":"Bow","equipType2":"Bow","minLevel":15,"minAtk":137,"maxAtk":145},{"itemId":635078,"className":"E_MAC01_106","name":"[Level Up Event] Mallet","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":2880,"sellPrice":728,"equipType1":"Mace","equipType2":"Mace","minLevel":15,"minAtk":140,"maxAtk":142,"mAtk":141},{"itemId":635079,"className":"E_SPR01_101_2","name":"[Level Up Event] Short Spear","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Spear","equipType2":"Spear","minLevel":15,"minAtk":127,"maxAtk":155},{"itemId":635080,"className":"E_TSP02_103","name":"[Level Up Event] Cheminis Pike","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":4608,"sellPrice":2794,"equipType1":"THSpear","equipType2":"Spear","minLevel":15,"minAtk":130,"maxAtk":241},{"itemId":635085,"className":"E_SWD01_131","name":"[Level Up Event] Badelaire","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":8583,"sellPrice":3168,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":569,"maxAtk":604},{"itemId":635086,"className":"E_TSW01_123","name":"[Level Up Event] Katzbalger","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":13732,"sellPrice":5068,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":555,"maxAtk":832},{"itemId":635087,"className":"E_STF01_131","name":"[Level Up Event] Alter Rod","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":8583,"sellPrice":3168,"equipType1":"Staff","equipType2":"Staff","minLevel":75,"mAtk":587},{"itemId":635088,"className":"E_TSF01_124","name":"[Level Up Event] Cross Staff","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":13732,"sellPrice":6887,"equipType1":"THStaff","equipType2":"Staff","minLevel":75,"mAtk":693},{"itemId":635089,"className":"E_TBW01_131","name":"[Level Up Event] Siege Bow","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":13732,"sellPrice":5068,"equipType1":"THBow","equipType2":"Bow","minLevel":75,"minAtk":555,"maxAtk":832},{"itemId":635090,"className":"E_BOW01_124","name":"[Level Up Event] Fedimian Turret","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":8583,"sellPrice":3168,"equipType1":"Bow","equipType2":"Bow","minLevel":75,"minAtk":569,"maxAtk":604},{"itemId":635091,"className":"E_MAC01_130","name":"[Level Up Event] Fedimian Club","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":8583,"sellPrice":3168,"equipType1":"Mace","equipType2":"Mace","minLevel":75,"minAtk":581,"maxAtk":592,"mAtk":587},{"itemId":635092,"className":"E_SPR01_113","name":"[Level Up Event] Alchupiz","type":"Equip","group":"Weapon","weight":135,"maxStack":1,"price":8583,"sellPrice":4323,"equipType1":"Spear","equipType2":"Spear","minLevel":75,"minAtk":528,"maxAtk":645},{"itemId":635093,"className":"E_TSP01_104","name":"[Level Up Event] Royal Partisan","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":13732,"sellPrice":5068,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":485,"maxAtk":901},{"itemId":635098,"className":"E_SWD01_138","name":"[Level Up Event] Koperon Sword","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":24589,"sellPrice":7936,"equipType1":"Sword","equipType2":"Sword","minLevel":175,"minAtk":1289,"maxAtk":1369},{"itemId":635099,"className":"E_TSW01_130","name":"[Level Up Event] Twin Blade","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":39342,"sellPrice":12697,"equipType1":"THSword","equipType2":"Sword","minLevel":175,"minAtk":1257,"maxAtk":1885},{"itemId":635100,"className":"E_STF01_138","name":"[Level Up Event] Corona Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":24589,"sellPrice":7936,"equipType1":"Staff","equipType2":"Staff","minLevel":175,"mAtk":1329},{"itemId":635101,"className":"E_TSF01_130","name":"[Level Up Event] Evil Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":39342,"sellPrice":12697,"equipType1":"THStaff","equipType2":"Staff","minLevel":175,"mAtk":1571},{"itemId":635102,"className":"E_TBW01_138","name":"[Level Up Event] Wreech Bow","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":39342,"sellPrice":12697,"equipType1":"THBow","equipType2":"Bow","minLevel":175,"minAtk":1257,"maxAtk":1885},{"itemId":635103,"className":"E_BOW01_131","name":"[Level Up Event] Kracked Shooter","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":24589,"sellPrice":7936,"equipType1":"Bow","equipType2":"Bow","minLevel":175,"minAtk":1289,"maxAtk":1369},{"itemId":635104,"className":"E_MAC01_137","name":"[Level Up Event] Burawa","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":24589,"sellPrice":7936,"equipType1":"Mace","equipType2":"Mace","minLevel":175,"minAtk":1316,"maxAtk":1342,"mAtk":1329},{"itemId":635105,"className":"E_SPR01_120","name":"[Level Up Event] Corsesca","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":24589,"sellPrice":10401,"equipType1":"Spear","equipType2":"Spear","minLevel":175,"minAtk":1196,"maxAtk":1462},{"itemId":635106,"className":"E_TSP01_112","name":"[Level Up Event] Demon Pike","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":39342,"sellPrice":12697,"equipType1":"THSpear","equipType2":"Spear","minLevel":175,"minAtk":1100,"maxAtk":2042},{"itemId":635107,"className":"E_RAP01_105","name":"[Level Up Event] Dual Rapier","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24589,"sellPrice":7936,"equipType1":"Rapier","equipType2":"Sword","minLevel":175,"minAtk":1329,"maxAtk":1329},{"itemId":635125,"className":"E2_SWD03_306","name":"[Event] Savior's Sword (30 Days)","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":13511,"sellPrice":5000,"equipType1":"Sword","equipType2":"Sword","minLevel":100,"minAtk":4789,"maxAtk":5085},{"itemId":635126,"className":"E2_TSW03_306","name":"[Event] Savior's Two-handed Sword (30 Days)","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":21617,"sellPrice":5000,"equipType1":"THSword","equipType2":"Sword","minLevel":100,"minAtk":4668,"maxAtk":7001},{"itemId":635127,"className":"E2_MAC03_306","name":"[Event] Savior's Mace (30 Days)","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":13511,"sellPrice":5000,"equipType1":"Mace","equipType2":"Mace","minLevel":100,"minAtk":4887,"maxAtk":4986,"mAtk":4937},{"itemId":635128,"className":"E2_TSF03_306","name":"[Event] Savior's Staff (30 Days)","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":21617,"sellPrice":5000,"equipType1":"THStaff","equipType2":"Staff","minLevel":100,"mAtk":5834},{"itemId":635129,"className":"E2_STF03_306","name":"[Event] Savior's Rod (30 Days)","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":13511,"sellPrice":5000,"equipType1":"Staff","equipType2":"Staff","minLevel":100,"mAtk":4937},{"itemId":635131,"className":"E2_SPR03_308","name":"[Event] Savior's Spear (30 Days)","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":13511,"sellPrice":5000,"equipType1":"Spear","equipType2":"Spear","minLevel":100,"minAtk":4443,"maxAtk":5430},{"itemId":635132,"className":"E2_TSP03_306","name":"[Event] Savior's Pike (30 Days)","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":21617,"sellPrice":5000,"equipType1":"THSpear","equipType2":"Spear","minLevel":100,"minAtk":4084,"maxAtk":7585},{"itemId":635133,"className":"E2_RAP03_304","name":"[Event] Savior's Rapier (30 Days)","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":13511,"sellPrice":5000,"equipType1":"Rapier","equipType2":"Sword","minLevel":100,"minAtk":4937,"maxAtk":4937},{"itemId":635134,"className":"E2_BOW03_306","name":"[Event] Savior's Crossbow (30 Days)","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":13511,"sellPrice":5000,"equipType1":"Bow","equipType2":"Bow","minLevel":100,"minAtk":4789,"maxAtk":5085},{"itemId":635135,"className":"E2_TBW03_306","name":"[Event] Savior's Bow (30 Days)","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":21617,"sellPrice":5000,"equipType1":"THBow","equipType2":"Bow","minLevel":100,"minAtk":4668,"maxAtk":7001},{"itemId":635137,"className":"E2_CAN03_104","name":"[Event] Savior's Cannon (30 Days)","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":21617,"sellPrice":5000,"equipType1":"Cannon","equipType2":"Gun","minLevel":100,"minAtk":2917,"maxAtk":8752},{"itemId":635138,"className":"E2_MUS03_107","name":"[Event] Savior's Musket (30 Days)","type":"Equip","group":"Weapon","weight":145,"maxStack":1,"price":21617,"sellPrice":5000,"equipType1":"Musket","equipType2":"Gun","minLevel":100,"minAtk":3792,"maxAtk":7876},{"itemId":635170,"className":"E_SWD03_120","name":"[Event] Pierene Sword","type":"Equip","group":"Weapon","weight":145,"maxStack":1,"price":48800,"sellPrice":12921,"equipType1":"Sword","equipType2":"Sword","minLevel":315,"minAtk":2808,"maxAtk":2982,"addMDef":330},{"itemId":635171,"className":"E_TSW03_120","name":"[Event] Gale Slasher","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":78080,"sellPrice":20674,"equipType1":"THSword","equipType2":"Sword","minLevel":315,"minAtk":2737,"maxAtk":4106,"pAtk":111,"addMinAtk":358},{"itemId":635173,"className":"E_SPR03_115","name":"[Event] Pygry Spear","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":48800,"sellPrice":15616,"equipType1":"Spear","equipType2":"Spear","minLevel":315,"minAtk":2605,"maxAtk":3184},{"itemId":635174,"className":"E_TSP03_115","name":"[Event] Sacmet","type":"Equip","group":"Weapon","weight":205,"maxStack":1,"price":78080,"sellPrice":17798,"equipType1":"THSpear","equipType2":"Spear","minLevel":315,"minAtk":2395,"maxAtk":4448},{"itemId":635175,"className":"E_RAP03_305","name":"[Event] Elga Rapier","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":48800,"sellPrice":5000,"equipType1":"Rapier","equipType2":"Sword","minLevel":315,"minAtk":2895,"maxAtk":2895},{"itemId":635176,"className":"E_MAC03_204","name":"[Event] Vienarazis Mace","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":48800,"sellPrice":12921,"equipType1":"Mace","equipType2":"Mace","minLevel":315,"minAtk":2866,"maxAtk":2924,"mAtk":2895,"addMinAtk":168,"addMaxAtk":320},{"itemId":635177,"className":"E_TSF03_120","name":"[Event] Vienarazis Staff","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":78080,"sellPrice":20674,"equipType1":"THStaff","equipType2":"Staff","minLevel":315,"mAtk":3421},{"itemId":635178,"className":"E_STF03_120","name":"[Event] Windia Rod","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":48800,"sellPrice":12921,"equipType1":"Staff","equipType2":"Staff","minLevel":315,"mAtk":2895},{"itemId":635179,"className":"E_BOW03_202","name":"[Event] Silver Hawk","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":48800,"sellPrice":12921,"equipType1":"Bow","equipType2":"Bow","minLevel":315,"minAtk":2808,"maxAtk":2982,"addMinAtk":102,"addMaxAtk":211},{"itemId":635180,"className":"E_TBW03_120","name":"[Event] Aufgowle Bow","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":78080,"sellPrice":20674,"equipType1":"THBow","equipType2":"Bow","minLevel":315,"minAtk":2737,"maxAtk":4106,"addMinAtk":148,"addMaxAtk":246},{"itemId":635182,"className":"E_CAN03_101","name":"[Event] Lionhead Cannon","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":78080,"sellPrice":7753,"equipType1":"Cannon","equipType2":"Gun","minLevel":315,"minAtk":1711,"maxAtk":5132},{"itemId":635183,"className":"E_MUS03_104","name":"[Event] Dragoon Piper","type":"Equip","group":"Weapon","weight":158,"maxStack":1,"price":78080,"sellPrice":20674,"equipType1":"Musket","equipType2":"Gun","minLevel":315,"minAtk":2224,"maxAtk":4619,"addMinAtk":75,"addMaxAtk":115,"addDef":-13},{"itemId":635184,"className":"SWD03_106_EVENT_1710_NEWCHARACTER","name":"[Event] Deathweaver Cutter (30 Days)","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Sword","equipType2":"Sword","minLevel":15,"minAtk":167,"maxAtk":178},{"itemId":635185,"className":"TSW03_106_EVENT_1710_NEWCHARACTER","name":"[Event] Deathweaver Tooth (30 Days)","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THSword","equipType2":"Sword","minLevel":15,"minAtk":163,"maxAtk":245},{"itemId":635186,"className":"STF03_104_EVENT_1710_NEWCHARACTER","name":"[Event] Deathweaver Rod (30 Days)","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Staff","equipType2":"Staff","minLevel":15,"mAtk":172},{"itemId":635187,"className":"TSF02_101_EVENT_1710_NEWCHARACTER","name":"[Event] Melinas Staff (30 Days)","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":4608,"sellPrice":1388,"equipType1":"THStaff","equipType2":"Staff","minLevel":15,"mAtk":204},{"itemId":635188,"className":"TBW03_105_EVENT_1710_NEWCHARACTER","name":"[Event] Deathweaver Bow (30 Days)","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":4608,"sellPrice":921,"equipType1":"THBow","equipType2":"Bow","minLevel":15,"minAtk":163,"maxAtk":245},{"itemId":635189,"className":"BOW03_104_EVENT_1710_NEWCHARACTER","name":"[Event] Deathweaver Crossbow (30 Days)","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Bow","equipType2":"Bow","minLevel":15,"minAtk":167,"maxAtk":178},{"itemId":635190,"className":"MAC03_105_EVENT_1710_NEWCHARACTER","name":"[Event] Vubbe Morning Star (30 Days)","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":2880,"sellPrice":576,"equipType1":"Mace","equipType2":"Mace","minLevel":15,"minAtk":171,"maxAtk":174,"mAtk":172},{"itemId":635193,"className":"SWD02_109_EVENT_1710_NEWCHARACTER","name":"[Event] Cheminis Sword (30 Days)","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":1746,"equipType1":"Sword","equipType2":"Sword","minLevel":40,"minAtk":387,"maxAtk":411},{"itemId":635194,"className":"TSW03_107_EVENT_1710_NEWCHARACTER","name":"[Event] Chapparition Two-handed Sword (30 Days)","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THSword","equipType2":"Sword","minLevel":40,"minAtk":378,"maxAtk":566},{"itemId":635195,"className":"STF03_105_EVENT_1710_NEWCHARACTER","name":"[Event] Chapparition Rod (30 Days)","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Staff","equipType2":"Staff","minLevel":40,"mAtk":399},{"itemId":635196,"className":"TSF02_119_EVENT_1710_NEWCHARACTER","name":"[Event] Patrice Staff (30 Days)","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":5824,"sellPrice":921,"equipType1":"THStaff","equipType2":"Staff","minLevel":40,"mAtk":472},{"itemId":635197,"className":"TBW03_106_EVENT_1710_NEWCHARACTER","name":"[Event] Chapparition Bow (30 Days)","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":5824,"sellPrice":2419,"equipType1":"THBow","equipType2":"Bow","minLevel":40,"minAtk":378,"maxAtk":566},{"itemId":635198,"className":"BOW03_105_EVENT_1710_NEWCHARACTER","name":"[Event] Chapparition Shooter (30 Days)","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Bow","equipType2":"Bow","minLevel":40,"minAtk":387,"maxAtk":411},{"itemId":635199,"className":"MAC03_107_EVENT_1710_NEWCHARACTER","name":"[Event] Chapparition Mace (30 Days)","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Mace","equipType2":"Mace","minLevel":40,"minAtk":395,"maxAtk":403,"mAtk":399},{"itemId":635200,"className":"SPR03_101_EVENT_1710_NEWCHARACTER","name":"[Event] Silver Spear (30 Days)","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":3640,"sellPrice":1512,"equipType1":"Spear","equipType2":"Spear","minLevel":40,"minAtk":359,"maxAtk":439,"addMDef":39},{"itemId":635201,"className":"TSP02_103_EVENT_1710_NEWCHARACTER","name":"[Event] Cheminis Pike (30 Days)","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":5824,"sellPrice":2794,"equipType1":"THSpear","equipType2":"Spear","minLevel":40,"minAtk":330,"maxAtk":613},{"itemId":635204,"className":"SWD03_102_EVENT_1710_NEWCHARACTER","name":"[Event] Durandal (30 Days)","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":8583,"sellPrice":2730,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":695,"maxAtk":738},{"itemId":635205,"className":"TSW03_101_EVENT_1710_NEWCHARACTER","name":"[Event] Flamini (30 Days)","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":13732,"sellPrice":5017,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":678,"maxAtk":1017},{"itemId":635206,"className":"STF03_103_EVENT_1710_NEWCHARACTER","name":"[Event] Secretum (30 Days)","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":8583,"sellPrice":2730,"equipType1":"Staff","equipType2":"Staff","minLevel":75,"mAtk":717},{"itemId":635207,"className":"TSF03_101_EVENT_1710_NEWCHARACTER","name":"[Event] Candle Staff (30 Days)","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":13732,"sellPrice":4368,"equipType1":"THStaff","equipType2":"Staff","minLevel":75,"mAtk":847},{"itemId":635208,"className":"TBW03_103_EVENT_1710_NEWCHARACTER","name":"[Event] Heart Seeker (30 Days)","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":13732,"sellPrice":4323,"equipType1":"THBow","equipType2":"Bow","minLevel":75,"minAtk":678,"maxAtk":1017},{"itemId":635209,"className":"BOW03_101_EVENT_1710_NEWCHARACTER","name":"[Event] Shooting Star (30 Days)","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":8583,"sellPrice":2673,"equipType1":"Bow","equipType2":"Bow","minLevel":75,"minAtk":695,"maxAtk":738},{"itemId":635210,"className":"MAC02_124_EVENT_1710_NEWCHARACTER","name":"[Event] Escanciu Mace (30 Days)","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Mace","equipType2":"Mace","minLevel":75,"minAtk":710,"maxAtk":724,"mAtk":717},{"itemId":635211,"className":"SPR03_103_EVENT_1710_NEWCHARACTER","name":"[Event] Doom Spear (30 Days)","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":8583,"sellPrice":2702,"equipType1":"Spear","equipType2":"Spear","minLevel":75,"minAtk":645,"maxAtk":789},{"itemId":635212,"className":"TSP03_103_EVENT_1710_NEWCHARACTER","name":"[Event] Laideca (30 Days)","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":13732,"sellPrice":7760,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":593,"maxAtk":1101},{"itemId":635215,"className":"SWD03_103_EVENT_1710_NEWCHARACTER","name":"[Event] Velniup (30 Days)","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":15520,"sellPrice":3546,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":1092,"maxAtk":1159},{"itemId":635216,"className":"TSW03_113_EVENT_1710_NEWCHARACTER","name":"[Event] Tily Two-handed Sword (30 Days)","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":6936,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":1064,"maxAtk":1596},{"itemId":635217,"className":"STF03_101_EVENT_1710_NEWCHARACTER","name":"[Event] Temere (30 Days)","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":15520,"sellPrice":4884,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":1125},{"itemId":635218,"className":"TSF03_103_EVENT_1710_NEWCHARACTER","name":"[Event] Sunflower (30 Days)","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":24832,"sellPrice":6936,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1330,"iceRes":-59},{"itemId":635219,"className":"TBW03_101_EVENT_1710_NEWCHARACTER","name":"[Event] Wildling Bane (30 Days)","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":24832,"sellPrice":4966,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":1064,"maxAtk":1596},{"itemId":635220,"className":"BOW03_111_EVENT_1710_NEWCHARACTER","name":"[Event] Seimos Crossbow (30 Days)","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":4304,"equipType1":"Bow","equipType2":"Bow","minLevel":120,"minAtk":1092,"maxAtk":1159},{"itemId":635221,"className":"MAC03_111_EVENT_1710_NEWCHARACTER","name":"[Event] Seimos Mace (30 Days)","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":4335,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":1114,"maxAtk":1137,"mAtk":1125},{"itemId":635222,"className":"SPR03_107_EVENT_1710_NEWCHARACTER","name":"[Event] Seimos Spear (30 Days)","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":15520,"sellPrice":4368,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":1013,"maxAtk":1238},{"itemId":635223,"className":"TSP03_107_EVENT_1710_NEWCHARACTER","name":"[Event] Seimos Pike (30 Days)","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":24832,"sellPrice":6887,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":931,"maxAtk":1729},{"itemId":635226,"className":"SWD03_105_EVENT_1710_NEWCHARACTER","name":"[Event] Flame (30 Days)","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":24252,"sellPrice":2730,"equipType1":"Sword","equipType2":"Sword","minLevel":170,"minAtk":1532,"maxAtk":1626},{"itemId":635227,"className":"TSW03_105_EVENT_1710_NEWCHARACTER","name":"[Event] Hell and Heaven (30 Days)","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":38803,"sellPrice":8137,"equipType1":"THSword","equipType2":"Sword","minLevel":170,"minAtk":1493,"maxAtk":2239,"pAtk":117,"addDef":-235},{"itemId":635228,"className":"STF03_111_EVENT_1710_NEWCHARACTER","name":"[Event] Casti Rod (30 Days)","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Staff","equipType2":"Staff","minLevel":170,"mAtk":1579},{"itemId":635229,"className":"TSF03_105_EVENT_1710_NEWCHARACTER","name":"[Event] Maledoom (30 Days)","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THStaff","equipType2":"Staff","minLevel":170,"mAtk":1866},{"itemId":635230,"className":"TBW03_112_EVENT_1710_NEWCHARACTER","name":"[Event] Casti Bow (30 Days)","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THBow","equipType2":"Bow","minLevel":170,"minAtk":1493,"maxAtk":2239},{"itemId":635231,"className":"BOW03_108_EVENT_1710_NEWCHARACTER","name":"[Event] Karacha Crossbow (30 Days)","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":24252,"sellPrice":6501,"equipType1":"Bow","equipType2":"Bow","minLevel":170,"minAtk":1532,"maxAtk":1626},{"itemId":635232,"className":"MAC03_103_EVENT_1710_NEWCHARACTER","name":"[Event] Drake Tail (30 Days)","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":24252,"sellPrice":6534,"equipType1":"Mace","equipType2":"Mace","minLevel":170,"minAtk":1563,"maxAtk":1595,"mAtk":1579},{"itemId":635233,"className":"SPR03_109_EVENT_1710_NEWCHARACTER","name":"[Event] Casti Spear (30 Days)","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":24252,"sellPrice":7814,"equipType1":"Spear","equipType2":"Spear","minLevel":170,"minAtk":1421,"maxAtk":1737,"addMaxAtk":21},{"itemId":635234,"className":"TSP03_109_EVENT_1710_NEWCHARACTER","name":"[Event] Magas Pike (30 Days)","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":38803,"sellPrice":10455,"equipType1":"THSpear","equipType2":"Spear","minLevel":170,"minAtk":1306,"maxAtk":2426,"addMinAtk":30},{"itemId":635235,"className":"RAP03_101_EVENT_1710_NEWCHARACTER","name":"[Event] Duelist (30 Days)","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":24252,"sellPrice":2702,"equipType1":"Rapier","equipType2":"Sword","minLevel":170,"minAtk":1579,"maxAtk":1579},{"itemId":635238,"className":"SWD03_116_EVENT_1710_NEWCHARACTER","name":"[Event] Pensara Sword (30 Days)","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":32673,"sellPrice":6534,"equipType1":"Sword","equipType2":"Sword","minLevel":220,"minAtk":1972,"maxAtk":2094,"addMDef":28},{"itemId":635239,"className":"TSW03_117_EVENT_1710_NEWCHARACTER","name":"[Event] Pensara Two-handed Sword (30 Days)","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":52276,"sellPrice":10455,"equipType1":"THSword","equipType2":"Sword","minLevel":220,"minAtk":1922,"maxAtk":2883,"pAtk":57},{"itemId":635240,"className":"STF03_114_EVENT_1710_NEWCHARACTER","name":"[Event] Pensara Rod (30 Days)","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":32673,"sellPrice":6534,"equipType1":"Staff","equipType2":"Staff","minLevel":220,"mAtk":2033},{"itemId":635241,"className":"TSF03_109_EVENT_1710_NEWCHARACTER","name":"[Event] Power Staff (30 Days)","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":52276,"sellPrice":10401,"equipType1":"THStaff","equipType2":"Staff","minLevel":220,"mAtk":2402},{"itemId":635242,"className":"TBW03_109_EVENT_1710_NEWCHARACTER","name":"[Event] Marksman (30 Days)","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":52276,"sellPrice":12800,"equipType1":"THBow","equipType2":"Bow","minLevel":220,"minAtk":1922,"maxAtk":2883},{"itemId":635243,"className":"BOW03_110_EVENT_1710_NEWCHARACTER","name":"[Event] Didel Grand Cross (30 Days)","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":32673,"sellPrice":7936,"equipType1":"Bow","equipType2":"Bow","minLevel":220,"minAtk":1972,"maxAtk":2094},{"itemId":635244,"className":"MAC03_116_EVENT_1710_NEWCHARACTER","name":"[Event] Pensara Mace (30 Days)","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":6534,"equipType1":"Mace","equipType2":"Mace","minLevel":220,"minAtk":2012,"maxAtk":2053,"mAtk":2033,"addMDef":17},{"itemId":635245,"className":"SPR03_112_EVENT_1710_NEWCHARACTER","name":"[Event] Pensara Spear (30 Days)","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":32673,"sellPrice":10401,"equipType1":"Spear","equipType2":"Spear","minLevel":220,"minAtk":1830,"maxAtk":2236},{"itemId":635246,"className":"TSP03_112_EVENT_1710_NEWCHARACTER","name":"[Event] Pensara Pike (30 Days)","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":52276,"sellPrice":12697,"equipType1":"THSpear","equipType2":"Spear","minLevel":220,"minAtk":1682,"maxAtk":3123},{"itemId":635247,"className":"RAP03_102_EVENT_1710_NEWCHARACTER","name":"[Event] Spada (30 Days)","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":8000,"equipType1":"Rapier","equipType2":"Sword","minLevel":220,"minAtk":2033,"maxAtk":2033,"pAtk":68},{"itemId":635248,"className":"MUS03_101_EVENT_1710_NEWCHARACTER","name":"[Event] Finisher (30 Days)","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":52276,"sellPrice":13209,"equipType1":"Musket","equipType2":"Gun","minLevel":220,"minAtk":1562,"maxAtk":3243},{"itemId":635263,"className":"SWD04_116_STEMA_DLC","name":"Primus Raffye Sword [Untradable]","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":350,"minAtk":3541,"maxAtk":3760},{"itemId":635264,"className":"TSW04_116_STEMA_DLC","name":"Primus Raffye Two-handed Sword [Untradable]","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":350,"minAtk":3451,"maxAtk":5177},{"itemId":635265,"className":"MAC04_118_STEMA_DLC","name":"Primus Raffye Mace [Untradable]","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":350,"minAtk":3614,"maxAtk":3687,"mAtk":3651},{"itemId":635266,"className":"TSF04_116_STEMA_DLC","name":"Primus Raffye Staff [Untradable]","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":350,"mAtk":4314},{"itemId":635267,"className":"STF04_117_STEMA_DLC","name":"Primus Raffye Rod [Untradable]","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":350,"mAtk":3651},{"itemId":635268,"className":"TMAC04_107_STEMA_DLC","name":"Primus Raffye Two-handed Mace [Untradable]","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":350,"minAtk":3883,"maxAtk":4746,"mAtk":4314},{"itemId":635270,"className":"SPR04_117_STEMA_DLC","name":"Primus Raffye Spear [Untradable]","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":350,"minAtk":3286,"maxAtk":4016},{"itemId":635271,"className":"TSP04_118_STEMA_DLC","name":"Primus Raffye Pike [Untradable]","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":350,"minAtk":3020,"maxAtk":5609},{"itemId":635272,"className":"RAP04_111_STEMA_DLC","name":"Primus Raffye Rapier [Untradable]","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":350,"minAtk":3651,"maxAtk":3651},{"itemId":635273,"className":"BOW04_116_STEMA_DLC","name":"Primus Raffye Crossbow [Untradable]","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":350,"minAtk":3541,"maxAtk":3760},{"itemId":635274,"className":"TBW04_116_STEMA_DLC","name":"Primus Raffye Bow [Untradable]","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":350,"minAtk":3451,"maxAtk":5177},{"itemId":635276,"className":"CAN04_107_STEMA_DLC","name":"Primus Raffye Cannon [Untradable]","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":350,"minAtk":2157,"maxAtk":6472},{"itemId":635277,"className":"MUS04_107_STEMA_DLC","name":"Primus Raffye Musket [Untradable]","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":350,"minAtk":2804,"maxAtk":5824},{"itemId":635279,"className":"SWD04_109_STEAM_NT","name":"Abdochar [Untradeable]","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":48800,"sellPrice":14780,"equipType1":"Sword","equipType2":"Sword","minLevel":315,"minAtk":3191,"maxAtk":3388,"addMaxAtk":158,"addDef":245},{"itemId":635280,"className":"TSW04_109_STEAM_NT","name":"Sarkmis [Untradable]","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":78080,"sellPrice":23649,"equipType1":"THSword","equipType2":"Sword","minLevel":315,"minAtk":3110,"maxAtk":4665,"darkRes":180},{"itemId":635281,"className":"MAC04_111_STEAM_NT","name":"Skull Smasher [Untradable]","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":48800,"sellPrice":14780,"equipType1":"Mace","equipType2":"Mace","minLevel":315,"minAtk":3257,"maxAtk":3323,"mAtk":3290},{"itemId":635282,"className":"TSF04_109_STEAM_NT","name":"Regard Horn Staff [Untradable]","type":"Equip","group":"Weapon","weight":235,"maxStack":1,"price":78080,"sellPrice":23649,"equipType1":"THStaff","equipType2":"Staff","minLevel":315,"mAtk":3888},{"itemId":635283,"className":"STF04_110_STEAM_NT","name":"Heart of Glory [Untradable]","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":48800,"sellPrice":14780,"equipType1":"Staff","equipType2":"Staff","minLevel":315,"mAtk":3290,"addDef":132},{"itemId":635284,"className":"TMAC04_101_STEAM_NT","name":"Skull Breaker [Untradable]","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":78080,"sellPrice":23649,"equipType1":"THMace","equipType2":"Mace","minLevel":315,"minAtk":3499,"maxAtk":4277,"mAtk":3888},{"itemId":635286,"className":"SPR04_110_STEAM_NT","name":"Wingshard Spear [Untradable]","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":48800,"sellPrice":17798,"equipType1":"Spear","equipType2":"Spear","minLevel":315,"minAtk":2961,"maxAtk":3619},{"itemId":635287,"className":"TSP04_111_STEAM_NT","name":"Regard Horn Pike [Untradable]","type":"Equip","group":"Weapon","weight":215,"maxStack":1,"price":78080,"sellPrice":20723,"equipType1":"THSpear","equipType2":"Spear","minLevel":315,"minAtk":2721,"maxAtk":5054},{"itemId":635288,"className":"RAP04_106_STEAM_NT","name":"Black Horn [Untradable]","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":48800,"sellPrice":11991,"equipType1":"Rapier","equipType2":"Sword","minLevel":315,"minAtk":3290,"maxAtk":3290},{"itemId":635289,"className":"BOW04_109_STEAM_NT","name":"Regard Horn Crossbow [Untradable]","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":48800,"sellPrice":14780,"equipType1":"Bow","equipType2":"Bow","minLevel":315,"minAtk":3191,"maxAtk":3388},{"itemId":635290,"className":"TBW04_109_STEAM_NT","name":"Astra Bow [Untradable]","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":78080,"sellPrice":23649,"equipType1":"THBow","equipType2":"Bow","minLevel":315,"minAtk":3110,"maxAtk":4665},{"itemId":635292,"className":"CAN04_103_STEAM_NT","name":"Emengard Cannon [Untradable]","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":78080,"sellPrice":8868,"equipType1":"Cannon","equipType2":"Gun","minLevel":315,"minAtk":1944,"maxAtk":5832,"addMaxAtk":302},{"itemId":635293,"className":"MUS04_103_STEAM_NT","name":"Emengard Musket [Untradable]","type":"Equip","group":"Weapon","weight":172,"maxStack":1,"price":78080,"sellPrice":23649,"equipType1":"Musket","equipType2":"Gun","minLevel":315,"minAtk":2527,"maxAtk":5249},{"itemId":635307,"className":"SWD04_110_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Migantis Sword (30 Days)","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":270,"minAtk":2741,"maxAtk":2910},{"itemId":635308,"className":"TSW04_114_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Migantis Two-handed Sword (30 Days)","type":"Equip","group":"Weapon","weight":270,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":270,"minAtk":2671,"maxAtk":4007},{"itemId":635309,"className":"STF04_115_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Migantis Rod (30 Days)","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":270,"mAtk":2826},{"itemId":635310,"className":"TBW04_114_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Migantis Bow (30 Days)","type":"Equip","group":"Weapon","weight":270,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":270,"minAtk":2671,"maxAtk":4007},{"itemId":635311,"className":"BOW04_114_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Migantis Crossbow (30 Days)","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":270,"minAtk":2741,"maxAtk":2910},{"itemId":635312,"className":"MAC04_116_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Migantis Mace (30 Days)","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":270,"minAtk":2797,"maxAtk":2854,"mAtk":2826},{"itemId":635313,"className":"TMAC04_105_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Migantis Two-handed Mace (30 Days)","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":270,"minAtk":3005,"maxAtk":3673,"mAtk":3339},{"itemId":635314,"className":"SPR04_115_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Migantis Spear (30 Days)","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":270,"minAtk":2543,"maxAtk":3108},{"itemId":635315,"className":"TSP04_116_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Migantis Pike (30 Days)","type":"Equip","group":"Weapon","weight":290,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":270,"minAtk":2338,"maxAtk":4341},{"itemId":635316,"className":"TSF04_114_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Migantis Staff (30 Days)","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":270,"mAtk":3339},{"itemId":635318,"className":"RAP04_109_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Migantis Rapier (30 Days)","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":270,"minAtk":2826,"maxAtk":2826},{"itemId":635319,"className":"CAN04_105_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Migantis Cannon (30 Days)","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":270,"minAtk":1670,"maxAtk":5009},{"itemId":635320,"className":"MUS04_105_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Migantis Musket (30 Days)","type":"Equip","group":"Weapon","weight":155,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":270,"minAtk":2171,"maxAtk":4508},{"itemId":635323,"className":"SWD04_111_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Pevordimas Sword (30 Days)","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":315,"minAtk":3191,"maxAtk":3388},{"itemId":635324,"className":"TSW04_115_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Pevordimas Two-handed Sword (30 Days)","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":315,"minAtk":3110,"maxAtk":4665},{"itemId":635325,"className":"STF04_116_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Pevordimas Rod (30 Days)","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":315,"mAtk":3290},{"itemId":635326,"className":"TBW04_115_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Pevordimas Bow (30 Days)","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":315,"minAtk":3110,"maxAtk":4665},{"itemId":635327,"className":"BOW04_115_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Pevordimas Crossbow (30 Days)","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":315,"minAtk":3191,"maxAtk":3388},{"itemId":635328,"className":"MAC04_117_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Pevordimas Mace (30 Days)","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":315,"minAtk":3257,"maxAtk":3323,"mAtk":3290},{"itemId":635329,"className":"TMAC04_106_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Pevordimas Two-handed Mace (30 Days)","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":315,"minAtk":3499,"maxAtk":4277,"mAtk":3888},{"itemId":635330,"className":"SPR04_116_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Pevordimas Spear (30 Days)","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":315,"minAtk":2961,"maxAtk":3619},{"itemId":635331,"className":"TSP04_117_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Pevordimas Pike (30 Days)","type":"Equip","group":"Weapon","weight":280,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":315,"minAtk":2721,"maxAtk":5054},{"itemId":635332,"className":"TSF04_115_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Pevordimas Staff (30 Days)","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":315,"mAtk":3888},{"itemId":635334,"className":"RAP04_110_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Pevordimas Rapier (30 Days)","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":48800,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":315,"minAtk":3290,"maxAtk":3290},{"itemId":635335,"className":"CAN04_106_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Pevordimas Cannon (30 Days)","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":315,"minAtk":1944,"maxAtk":5832},{"itemId":635336,"className":"MUS04_106_EVENT_1710_NEWCHARACTER","name":"[Event] Primus Pevordimas Musket (30 Days)","type":"Equip","group":"Weapon","weight":145,"maxStack":1,"price":78080,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":315,"minAtk":2527,"maxAtk":5249},{"itemId":635342,"className":"SWD03_313_1710_NEWCHARACTER","name":"Berthas Raffye Sword ","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":350,"minAtk":3116,"maxAtk":3309},{"itemId":635343,"className":"TSW03_313_1710_NEWCHARACTER","name":"Berthas Raffye Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":350,"minAtk":3037,"maxAtk":4556},{"itemId":635344,"className":"STF03_313_1710_NEWCHARACTER","name":"Berthas Raffye Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":350,"mAtk":3213},{"itemId":635345,"className":"TBW03_313_1710_NEWCHARACTER","name":"Berthas Raffye Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":350,"minAtk":3037,"maxAtk":4556},{"itemId":635346,"className":"BOW03_313_1710_NEWCHARACTER","name":"Berthas Raffye Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":350,"minAtk":3116,"maxAtk":3309},{"itemId":635347,"className":"MAC03_313_1710_NEWCHARACTER","name":"Berthas Raffye Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":350,"minAtk":3180,"maxAtk":3245,"mAtk":3213},{"itemId":635348,"className":"TMAC03_112_1710_NEWCHARACTER","name":"Berthas Raffye Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":350,"minAtk":3417,"maxAtk":4176,"mAtk":3797},{"itemId":635350,"className":"SPR03_315_1710_NEWCHARACTER","name":"Berthas Raffye Spear ","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":350,"minAtk":2891,"maxAtk":3534},{"itemId":635351,"className":"TSP03_313_1710_NEWCHARACTER","name":"Berthas Raffye Pike ","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":350,"minAtk":2658,"maxAtk":4936},{"itemId":635353,"className":"TSF03_313_1710_NEWCHARACTER","name":"Berthas Raffye Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":350,"mAtk":3797},{"itemId":635355,"className":"RAP03_310_1710_NEWCHARACTER","name":"Berthas Raffye Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":350,"minAtk":3213,"maxAtk":3213},{"itemId":635356,"className":"CAN03_108_1710_NEWCHARACTER","name":"Berthas Raffye Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":350,"minAtk":1898,"maxAtk":5695},{"itemId":635357,"className":"MUS03_111_1710_NEWCHARACTER","name":"Berthas Raffye Musket ","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":350,"minAtk":2468,"maxAtk":5125},{"itemId":635360,"className":"SWD04_116_1807_NEWCHARACTER","name":"[Event] Primus Raffye Sword (30 Days)","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":350,"minAtk":3541,"maxAtk":3760},{"itemId":635361,"className":"TSW04_116_1807_NEWCHARACTER","name":"[Event] Primus Raffye Two-handed Sword (30 Days)","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":350,"minAtk":3451,"maxAtk":5177},{"itemId":635362,"className":"STF04_117_1807_NEWCHARACTER","name":"[Event] Primus Raffye Rod (30 Days)","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":350,"mAtk":3651},{"itemId":635363,"className":"TBW04_116_1807_NEWCHARACTER","name":"[Event] Primus Raffye Bow (30 Days)","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":350,"minAtk":3451,"maxAtk":5177},{"itemId":635364,"className":"BOW04_116_1807_NEWCHARACTER","name":"[Event] Primus Raffye Crossbow (30 Days)","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":350,"minAtk":3541,"maxAtk":3760},{"itemId":635365,"className":"MAC04_118_1807_NEWCHARACTER","name":"[Event] Primus Raffye Mace (30 Days)","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":350,"minAtk":3614,"maxAtk":3687,"mAtk":3651},{"itemId":635366,"className":"TMAC04_107_1807_NEWCHARACTER","name":"[Event] Primus Raffye Two-handed Mace (30 Days)","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":350,"minAtk":3883,"maxAtk":4746,"mAtk":4314},{"itemId":635368,"className":"SPR04_117_1807_NEWCHARACTER","name":"[Event] Primus Raffye Spear (30 Days)","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":350,"minAtk":3286,"maxAtk":4016},{"itemId":635369,"className":"TSP04_118_1807_NEWCHARACTER","name":"[Event] Primus Raffye Pike (30 Days)","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":350,"minAtk":3020,"maxAtk":5609},{"itemId":635371,"className":"TSF04_116_1807_NEWCHARACTER","name":"[Event] Primus Raffye Staff (30 Days)","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":350,"mAtk":4314},{"itemId":635373,"className":"RAP04_111_1807_NEWCHARACTER","name":"[Event] Primus Raffye Rapier (30 Days)","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":350,"minAtk":3651,"maxAtk":3651},{"itemId":635374,"className":"CAN04_107_1807_NEWCHARACTER","name":"[Event] Primus Raffye Cannon (30 Days)","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":350,"minAtk":2157,"maxAtk":6472},{"itemId":635375,"className":"MUS04_107_1807_NEWCHARACTER","name":"[Event] Primus Raffye Musket (30 Days)","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":350,"minAtk":2804,"maxAtk":5824},{"itemId":635378,"className":"SWD03_313_1710_Steam_Friend_Event","name":"[Friend] Berthas Raffye Sword ","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":350,"minAtk":3116,"maxAtk":3309},{"itemId":635379,"className":"TSW03_313_1710_Steam_Friend_Event","name":"[Friend] Berthas Raffye Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":350,"minAtk":3037,"maxAtk":4556},{"itemId":635380,"className":"STF03_313_1710_Steam_Friend_Event","name":"[Friend] Berthas Raffye Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":350,"mAtk":3213},{"itemId":635381,"className":"TBW03_313_1710_Steam_Friend_Event","name":"[Friend] Berthas Raffye Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":350,"minAtk":3037,"maxAtk":4556},{"itemId":635382,"className":"BOW03_313_1710_Steam_Friend_Event","name":"[Friend] Berthas Raffye Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":350,"minAtk":3116,"maxAtk":3309},{"itemId":635383,"className":"MAC03_313_1710_Steam_Friend_Event","name":"[Friend] Berthas Raffye Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":350,"minAtk":3180,"maxAtk":3245,"mAtk":3213},{"itemId":635384,"className":"TMAC03_112_1710_Steam_Friend_Event","name":"[Friend] Berthas Raffye Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":350,"minAtk":3417,"maxAtk":4176,"mAtk":3797},{"itemId":635386,"className":"SPR03_315_1710_Steam_Friend_Event","name":"[Friend] Berthas Raffye Spear ","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":350,"minAtk":2891,"maxAtk":3534},{"itemId":635387,"className":"TSP03_313_1710_Steam_Friend_Event","name":"[Friend] Berthas Raffye Pike ","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":350,"minAtk":2658,"maxAtk":4936},{"itemId":635389,"className":"TSF03_313_1710_Steam_Friend_Event","name":"[Friend] Berthas Raffye Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":350,"mAtk":3797},{"itemId":635391,"className":"RAP03_310_1710_Steam_Friend_Event","name":"[Friend] Berthas Raffye Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":350,"minAtk":3213,"maxAtk":3213},{"itemId":635392,"className":"CAN03_108_1710_Steam_Friend_Event","name":"[Friend] Berthas Raffye Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":350,"minAtk":1898,"maxAtk":5695},{"itemId":635393,"className":"MUS03_111_1710_Steam_Friend_Event","name":"[Friend] Berthas Raffye Musket ","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":350,"minAtk":2468,"maxAtk":5125},{"itemId":635394,"className":"SWD04_109_STEAM_Returning_Event","name":"[Return] Abdochar (30 Days)","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":230,"minAtk":3191,"maxAtk":3388,"addMaxAtk":198,"addDef":245},{"itemId":635395,"className":"TSW04_109_STEAM_Returning_Event","name":"[Return] Sarkmis (30 Days)","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":230,"minAtk":3110,"maxAtk":4665,"darkRes":180},{"itemId":635396,"className":"MAC04_111_STEAM_Returning_Event","name":"[Return] Skull Smasher (30 Days)","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":230,"minAtk":3257,"maxAtk":3323,"mAtk":3290},{"itemId":635397,"className":"TSF04_109_STEAM_Returning_Event","name":"[Return] Regard Horn Staff (30 Days)","type":"Equip","group":"Weapon","weight":235,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":230,"mAtk":3888},{"itemId":635398,"className":"STF04_110_STEAM_Returning_Event","name":"[Return] Heart of Glory (30 Days)","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":230,"mAtk":3290,"addDef":132},{"itemId":635399,"className":"TMAC04_101_STEAM_Returning_Event","name":"[Return] Skull Breaker (30 Days)","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":230,"minAtk":3499,"maxAtk":4277,"mAtk":3888},{"itemId":635401,"className":"SPR04_110_STEAM_Returning_Event","name":"[Return] Wingshard Spear (30 Days)","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":230,"minAtk":2961,"maxAtk":3619},{"itemId":635402,"className":"TSP04_111_STEAM_Returning_Event","name":"[Return] Regard Horn Pike (30 Days)","type":"Equip","group":"Weapon","weight":215,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":230,"minAtk":2721,"maxAtk":5054},{"itemId":635403,"className":"RAP04_106_STEAM_Returning_Event","name":"[Return] Black Horn (30 Days)","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":230,"minAtk":3290,"maxAtk":3290},{"itemId":635404,"className":"BOW04_109_STEAM_Returning_Event","name":"[Return] Regard Horn Crossbow (30 Days)","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":230,"minAtk":3191,"maxAtk":3388},{"itemId":635405,"className":"TBW04_109_STEAM_Returning_Event","name":"[Return] Astra Bow (30 Days)","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":230,"minAtk":3110,"maxAtk":4665},{"itemId":635407,"className":"CAN04_103_STEAM_Returning_Event","name":"[Return] Emengard Cannon (30 Days)","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":230,"minAtk":1944,"maxAtk":5832,"addMaxAtk":302},{"itemId":635408,"className":"MUS04_103_STEAM_Returning_Event","name":"[Return] Emengard Musket (30 Days)","type":"Equip","group":"Weapon","weight":172,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":230,"minAtk":2527,"maxAtk":5249},{"itemId":635412,"className":"SWD04_117_NEWCHARACTER","name":"[Re:Build] Masinios Sword","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":350,"minAtk":3541,"maxAtk":3760},{"itemId":635413,"className":"TSW04_117_NEWCHARACTER","name":"[Re:Build] Masinios Two-handed Sword","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":350,"minAtk":3451,"maxAtk":5177},{"itemId":635414,"className":"STF04_118_NEWCHARACTER","name":"[Re:Build] Masinios Rod","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":350,"mAtk":3651},{"itemId":635415,"className":"TBW04_117_NEWCHARACTER","name":"[Re:Build] Masinios Bow","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":350,"minAtk":3451,"maxAtk":5177},{"itemId":635416,"className":"BOW04_117_NEWCHARACTER","name":"[Re:Build] Masinios Crossbow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":350,"minAtk":3541,"maxAtk":3760},{"itemId":635417,"className":"MAC04_119_NEWCHARACTER","name":"[Re:Build] Masinios Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":350,"minAtk":3614,"maxAtk":3687,"mAtk":3651},{"itemId":635418,"className":"TMAC04_108_NEWCHARACTER","name":"[Re:Build] Masinios Two-handed Mace","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":350,"minAtk":3883,"maxAtk":4746,"mAtk":4314},{"itemId":635420,"className":"SPR04_118_NEWCHARACTER","name":"[Re:Build] Masinios Spear","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":350,"minAtk":3286,"maxAtk":4016},{"itemId":635421,"className":"TSP04_119_NEWCHARACTER","name":"[Re:Build] Masinios Pike","type":"Equip","group":"Weapon","weight":290,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":350,"minAtk":3020,"maxAtk":5609},{"itemId":635423,"className":"TSF04_117_NEWCHARACTER","name":"[Re:Build] Masinios Staff","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":350,"mAtk":4314},{"itemId":635425,"className":"RAP04_112_NEWCHARACTER","name":"[Re:Build] Masinios Rapier","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":350,"minAtk":3651,"maxAtk":3651},{"itemId":635426,"className":"CAN04_108_NEWCHARACTER","name":"[Re:Build] Masinios Cannon","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":350,"minAtk":2157,"maxAtk":6472,"addMaxAtk":314},{"itemId":635427,"className":"MUS04_108_NEWCHARACTER","name":"[Re:Build] Masinios Musket","type":"Equip","group":"Weapon","weight":155,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":350,"minAtk":2804,"maxAtk":5824,"addMinAtk":-77,"addMaxAtk":777},{"itemId":635444,"className":"CAN01_113_NEWCHARACTER","name":"[Event] Practice Cannon (30 Days)","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":120,"minAtk":665,"maxAtk":1995},{"itemId":635445,"className":"CAN03_110_NEWCHARACTER","name":"[Event] Berthas Reine Cannon (30 Days)","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":170,"minAtk":933,"maxAtk":2799},{"itemId":635446,"className":"CAN03_105_NEWCHARACTER","name":"[Event] Berthas Pajoritas Cannon (30 Days)","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":220,"minAtk":1201,"maxAtk":3604},{"itemId":635447,"className":"MUS01_110_NEWCHARACTER","name":"[Event] Practice Musket (30 Days)","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":120,"minAtk":864,"maxAtk":1795},{"itemId":635448,"className":"MUS03_113_NEWCHARACTER","name":"[Event] Berthas Crystaras Musket (30 Days)","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":170,"minAtk":1213,"maxAtk":2519},{"itemId":635449,"className":"RAP01_111_NEWCHARACTER","name":"[Event] Practice Rapier (30 Days)","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":500,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":15,"minAtk":172,"maxAtk":172},{"itemId":635450,"className":"RAP01_112_NEWCHARACTER","name":"[Event] Dunkel Rapier (30 Days)","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":800,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":40,"minAtk":399,"maxAtk":399},{"itemId":635451,"className":"RAP03_312_NEWCHARACTER","name":"[Event] Berthas Sketis Rapier (30 Days)","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":75,"minAtk":717,"maxAtk":717},{"itemId":635452,"className":"RAP03_313_NEWCHARACTER","name":"[Event] Berthas Duelist Rapier (30 Days)","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":120,"minAtk":1125,"maxAtk":1125},{"itemId":635459,"className":"SWD04_119_EVENT_1812_XMAS","name":"[Event] Wastrel Zvaigzde Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":380,"minAtk":3841,"maxAtk":4079,"addDef":248,"strike":325},{"itemId":635460,"className":"TSW04_119_EVENT_1812_XMAS","name":"[Event] Wastrel Zvaigzde Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":380,"minAtk":3744,"maxAtk":5616},{"itemId":635461,"className":"STF04_121_EVENT_1812_XMAS","name":"[Event] Wastrel Zvaigzde Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":380,"mAtk":3960,"addMAtk":232,"addDef":325},{"itemId":635462,"className":"TBW04_119_EVENT_1812_XMAS","name":"[Event] Wastrel Zvaigzde Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":380,"minAtk":3744,"maxAtk":5616},{"itemId":635463,"className":"BOW04_119_EVENT_1812_XMAS","name":"[Event] Wastrel Zvaigzde Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":380,"minAtk":3841,"maxAtk":4079,"addMinAtk":152,"addMaxAtk":352},{"itemId":635464,"className":"MAC04_121_EVENT_1812_XMAS","name":"[Event] Wastrel Zvaigzde Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":380,"minAtk":3920,"maxAtk":4000,"mAtk":3960},{"itemId":635465,"className":"TMAC04_110_EVENT_1812_XMAS","name":"[Event] Wastrel Zvaigzde Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":380,"minAtk":4212,"maxAtk":5148,"mAtk":4680},{"itemId":635467,"className":"SPR04_120_EVENT_1812_XMAS","name":"[Event] Wastrel Zvaigzde Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":380,"minAtk":3564,"maxAtk":4356},{"itemId":635468,"className":"TSP04_121_EVENT_1812_XMAS","name":"[Event] Wastrel Zvaigzde Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":380,"minAtk":3276,"maxAtk":6084},{"itemId":635470,"className":"TSF04_19_EVENT_1812_XMAS","name":"[Event] Wastrel Zvaigzde Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":380,"mAtk":4680},{"itemId":635472,"className":"RAP04_114_EVENT_1812_XMAS","name":"[Event] Wastrel Zvaigzde Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":380,"minAtk":3960,"maxAtk":3960,"pAtk":132},{"itemId":635473,"className":"CAN04_110_EVENT_1812_XMAS","name":"[Event] Wastrel Zvaigzde Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":380,"minAtk":2340,"maxAtk":7020},{"itemId":635474,"className":"MUS04_110_EVENT_1812_XMAS","name":"[Event] Wastrel Zvaigzde Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":380,"minAtk":3042,"maxAtk":6318,"addMaxAtk":732},{"itemId":635475,"className":"SWD04_120_EVENT_1812_XMAS","name":"[Event] Asio Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":380,"minAtk":3841,"maxAtk":4079},{"itemId":635476,"className":"TSW04_120_EVENT_1812_XMAS","name":"[Event] Asio Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":380,"minAtk":3744,"maxAtk":5616},{"itemId":635477,"className":"STF04_120_EVENT_1812_XMAS","name":"[Event] Asio Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":380,"mAtk":3960,"addMDef":325},{"itemId":635478,"className":"TBW04_120_EVENT_1812_XMAS","name":"[Event] Asio Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":380,"minAtk":3744,"maxAtk":5616},{"itemId":635479,"className":"BOW04_120_EVENT_1812_XMAS","name":"[Event] Asio Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":380,"minAtk":3841,"maxAtk":4079},{"itemId":635480,"className":"MAC04_122_EVENT_1812_XMAS","name":"[Event] Asio Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":380,"minAtk":3920,"maxAtk":4000,"mAtk":3960},{"itemId":635481,"className":"TMAC04_111_EVENT_1812_XMAS","name":"[Event] Asio Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":380,"minAtk":4212,"maxAtk":5148,"mAtk":4680},{"itemId":635483,"className":"SPR04_121_EVENT_1812_XMAS","name":"[Event] Asio Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":380,"minAtk":3564,"maxAtk":4356},{"itemId":635484,"className":"TSP04_122_EVENT_1812_XMAS","name":"[Event] Asio Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":380,"minAtk":3276,"maxAtk":6084},{"itemId":635486,"className":"TSF04_120_EVENT_1812_XMAS","name":"[Event] Asio Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":380,"mAtk":4680},{"itemId":635488,"className":"RAP04_115_EVENT_1812_XMAS","name":"[Event] Asio Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":380,"minAtk":3960,"maxAtk":3960},{"itemId":635489,"className":"CAN04_111_EVENT_1812_XMAS","name":"[Event] Asio Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":380,"minAtk":2340,"maxAtk":7020},{"itemId":635490,"className":"MUS04_111_EVENT_1812_XMAS","name":"[Event] Asio Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":380,"minAtk":3042,"maxAtk":6318,"addMaxAtk":572},{"itemId":635491,"className":"SWD04_117_NEWCHARACTER2","name":"[Event] Masinios Sword","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":350,"minAtk":3541,"maxAtk":3760},{"itemId":635492,"className":"TSW04_117_NEWCHARACTER2","name":"[Event] Masinios Two-handed Sword","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":350,"minAtk":3451,"maxAtk":5177},{"itemId":635493,"className":"STF04_118_NEWCHARACTER2","name":"[Event] Masinios Rod","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":350,"mAtk":3651},{"itemId":635494,"className":"TBW04_117_NEWCHARACTER2","name":"[Event] Masinios Bow","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":350,"minAtk":3451,"maxAtk":5177},{"itemId":635495,"className":"BOW04_117_NEWCHARACTER2","name":"[Event] Masinios Crossbow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":350,"minAtk":3541,"maxAtk":3760},{"itemId":635496,"className":"MAC04_119_NEWCHARACTER2","name":"[Event] Masinios Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":350,"minAtk":3614,"maxAtk":3687,"mAtk":3651},{"itemId":635497,"className":"TMAC04_108_NEWCHARACTER2","name":"[Event] Masinios Two-handed Mace","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":350,"minAtk":3883,"maxAtk":4746,"mAtk":4314},{"itemId":635499,"className":"SPR04_118_NEWCHARACTER2","name":"[Event] Masinios Spear","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":350,"minAtk":3286,"maxAtk":4016},{"itemId":635500,"className":"TSP04_119_NEWCHARACTER2","name":"[Event] Masinios Pike","type":"Equip","group":"Weapon","weight":290,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":350,"minAtk":3020,"maxAtk":5609},{"itemId":635502,"className":"TSF04_117_NEWCHARACTER2","name":"[Event] Masinios Staff","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":350,"mAtk":4314},{"itemId":635504,"className":"RAP04_112_NEWCHARACTER2","name":"[Event] Masinios Rapier","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":350,"minAtk":3651,"maxAtk":3651},{"itemId":635505,"className":"CAN04_108_NEWCHARACTER2","name":"[Event] Masinios Cannon","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":350,"minAtk":2157,"maxAtk":6472,"addMaxAtk":314},{"itemId":635506,"className":"MUS04_108_NEWCHARACTER2","name":"[Event] Masinios Musket","type":"Equip","group":"Weapon","weight":155,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":350,"minAtk":2804,"maxAtk":5824,"addMinAtk":-77,"addMaxAtk":777},{"itemId":635511,"className":"TSP03_101_EVENT_REWARD","name":"[Event] Traxia (30 Days)","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":4608,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":15,"minAtk":143,"maxAtk":265},{"itemId":635512,"className":"CAN01_107_EVENT_REWARD","name":"[Event] Erera Cannon (30 Days)","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":4608,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":15,"minAtk":102,"maxAtk":306},{"itemId":635513,"className":"TMAC01_101_EVENT_REWARD","name":"[Event] Two-handed Battle Maul (30 Days)","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":4608,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":15,"minAtk":183,"maxAtk":224,"mAtk":204},{"itemId":635514,"className":"MUS02_111_EVENT_REWARD","name":"[Event] Crystaras Musket (30 Days)","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":4608,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":15,"minAtk":132,"maxAtk":275},{"itemId":635515,"className":"SPR04_101_EVENT_REWARD","name":"[Event] Adatag (30 Days)","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":2880,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":15,"minAtk":155,"maxAtk":190},{"itemId":635516,"className":"MUS03_103_EVENT_REWARD","name":"[Event] Pensara Musket (30 Days)","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":5824,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":40,"minAtk":307,"maxAtk":637},{"itemId":635517,"className":"TMAC02_104_EVENT_REWARD","name":"[Event] Reine Two-handed Mace (30 Days)","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":5824,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":40,"minAtk":425,"maxAtk":519,"mAtk":472},{"itemId":635518,"className":"CAN01_108_EVENT_REWARD","name":"[Event] Stropy Cannon (30 Days)","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":5824,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":40,"minAtk":236,"maxAtk":708},{"itemId":635519,"className":"CAN01_106_EVENT_REWARD","name":"[Event] Vista Cannon (30 Days)","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":13732,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":75,"minAtk":424,"maxAtk":1271},{"itemId":635520,"className":"MUS02_107_EVENT_REWARD","name":"[Event] Migantis Musket (30 Days)","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":13732,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":75,"minAtk":551,"maxAtk":1144},{"itemId":635521,"className":"MUS03_101_EVENT_REWARD","name":"[Event] Finisher (30 Days)","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":13732,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":75,"minAtk":551,"maxAtk":1144},{"itemId":635522,"className":"TMAC01_102_EVENT_REWARD","name":"[Event] Two-handed Rune Mace (30 Days)","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":120,"minAtk":1197,"maxAtk":1463,"mAtk":1330},{"itemId":635523,"className":"TMAC03_106_EVENT_REWARD","name":"[Event] Veinarazis Two-handed Mace (30 Days)","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":170,"minAtk":1680,"maxAtk":2053,"mAtk":1866,"addMinAtk":202,"addMaxAtk":384},{"itemId":635524,"className":"TMAC02_105_EVENT_REWARD","name":"[Event] Pajoritas Two-handed Mace (30 Days)","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":220,"minAtk":2162,"maxAtk":2643,"mAtk":2402},{"itemId":635525,"className":"TMAC02_103_EVENT_REWARD","name":"[Event] Krendall Two-handed Mace (30 Days)","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":13732,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":75,"minAtk":763,"maxAtk":932,"mAtk":847},{"itemId":635526,"className":"Event_SWD05_103","name":"[Event] Savinose Legva Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":400,"minAtk":5173,"maxAtk":5493},{"itemId":635527,"className":"Event_TSW05_103","name":"[Event] Savinose Legva Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":400,"minAtk":5042,"maxAtk":7563},{"itemId":635528,"className":"Event_STF05_103","name":"[Event] Savinose Legva Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":400,"mAtk":5333},{"itemId":635529,"className":"Event_TBW05_103","name":"[Event] Savinose Legva Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":400,"minAtk":5042,"maxAtk":7563},{"itemId":635530,"className":"Event_BOW05_103","name":"[Event] Savinose Legva Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":400,"minAtk":5173,"maxAtk":5493},{"itemId":635531,"className":"Event_MAC05_103","name":"[Event] Savinose Legva Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":400,"minAtk":5279,"maxAtk":5386,"mAtk":5333},{"itemId":635532,"className":"Event_TMAC05_105","name":"[Event] Savinose Legva Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":400,"minAtk":5672,"maxAtk":6933,"mAtk":6302},{"itemId":635533,"className":"Event_SPR05_103","name":"[Event] Savinose Legva Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":400,"minAtk":4800,"maxAtk":5866},{"itemId":635534,"className":"Event_TSP05_103","name":"[Event] Savinose Legva Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":400,"minAtk":4412,"maxAtk":8193},{"itemId":635535,"className":"Event_TSF05_103","name":"[Event] Savinose Legva Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":400,"mAtk":6302},{"itemId":635536,"className":"Event_RAP05_103","name":"[Event] Savinose Legva Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":400,"minAtk":5333,"maxAtk":5333},{"itemId":635537,"className":"Event_CAN05_105","name":"[Event] Savinose Legva Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":400,"minAtk":3151,"maxAtk":9454},{"itemId":635538,"className":"Event_MUS05_103","name":"[Event] Savinose Legva Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":400,"minAtk":4097,"maxAtk":8508},{"itemId":635554,"className":"SWD04_120_EVENT_NewChar01","name":"[Event] Asio Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":380,"minAtk":3841,"maxAtk":4079},{"itemId":635555,"className":"TSW04_120_EVENT_NewChar01","name":"[Event] Asio Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":380,"minAtk":3744,"maxAtk":5616},{"itemId":635556,"className":"STF04_120_EVENT_NewChar01","name":"[Event] Asio Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":380,"mAtk":3960,"addMDef":325},{"itemId":635557,"className":"TBW04_120_EVENT_NewChar01","name":"[Event] Asio Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":380,"minAtk":3744,"maxAtk":5616},{"itemId":635558,"className":"BOW04_120_EVENT_NewChar01","name":"[Event] Asio Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":380,"minAtk":3841,"maxAtk":4079},{"itemId":635559,"className":"MAC04_122_EVENT_NewChar01","name":"[Event] Asio Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":380,"minAtk":3920,"maxAtk":4000,"mAtk":3960},{"itemId":635560,"className":"TMAC04_111_EVENT_NewChar01","name":"[Event] Asio Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":380,"minAtk":4212,"maxAtk":5148,"mAtk":4680},{"itemId":635562,"className":"SPR04_121_EVENT_NewChar01","name":"[Event] Asio Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":380,"minAtk":3564,"maxAtk":4356},{"itemId":635563,"className":"TSP04_122_EVENT_NewChar01","name":"[Event] Asio Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":380,"minAtk":3276,"maxAtk":6084},{"itemId":635565,"className":"TSF04_120_EVENT_NewChar01","name":"[Event] Asio Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":380,"mAtk":4680},{"itemId":635567,"className":"RAP04_115_EVENT_NewChar01","name":"[Event] Asio Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":380,"minAtk":3960,"maxAtk":3960},{"itemId":635568,"className":"CAN04_111_EVENT_NewChar01","name":"[Event] Asio Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":380,"minAtk":2340,"maxAtk":7020},{"itemId":635569,"className":"MUS04_111_EVENT_NewChar01","name":"[Event] Asio Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":380,"minAtk":3042,"maxAtk":6318,"addMaxAtk":572},{"itemId":635573,"className":"FOREVER_SWD05_103","name":"[4ever] Savinose Legva Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":400,"minAtk":5173,"maxAtk":5493},{"itemId":635574,"className":"FOREVER_TSW05_103","name":"[4ever] Savinose Legva Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":400,"minAtk":5042,"maxAtk":7563},{"itemId":635575,"className":"FOREVER_STF05_103","name":"[4ever] Savinose Legva Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":400,"mAtk":5333},{"itemId":635576,"className":"FOREVER_TBW05_103","name":"[4ever] Savinose Legva Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":400,"minAtk":5042,"maxAtk":7563},{"itemId":635577,"className":"FOREVER_BOW05_103","name":"[4ever] Savinose Legva Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":400,"minAtk":5173,"maxAtk":5493},{"itemId":635578,"className":"FOREVER_MAC05_103","name":"[4ever] Savinose Legva Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":400,"minAtk":5279,"maxAtk":5386,"mAtk":5333},{"itemId":635579,"className":"FOREVER_TMAC05_105","name":"[4ever] Savinose Legva Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":400,"minAtk":5672,"maxAtk":6933,"mAtk":6302},{"itemId":635580,"className":"FOREVER_SPR05_103","name":"[4ever] Savinose Legva Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":400,"minAtk":4800,"maxAtk":5866},{"itemId":635581,"className":"FOREVER_TSP05_103","name":"[4ever] Savinose Legva Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":400,"minAtk":4412,"maxAtk":8193},{"itemId":635582,"className":"FOREVER_TSF05_103","name":"[4ever] Savinose Legva Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":400,"mAtk":6302},{"itemId":635583,"className":"FOREVER_RAP05_103","name":"[4ever] Savinose Legva Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":400,"minAtk":5333,"maxAtk":5333},{"itemId":635584,"className":"FOREVER_CAN05_105","name":"[4ever] Savinose Legva Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":400,"minAtk":3151,"maxAtk":9454},{"itemId":635585,"className":"FOREVER_MUS05_103","name":"[4ever] Savinose Legva Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":400,"minAtk":4097,"maxAtk":8508},{"itemId":635601,"className":"2020NEWYEAR_SWD05_103","name":"[Blossom Pack] Savinose Legva Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":400,"minAtk":5173,"maxAtk":5493},{"itemId":635602,"className":"2020NEWYEAR_TSW05_103","name":"[Blossom Pack] Savinose Legva Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":400,"minAtk":5042,"maxAtk":7563},{"itemId":635603,"className":"2020NEWYEAR_STF05_103","name":"[Blossom Pack] Savinose Legva Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":400,"mAtk":5333},{"itemId":635604,"className":"2020NEWYEAR_TBW05_103","name":"[Blossom Pack] Savinose Legva Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":400,"minAtk":5042,"maxAtk":7563},{"itemId":635605,"className":"2020NEWYEAR_BOW05_103","name":"[Blossom Pack] Savinose Legva Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":400,"minAtk":5173,"maxAtk":5493},{"itemId":635606,"className":"2020NEWYEAR_MAC05_103","name":"[Blossom Pack] Savinose Legva Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":400,"minAtk":5279,"maxAtk":5386,"mAtk":5333},{"itemId":635607,"className":"2020NEWYEAR_TMAC05_105","name":"[Blossom Pack] Savinose Legva Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":400,"minAtk":5672,"maxAtk":6933,"mAtk":6302},{"itemId":635608,"className":"2020NEWYEAR_SPR05_103","name":"[Blossom Pack] Savinose Legva Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":400,"minAtk":4800,"maxAtk":5866},{"itemId":635609,"className":"2020NEWYEAR_TSP05_103","name":"[Blossom Pack] Savinose Legva Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":400,"minAtk":4412,"maxAtk":8193},{"itemId":635610,"className":"2020NEWYEAR_TSF05_103","name":"[Blossom Pack] Savinose Legva Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":400,"mAtk":6302},{"itemId":635611,"className":"2020NEWYEAR_RAP05_103","name":"[Blossom Pack] Savinose Legva Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":400,"minAtk":5333,"maxAtk":5333},{"itemId":635612,"className":"2020NEWYEAR_CAN05_105","name":"[Blossom Pack] Savinose Legva Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":400,"minAtk":3151,"maxAtk":9454},{"itemId":635613,"className":"2020NEWYEAR_MUS05_103","name":"[Blossom Pack] Savinose Legva Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":400,"minAtk":4097,"maxAtk":8508},{"itemId":636000,"className":"T_SWD01_137","name":"[Kupole] Badelaire","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":1613,"maxAtk":1713},{"itemId":636001,"className":"T_TSW01_129","name":"[Kupole] Katzbalger","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":1572,"maxAtk":2359},{"itemId":636002,"className":"T_STF01_137","name":"[Kupole] Alter Rod","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":1663},{"itemId":636003,"className":"T_TBW01_137","name":"[Kupole] Siege Bow","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":1572,"maxAtk":2359},{"itemId":636004,"className":"T_BOW01_130","name":"[Kupole] Fedimian Turret","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":1613,"maxAtk":1713},{"itemId":636005,"className":"T_MAC01_136","name":"[Kupole] Fedimian Club","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":1647,"maxAtk":1680,"mAtk":1663},{"itemId":636006,"className":"T_SPR01_119","name":"[Kupole] Alchupiz","type":"Equip","group":"Weapon","weight":135,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":1497,"maxAtk":1830},{"itemId":636007,"className":"T_TSP01_111","name":"[Kupole] Royal Partisan","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":1376,"maxAtk":2555},{"itemId":636008,"className":"T_TSF01_129","name":"[Kupole] Drake Staff","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":1966},{"itemId":636009,"className":"T_RAP01_103","name":"[Kupole] Rapier","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":1663,"maxAtk":1663},{"itemId":636026,"className":"T_CAN100_101","name":"[Kupole] Superior Cannon","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":983,"maxAtk":2948},{"itemId":636028,"className":"T_MUS100_101","name":"[Kupole] Superior Musket","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":1278,"maxAtk":2654},{"itemId":636029,"className":"T_SWD03_120","name":"[Kupole] Pierene Sword","type":"Equip","group":"Weapon","weight":145,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":2808,"maxAtk":2982,"addMDef":330},{"itemId":636030,"className":"T_TSW03_120","name":"[Kupole] Gale Slasher","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":2737,"maxAtk":4106,"pAtk":111,"addMinAtk":358},{"itemId":636031,"className":"T_STF03_120","name":"[Kupole] Windia Rod","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":2895},{"itemId":636032,"className":"T_TSF03_120","name":"[Kupole] Vienarazis Staff","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":3421},{"itemId":636033,"className":"T_TBW03_120","name":"[Kupole] Aufgowle Bow","type":"Equip","group":"Weapon","weight":240,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":2737,"maxAtk":4106,"addMinAtk":148,"addMaxAtk":246},{"itemId":636034,"className":"T_BOW03_202","name":"[Kupole] Silver Hook","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":2808,"maxAtk":2982,"addMinAtk":102,"addMaxAtk":211},{"itemId":636035,"className":"T_MAC03_204","name":"[Kupole] Vienarazis Mace","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":2866,"maxAtk":2924,"mAtk":2895,"addMinAtk":168,"addMaxAtk":320},{"itemId":636036,"className":"T_TMAC03_106","name":"[Kupole] Vienarazis Two-handed Mace","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":3079,"maxAtk":3763,"mAtk":3421,"addMinAtk":202,"addMaxAtk":384},{"itemId":636037,"className":"T_SPR03_115","name":"[Kupole] Pygry Spear","type":"Equip","group":"Weapon","weight":110,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":2605,"maxAtk":3184},{"itemId":636038,"className":"T_TSP03_115","name":"[Kupole] Sacmet","type":"Equip","group":"Weapon","weight":205,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":2395,"maxAtk":4448},{"itemId":636039,"className":"T_RAP03_305","name":"[Kupole] Elga Rapier","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":2895,"maxAtk":2895},{"itemId":636040,"className":"T_MUS03_104","name":"[Kupole] Dragoon Piper","type":"Equip","group":"Weapon","weight":158,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":2224,"maxAtk":4619,"addMinAtk":75,"addMaxAtk":115,"addDef":-13},{"itemId":636042,"className":"T_CAN03_101","name":"[Kupole] Lion Head Cannon","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":1711,"maxAtk":5132},{"itemId":636045,"className":"SWD04_117_NEWCHARACTER_KU","name":"[Kupole] Masinios Sword","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":350,"minAtk":3541,"maxAtk":3760},{"itemId":636046,"className":"TSW04_117_NEWCHARACTER_KU","name":"[Kupole] Masinios Two-handed Sword","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":350,"minAtk":3451,"maxAtk":5177},{"itemId":636047,"className":"STF04_118_NEWCHARACTER_KU","name":"[Kupole] Masinios Rod","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":350,"mAtk":3651},{"itemId":636048,"className":"TBW04_117_NEWCHARACTER_KU","name":"[Kupole] Masinios Bow","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":350,"minAtk":3451,"maxAtk":5177},{"itemId":636049,"className":"BOW04_117_NEWCHARACTER_KU","name":"[Kupole] Masinios Crossbow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":350,"minAtk":3541,"maxAtk":3760},{"itemId":636050,"className":"MAC04_119_NEWCHARACTER_KU","name":"[Kupole] Masinios Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":350,"minAtk":3614,"maxAtk":3687,"mAtk":3651},{"itemId":636051,"className":"TMAC04_108_NEWCHARACTER_KU","name":"[Kupole] Masinios Two-handed Mace","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":350,"minAtk":3883,"maxAtk":4746,"mAtk":4314},{"itemId":636053,"className":"SPR04_118_NEWCHARACTER_KU","name":"[Kupole] Masinios Spear","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":350,"minAtk":3286,"maxAtk":4016},{"itemId":636054,"className":"TSP04_119_NEWCHARACTER_KU","name":"[Kupole] Masinios Pike","type":"Equip","group":"Weapon","weight":290,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":350,"minAtk":3020,"maxAtk":5609},{"itemId":636056,"className":"TSF04_117_NEWCHARACTER_KU","name":"[Kupole] Masinios Staff","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":350,"mAtk":4314},{"itemId":636058,"className":"RAP04_112_NEWCHARACTER_KU","name":"[Kupole] Masinios Rapier","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":350,"minAtk":3651,"maxAtk":3651},{"itemId":636059,"className":"CAN04_108_NEWCHARACTER_KU","name":"[Kupole] Masinios Cannon","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":350,"minAtk":2157,"maxAtk":6472,"addMaxAtk":314},{"itemId":636060,"className":"MUS04_108_NEWCHARACTER_KU","name":"[Kupole] Masinios Musket","type":"Equip","group":"Weapon","weight":155,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":350,"minAtk":2804,"maxAtk":5824,"addMinAtk":-77,"addMaxAtk":777},{"itemId":636100,"className":"PC_SWD01_137","name":"ITEM_20230425_028537","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":64,"maxAtk":68,"script":{"strArg":"PC_Equip"}},{"itemId":636101,"className":"PC_TSW01_129","name":"ITEM_20230425_028539","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":62,"maxAtk":94,"script":{"strArg":"PC_Equip"}},{"itemId":636102,"className":"PC_STF01_137","name":"ITEM_20230425_028540","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":66,"script":{"strArg":"PC_Equip"}},{"itemId":636103,"className":"PC_TBW01_137","name":"ITEM_20230425_028541","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":62,"maxAtk":94,"script":{"strArg":"PC_Equip"}},{"itemId":636104,"className":"PC_BOW01_130","name":"ITEM_20230425_028542","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":64,"maxAtk":68,"script":{"strArg":"PC_Equip"}},{"itemId":636105,"className":"PC_MAC01_136","name":"ITEM_20230425_028543","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":65,"maxAtk":67,"mAtk":66,"script":{"strArg":"PC_Equip"}},{"itemId":636106,"className":"PC_SPR01_119","name":"ITEM_20230425_028544","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":59,"maxAtk":73,"script":{"strArg":"PC_Equip"}},{"itemId":636107,"className":"PC_TSP01_111","name":"ITEM_20230425_028545","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":55,"maxAtk":101,"script":{"strArg":"PC_Equip"}},{"itemId":636108,"className":"PC_TSF01_129","name":"ITEM_20230425_028546","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":78,"script":{"strArg":"PC_Equip"}},{"itemId":636109,"className":"PC_RAP01_103","name":"ITEM_20230425_028547","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":66,"maxAtk":66,"script":{"strArg":"PC_Equip"}},{"itemId":636124,"className":"PC_CAN100_101","name":"ITEM_20230425_028562","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":39,"maxAtk":117,"script":{"strArg":"PC_Equip"}},{"itemId":636126,"className":"PC_MUS100_101","name":"ITEM_20230425_028564","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":51,"maxAtk":105,"script":{"strArg":"PC_Equip"}},{"itemId":636127,"className":"PC_TMAC02_103","name":"ITEM_20230425_028565","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":70,"maxAtk":86,"mAtk":78,"script":{"strArg":"PC_Equip"}},{"itemId":636200,"className":"ChangeJob_SWD01_137","name":"Sword","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"Growth_Item"}},{"itemId":636201,"className":"ChangeJob_TSW01_129","name":"Two-handed Sword","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"Growth_Item"}},{"itemId":636202,"className":"ChangeJob_STF01_137","name":"Rod","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"Growth_Item"}},{"itemId":636203,"className":"ChangeJob_TBW01_137","name":"Bow","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"Growth_Item"}},{"itemId":636204,"className":"ChangeJob_BOW01_130","name":"Crossbow","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"Growth_Item"}},{"itemId":636205,"className":"ChangeJob_MAC01_136","name":"Mace","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"Growth_Item"}},{"itemId":636206,"className":"ChangeJob_SPR01_119","name":"Spear","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"Growth_Item"}},{"itemId":636207,"className":"ChangeJob_TSP01_111","name":"Two-handed Spear","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"Growth_Item"}},{"itemId":636208,"className":"ChangeJob_TSF01_129","name":"Staff","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"Growth_Item"}},{"itemId":636209,"className":"ChangeJob_RAP01_103","name":"Rapier","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"Growth_Item"}},{"itemId":636224,"className":"ChangeJob_CAN100_101","name":"Cannon","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"Growth_Item"}},{"itemId":636226,"className":"ChangeJob_MUS100_101","name":"Musket","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"Growth_Item"}},{"itemId":636227,"className":"ChangeJob_TMAC02_103","name":"Two-handed Mace","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"Growth_Item"}},{"itemId":636300,"className":"NEWYEAR_WEAPON_SWD01_137","name":"[Wake Up] Sword","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":50,"maxAtk":53,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636301,"className":"NEWYEAR_WEAPON_TSW01_129","name":"[Wake Up] Two-handed Sword","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":49,"maxAtk":73,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636302,"className":"NEWYEAR_WEAPON_STF01_137","name":"[Wake Up] Rod","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":52,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636303,"className":"NEWYEAR_WEAPON_TBW01_137","name":"[Wake Up] Bow","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":49,"maxAtk":73,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636304,"className":"NEWYEAR_WEAPON_BOW01_130","name":"[Wake Up] Crossbow","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":50,"maxAtk":53,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636305,"className":"NEWYEAR_WEAPON_MAC01_136","name":"[Wake Up] Mace","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":51,"maxAtk":52,"mAtk":52,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636306,"className":"NEWYEAR_WEAPON_SPR01_119","name":"[Wake Up] Spear","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":46,"maxAtk":57,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636307,"className":"NEWYEAR_WEAPON_TSP01_111","name":"[Wake Up] Two-handed Spear","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":43,"maxAtk":79,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636308,"className":"NEWYEAR_WEAPON_TSF01_129","name":"[Wake Up] Staff","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":61,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636309,"className":"NEWYEAR_WEAPON_RAP01_103","name":"[Wake Up] Rapier","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":52,"maxAtk":52,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636312,"className":"NEWYEAR_WEAPON_CAN100_101","name":"[Wake Up] Cannon","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":30,"maxAtk":91,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636314,"className":"NEWYEAR_WEAPON_MUS100_101","name":"[Wake Up] Musket","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":40,"maxAtk":82,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636315,"className":"NEWYEAR_WEAPON_TMAC02_103","name":"[Wake Up] Two-handed Mace","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":55,"maxAtk":67,"mAtk":61,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636400,"className":"POPO_SHOP_3D_SWD01_137","name":"[Popo Shop] Sword (3 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":44,"maxAtk":47,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636401,"className":"POPO_SHOP_3D_TSW01_129","name":"[Popo Shop] Two-handed Sword (3 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":43,"maxAtk":64,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636402,"className":"POPO_SHOP_3D_STF01_137","name":"[Popo Shop] Rod (3 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":45,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636403,"className":"POPO_SHOP_3D_TBW01_137","name":"[Popo Shop] Bow (3 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":43,"maxAtk":64,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636404,"className":"POPO_SHOP_3D_BOW01_130","name":"[Popo Shop] Crossbow (3 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":44,"maxAtk":47,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636405,"className":"POPO_SHOP_3D_MAC01_136","name":"[Popo Shop] Mace (3 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":45,"maxAtk":46,"mAtk":45,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636406,"className":"POPO_SHOP_3D_SPR01_119","name":"[Popo Shop] Spear (3 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":41,"maxAtk":50,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636407,"className":"POPO_SHOP_3D_TSP01_111","name":"[Popo Shop] Two-handed Spear (3 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":38,"maxAtk":70,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636408,"className":"POPO_SHOP_3D_TSF01_129","name":"[Popo Shop] Staff (3 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":54,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636409,"className":"POPO_SHOP_3D_RAP01_103","name":"[Popo Shop] Rapier (3 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":45,"maxAtk":45,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636412,"className":"POPO_SHOP_3D_CAN100_101","name":"[Popo Shop] Cannon (3 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":27,"maxAtk":80,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636414,"className":"POPO_SHOP_3D_MUS100_101","name":"[Popo Shop] Musket (3 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":35,"maxAtk":72,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636415,"className":"POPO_SHOP_3D_TMAC02_103","name":"[Popo Shop] Two-handed Mace (3 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":48,"maxAtk":59,"mAtk":54,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636450,"className":"POPO_SHOP_7D_SWD01_137","name":"[Popo Shop] Sword (7 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":44,"maxAtk":47,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636451,"className":"POPO_SHOP_7D_TSW01_129","name":"[Popo Shop] Two-handed Sword (7 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":43,"maxAtk":64,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636452,"className":"POPO_SHOP_7D_STF01_137","name":"[Popo Shop] Rod (7 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":45,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636453,"className":"POPO_SHOP_7D_TBW01_137","name":"[Popo Shop] Bow (7 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":43,"maxAtk":64,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636454,"className":"POPO_SHOP_7D_BOW01_130","name":"[Popo Shop] Crossbow (7 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":44,"maxAtk":47,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636455,"className":"POPO_SHOP_7D_MAC01_136","name":"[Popo Shop] Mace (7 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":45,"maxAtk":46,"mAtk":45,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636456,"className":"POPO_SHOP_7D_SPR01_119","name":"[Popo Shop] Spear (7 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":41,"maxAtk":50,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636457,"className":"POPO_SHOP_7D_TSP01_111","name":"[Popo Shop] Two-handed Spear (7 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":38,"maxAtk":70,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636458,"className":"POPO_SHOP_7D_TSF01_129","name":"[Popo Shop] Staff (7 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":54,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636459,"className":"POPO_SHOP_7D_RAP01_103","name":"[Popo Shop] Rapier (7 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":45,"maxAtk":45,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636462,"className":"POPO_SHOP_7D_CAN100_101","name":"[Popo Shop] Cannon (7 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":27,"maxAtk":80,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636464,"className":"POPO_SHOP_7D_MUS100_101","name":"[Popo Shop] Musket (7 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":35,"maxAtk":72,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636465,"className":"POPO_SHOP_7D_TMAC02_103","name":"[Popo Shop] Two-handed Mace (7 Days)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":48,"maxAtk":59,"mAtk":54,"script":{"strArg":"Growth_Item_Rare"}},{"itemId":636500,"className":"STEAM_TO_BEGIN_1_SWD04_121","name":"To begin: Sword","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":50,"maxAtk":53,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636501,"className":"STEAM_TO_BEGIN_1_TSW04_121","name":"To begin: Two-handed Sword","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":49,"maxAtk":73,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636502,"className":"STEAM_TO_BEGIN_1_STF04_122","name":"To begin: Rod","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":52,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636503,"className":"STEAM_TO_BEGIN_1_TBW04_121","name":"To begin: Bow","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":49,"maxAtk":73,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636504,"className":"STEAM_TO_BEGIN_1_BOW04_121","name":"To begin: Crossbow","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":50,"maxAtk":53,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636505,"className":"STEAM_TO_BEGIN_1_MAC04_123","name":"To begin: Mace","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":51,"maxAtk":52,"mAtk":52,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636506,"className":"STEAM_TO_BEGIN_1_SPR04_122","name":"To begin: Spear","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":46,"maxAtk":57,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636507,"className":"STEAM_TO_BEGIN_1_TSP04_123","name":"To begin: Pike","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":43,"maxAtk":79,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636508,"className":"STEAM_TO_BEGIN_1_TSF04_121","name":"To begin: Staff","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":61,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636509,"className":"STEAM_TO_BEGIN_1_RAP04_118","name":"To begin: Rapier","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":52,"maxAtk":52,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636512,"className":"STEAM_TO_BEGIN_1_CAN04_113","name":"To begin: Cannon","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":30,"maxAtk":91,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636514,"className":"STEAM_TO_BEGIN_1_MUS04_113","name":"To begin: Musket","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":40,"maxAtk":82,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636515,"className":"STEAM_TO_BEGIN_1_TMAC04_112","name":"To begin: Two-handed Mace","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":55,"maxAtk":67,"mAtk":61,"script":{"strArg":"Growth_Item_Unique"}},{"itemId":636601,"className":"PVP_SWD05_103","name":"Savinose Legva Sword (20 min)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":5173,"maxAtk":5493,"script":{"strArg":"pvp_Mine"}},{"itemId":636602,"className":"PVP_TSW05_103","name":"Savinose Legva Two-handed Sword (20 min)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":5042,"maxAtk":7563,"script":{"strArg":"pvp_Mine"}},{"itemId":636603,"className":"PVP_STF05_103","name":"Savinose Legva Rod (20 min)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":5333,"script":{"strArg":"pvp_Mine"}},{"itemId":636604,"className":"PVP_TBW05_103","name":"Savinose Legva Bow (20 min)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":5042,"maxAtk":7563,"script":{"strArg":"pvp_Mine"}},{"itemId":636605,"className":"PVP_BOW05_103","name":"Savinose Legva Crossbow (20 min)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":5173,"maxAtk":5493,"script":{"strArg":"pvp_Mine"}},{"itemId":636606,"className":"PVP_MAC05_103","name":"Savinose Legva Mace (20 min)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":5279,"maxAtk":5386,"mAtk":5333,"script":{"strArg":"pvp_Mine"}},{"itemId":636607,"className":"PVP_TMAC05_105","name":"Savinose Legva Two-handed Mace (20 min)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":5672,"maxAtk":6933,"mAtk":6302,"script":{"strArg":"pvp_Mine"}},{"itemId":636608,"className":"PVP_SPR05_103","name":"Savinose Legva Spear (20 min)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":4800,"maxAtk":5866,"script":{"strArg":"pvp_Mine"}},{"itemId":636609,"className":"PVP_TSP05_103","name":"Savinose Legva Pike (20 min)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":4412,"maxAtk":8193,"script":{"strArg":"pvp_Mine"}},{"itemId":636610,"className":"PVP_TSF05_103","name":"Savinose Legva Staff (20 min)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":6302,"script":{"strArg":"pvp_Mine"}},{"itemId":636611,"className":"PVP_RAP05_103","name":"Savinose Legva Rapier (20 min)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":5333,"maxAtk":5333,"script":{"strArg":"pvp_Mine"}},{"itemId":636612,"className":"PVP_CAN05_105","name":"Savinose Legva Cannon (20 min)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":3151,"maxAtk":9454,"script":{"strArg":"pvp_Mine"}},{"itemId":636613,"className":"PVP_MUS05_103","name":"Savinose Legva Musket (20 min)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":4097,"maxAtk":8508,"script":{"strArg":"pvp_Mine"}},{"itemId":636646,"className":"PVP_SWD04_126","name":"Vaivora Sword - Echo (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":4341,"maxAtk":4610,"script":{"strArg":"pvp_Mine"}},{"itemId":636647,"className":"PVP_TSW04_126","name":"Vaivora Two-handed Sword - Florescence (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":4231,"maxAtk":6347,"script":{"strArg":"pvp_Mine"}},{"itemId":636648,"className":"PVP_STF04_127","name":"Vaivora Rod - Time Rush (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":4476,"script":{"strArg":"pvp_Mine"}},{"itemId":636649,"className":"PVP_TBW04_126","name":"Vaivora Bow - Reinforced Bowstring (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":4231,"maxAtk":6347,"script":{"strArg":"pvp_Mine"}},{"itemId":636650,"className":"PVP_BOW04_126","name":"Vaivora Crossbow - Double Marking (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":4341,"maxAtk":4610,"script":{"strArg":"pvp_Mine"}},{"itemId":636651,"className":"PVP_MAC04_129","name":"Vaivora Mace - Mass Heal: Freeze (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":4431,"maxAtk":4520,"mAtk":4476,"script":{"strArg":"pvp_Mine"}},{"itemId":636652,"className":"PVP_TMAC04_118","name":"Vaivora Two-handed Mace - Convict (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":4760,"maxAtk":5818,"mAtk":5289,"script":{"strArg":"pvp_Mine"}},{"itemId":636654,"className":"PVP_SPR04_127","name":"Vaivora Spear - Rete Shooter (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":4028,"maxAtk":4923,"script":{"strArg":"pvp_Mine"}},{"itemId":636655,"className":"PVP_TSP04_128","name":"Vaivora Pike - Halberd (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":3703,"maxAtk":6876,"script":{"strArg":"pvp_Mine"}},{"itemId":636657,"className":"PVP_TSF04_129","name":"Vaivora Staff - Stone-slinger (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":5289,"script":{"strArg":"pvp_Mine"}},{"itemId":636659,"className":"PVP_RAP04_124","name":"Vaivora Rapier - Leventador (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":4476,"maxAtk":4476,"aries":990,"script":{"strArg":"pvp_Mine"}},{"itemId":636660,"className":"PVP_CAN04_118","name":"Vaivora Cannon - Cannon Hold (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":2645,"maxAtk":7934,"addMinAtk":1780,"script":{"strArg":"pvp_Mine"}},{"itemId":636661,"className":"PVP_MUS04_118","name":"Vaivora Musket - Armor-piercing Shell (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":3438,"maxAtk":7141,"addMaxAtk":1025,"script":{"strArg":"pvp_Mine"}},{"itemId":636663,"className":"PVP_SWD04_126_1","name":"Vaivora Sword - Slash Space (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":4341,"maxAtk":4610,"script":{"strArg":"pvp_Mine"}},{"itemId":636664,"className":"PVP_TSP04_128_1","name":"Vaivora Pike - Grind (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":3703,"maxAtk":6876,"script":{"strArg":"pvp_Mine"}},{"itemId":636665,"className":"PVP_TSF04_129_1","name":"Vaivora Staff - Diffuse Reflection (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":5289,"script":{"strArg":"pvp_Mine"}},{"itemId":636667,"className":"PVP_TSF04_129_2","name":"Vaivora Staff - Fire Bolt (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":5289,"script":{"strArg":"pvp_Mine"}},{"itemId":636668,"className":"PVP_STF04_127_1","name":"Vaivora Rod - Wicked Desire (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":4476,"addMAtk":590,"script":{"strArg":"pvp_Mine"}},{"itemId":636669,"className":"PVP_MAC04_129_1","name":"Vaivora Mace - Sacred Armor (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":4431,"maxAtk":4520,"mAtk":4476,"script":{"strArg":"pvp_Mine"}},{"itemId":636670,"className":"PVP_TMAC04_118_1","name":"Vaivora Two-handed Mace - Outrage (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":4760,"maxAtk":5818,"mAtk":5289,"script":{"strArg":"pvp_Mine"}},{"itemId":636674,"className":"PVP_TBW04_126_1","name":"Vaivora Bow - Orbital Arrow (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":4231,"maxAtk":6347,"script":{"strArg":"pvp_Mine"}},{"itemId":636675,"className":"PVP_SWD04_126_2","name":"Vaivora Sword - Saber (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":4341,"maxAtk":4610,"slash":992,"script":{"strArg":"pvp_Mine"}},{"itemId":636676,"className":"PVP_STF04_127_2","name":"Vaivora Rod - Icy Snow Bubble (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":4476,"script":{"strArg":"pvp_Mine"}},{"itemId":636677,"className":"PVP_TSW04_126_1","name":"Vaivora Two-handed Sword - Dual Sword (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":4231,"maxAtk":6347,"script":{"strArg":"pvp_Mine"}},{"itemId":636678,"className":"PVP_SPR04_127_1","name":"Vaivora Spear - Javelin (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":4028,"maxAtk":4923,"aries":990,"script":{"strArg":"pvp_Mine"}},{"itemId":636679,"className":"PVP_MUS04_118_1","name":"Vaivora Musket - Triple Steps Single Shot (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":3438,"maxAtk":7141,"script":{"strArg":"pvp_Mine"}},{"itemId":636680,"className":"PVP_TMAC04_118_2","name":"Vaivora Two-handed Mace - Desition (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":4760,"maxAtk":5818,"mAtk":5289,"script":{"strArg":"pvp_Mine"}},{"itemId":636681,"className":"PVP_SWD04_126_3","name":"Vaivora Sword - Coordination (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":4341,"maxAtk":4610,"script":{"strArg":"pvp_Mine"}},{"itemId":636701,"className":"Event_SWD05_104","name":"[Moonlight] Skiaclipse Varna Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":400,"minAtk":5173,"maxAtk":5493},{"itemId":636702,"className":"Event_TSW05_104","name":"[Moonlight] Skiaclipse Varna Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":400,"minAtk":5042,"maxAtk":7563},{"itemId":636703,"className":"Event_STF05_104","name":"[Moonlight] Skiaclipse Varna Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":400,"mAtk":5333},{"itemId":636704,"className":"Event_TBW05_104","name":"[Moonlight] Skiaclipse Varna Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":400,"minAtk":5042,"maxAtk":7563},{"itemId":636705,"className":"Event_BOW05_104","name":"[Moonlight] Skiaclipse Varna Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":400,"minAtk":5173,"maxAtk":5493},{"itemId":636706,"className":"Event_MAC05_104","name":"[Moonlight] Skiaclipse Varna Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":400,"minAtk":5279,"maxAtk":5386,"mAtk":5333},{"itemId":636707,"className":"Event_TMAC05_106","name":"[Moonlight] Skiaclipse Varna Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":400,"minAtk":5672,"maxAtk":6933,"mAtk":6302},{"itemId":636709,"className":"Event_SPR05_104","name":"[Moonlight] Skiaclipse Varna Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":400,"minAtk":4800,"maxAtk":5866},{"itemId":636710,"className":"Event_TSP05_104","name":"[Moonlight] Skiaclipse Varna Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":400,"minAtk":4412,"maxAtk":8193},{"itemId":636712,"className":"Event_TSF05_104","name":"[Moonlight] Skiaclipse Varna Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":400,"mAtk":6302},{"itemId":636714,"className":"Event_RAP05_104","name":"[Moonlight] Skiaclipse Varna Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":400,"minAtk":5333,"maxAtk":5333},{"itemId":636715,"className":"Event_CAN05_106","name":"[Moonlight] Skiaclipse Varna Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":400,"minAtk":3151,"maxAtk":9454},{"itemId":636716,"className":"Event_MUS05_104","name":"[Moonlight] Skiaclipse Varna Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":400,"minAtk":4097,"maxAtk":8508},{"itemId":636801,"className":"NEWYEAR_WEAPON_SWD01_138","name":"[Harvest] Sword","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":64,"maxAtk":68,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":636802,"className":"NEWYEAR_WEAPON_TSW01_130","name":"[Harvest] Two-handed Sword","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":62,"maxAtk":94,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":636803,"className":"NEWYEAR_WEAPON_STF01_138","name":"[Harvest] Rod","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":66,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":636804,"className":"NEWYEAR_WEAPON_TBW01_138","name":"[Harvest] Bow","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":62,"maxAtk":94,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":636805,"className":"NEWYEAR_WEAPON_BOW01_131","name":"[Harvest] Crossbow","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":64,"maxAtk":68,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":636806,"className":"NEWYEAR_WEAPON_MAC01_137","name":"[Harvest] Mace","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":65,"maxAtk":67,"mAtk":66,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":636807,"className":"NEWYEAR_WEAPON_SPR01_120","name":"[Harvest] Spear","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":59,"maxAtk":73,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":636808,"className":"NEWYEAR_WEAPON_TSP01_112","name":"[Harvest] Two-handed Spear","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":55,"maxAtk":101,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":636809,"className":"NEWYEAR_WEAPON_TSF01_130","name":"[Harvest] Staff","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":78,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":636810,"className":"NEWYEAR_WEAPON_RAP01_104","name":"[Harvest] Rapier","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":66,"maxAtk":66,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":636813,"className":"NEWYEAR_WEAPON_CAN100_102","name":"[Harvest] Cannon","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":39,"maxAtk":117,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":636815,"className":"NEWYEAR_WEAPON_MUS100_102","name":"[Harvest] Musket","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":51,"maxAtk":105,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":636816,"className":"NEWYEAR_WEAPON_TMAC02_104","name":"[Harvest] Two-handed Mace","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":70,"maxAtk":86,"mAtk":78,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":636913,"className":"Grimoire_SWD04_120","name":"[Event] Asio Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":380,"minAtk":3841,"maxAtk":4079},{"itemId":636914,"className":"Grimoire_STF04_120","name":"[Event] Asio Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":380,"mAtk":3960,"addMDef":325},{"itemId":636919,"className":"Grimoire_TSW04_120","name":"[Event] Asio Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":380,"minAtk":3744,"maxAtk":5616},{"itemId":636920,"className":"Grimoire_TBW04_120","name":"[Event] Asio Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":380,"minAtk":3744,"maxAtk":5616},{"itemId":636921,"className":"Grimoire_BOW04_120","name":"[Event] Asio Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":380,"minAtk":3841,"maxAtk":4079},{"itemId":636922,"className":"Grimoire_MAC04_122","name":"[Event] Asio Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":380,"minAtk":3920,"maxAtk":4000,"mAtk":3960},{"itemId":636923,"className":"Grimoire_TMAC04_111","name":"[Event] Asio Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":380,"minAtk":4212,"maxAtk":5148,"mAtk":4680},{"itemId":636925,"className":"Grimoire_SPR04_121","name":"[Event] Asio Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":380,"minAtk":3564,"maxAtk":4356},{"itemId":636926,"className":"Grimoire_TSP04_122","name":"[Event] Asio Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":380,"minAtk":3276,"maxAtk":6084},{"itemId":636928,"className":"Grimoire_TSF04_120","name":"[Event] Asio Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":380,"mAtk":4680},{"itemId":636930,"className":"Grimoire_RAP04_115","name":"[Event] Asio Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":380,"minAtk":3960,"maxAtk":3960},{"itemId":636931,"className":"Grimoire_CAN04_111","name":"[Event] Asio Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":380,"minAtk":2340,"maxAtk":7020},{"itemId":636932,"className":"Grimoire_MUS04_111","name":"[Event] Asio Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":380,"minAtk":3042,"maxAtk":6318,"addMaxAtk":572},{"itemId":636933,"className":"Grimoire_SWD04_119","name":"[Event] Wastrel Zvaigzde Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":380,"minAtk":3841,"maxAtk":4079,"addDef":248,"strike":325},{"itemId":636934,"className":"Grimoire_TSW04_119","name":"[Event] Wastrel Zvaigzde Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":380,"minAtk":3744,"maxAtk":5616},{"itemId":636935,"className":"Grimoire_STF04_121","name":"[Event] Wastrel Zvaigzde Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":380,"mAtk":3960,"addMAtk":232,"addDef":325},{"itemId":636936,"className":"Grimoire_TBW04_119","name":"[Event] Wastrel Zvaigzde Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":380,"minAtk":3744,"maxAtk":5616},{"itemId":636937,"className":"Grimoire_BOW04_119","name":"[Event] Wastrel Zvaigzde Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":380,"minAtk":3841,"maxAtk":4079,"addMinAtk":152,"addMaxAtk":352},{"itemId":636938,"className":"Grimoire_MAC04_121","name":"[Event] Wastrel Zvaigzde Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":380,"minAtk":3920,"maxAtk":4000,"mAtk":3960},{"itemId":636939,"className":"Grimoire_TMAC04_110","name":"[Event] Wastrel Zvaigzde Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":380,"minAtk":4212,"maxAtk":5148,"mAtk":4680},{"itemId":636941,"className":"Grimoire_SPR04_120","name":"[Event] Wastrel Zvaigzde Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":380,"minAtk":3564,"maxAtk":4356},{"itemId":636942,"className":"Grimoire_TSP04_121","name":"[Event] Wastrel Zvaigzde Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":380,"minAtk":3276,"maxAtk":6084},{"itemId":636944,"className":"Grimoire_TSF04_19","name":"[Event] Wastrel Zvaigzde Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":380,"mAtk":4680},{"itemId":636946,"className":"Grimoire_RAP04_114","name":"[Event] Wastrel Zvaigzde Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":380,"minAtk":3960,"maxAtk":3960,"pAtk":132},{"itemId":636947,"className":"Grimoire_CAN04_110","name":"[Event] Wastrel Zvaigzde Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":380,"minAtk":2340,"maxAtk":7020},{"itemId":636978,"className":"Grimoire_MUS04_110","name":"[Event] Wastrel Zvaigzde Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":380,"minAtk":3042,"maxAtk":6318,"addMaxAtk":732},{"itemId":639701,"className":"SWD02_109_QUEST_REWARD","name":"Kedoran Cheminis Sword","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":40,"minAtk":387,"maxAtk":411},{"itemId":639702,"className":"TSW03_107_QUEST_REWARD","name":"Kedoran Chapparition Two-handed Sword","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":5824,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":40,"minAtk":378,"maxAtk":566},{"itemId":639703,"className":"STF03_105_QUEST_REWARD","name":"Kedoran Chapparition Rod","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":40,"mAtk":399},{"itemId":639704,"className":"TSF02_119_QUEST_REWARD","name":"Kedoran Patrice Staff","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":5824,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":40,"mAtk":472},{"itemId":639705,"className":"TBW03_106_QUEST_REWARD","name":"Kedoran Chapparition Bow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":5824,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":40,"minAtk":378,"maxAtk":566},{"itemId":639706,"className":"BOW03_105_QUEST_REWARD","name":"Kedoran Chapparition Shooter","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":40,"minAtk":387,"maxAtk":411},{"itemId":639707,"className":"MAC03_107_QUEST_REWARD","name":"Kedoran Chapparition Mace","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":40,"minAtk":395,"maxAtk":403,"mAtk":399},{"itemId":639708,"className":"SPR03_101_QUEST_REWARD","name":"Kedoran Silver Spear","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":40,"minAtk":359,"maxAtk":439,"addMDef":39},{"itemId":639709,"className":"TSP02_103_QUEST_REWARD","name":"Kedoran Cheminis Pike","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":5824,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":40,"minAtk":330,"maxAtk":613},{"itemId":639710,"className":"RAP01_112_QUEST_REWARD","name":"Kedoran Dunkel Rapier","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":3640,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":40,"minAtk":399,"maxAtk":399},{"itemId":639712,"className":"TMAC01_101_QUEST_REWARD","name":"Kedoran Two-handed Battle Maul","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":5824,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":40,"minAtk":425,"maxAtk":519,"mAtk":472},{"itemId":639714,"className":"CAN01_101_QUEST_REWARD","name":"Kedoran Cannon","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":5824,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":40,"minAtk":236,"maxAtk":708},{"itemId":639715,"className":"MUS01_101_QUEST_REWARD","name":"Kedoran Musket","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":5824,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":40,"minAtk":307,"maxAtk":637},{"itemId":639729,"className":"SWD03_102_QUEST_REWARD","name":"Kedoran Durandal","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":75,"minAtk":695,"maxAtk":738},{"itemId":639730,"className":"TSW03_101_QUEST_REWARD","name":"Kedoran Flamini","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":13732,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":75,"minAtk":678,"maxAtk":1017},{"itemId":639731,"className":"STF03_103_QUEST_REWARD","name":"Kedoran Secretum","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":75,"mAtk":717},{"itemId":639732,"className":"TSF03_101_QUEST_REWARD","name":"Kedoran Candle Staff","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":13732,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":75,"mAtk":847},{"itemId":639733,"className":"TBW03_103_QUEST_REWARD","name":"Kedoran Heart Seeker","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":13732,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":75,"minAtk":678,"maxAtk":1017},{"itemId":639734,"className":"BOW03_101_QUEST_REWARD","name":"Kedoran Shooting Star","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":75,"minAtk":695,"maxAtk":738},{"itemId":639735,"className":"MAC02_124_QUEST_REWARD","name":"Kedoran Escanciu Mace","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":75,"minAtk":710,"maxAtk":724,"mAtk":717},{"itemId":639736,"className":"SPR03_103_QUEST_REWARD","name":"Kedoran Doom Spear","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":75,"minAtk":645,"maxAtk":789},{"itemId":639737,"className":"TSP03_103_QUEST_REWARD","name":"Kedoran Laideca","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":13732,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":75,"minAtk":593,"maxAtk":1101},{"itemId":639738,"className":"RAP03_312_QUEST_REWARD","name":"Kedoran Sketis Rapier","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":8583,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":75,"minAtk":717,"maxAtk":717},{"itemId":639740,"className":"TMAC01_102_QUEST_REWARD","name":"Kedoran Two-handed Rune Mace","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":13732,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":75,"minAtk":763,"maxAtk":932,"mAtk":847},{"itemId":639742,"className":"CAN01_105_QUEST_REWARD","name":"Kedoran Critti Cannon","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":13732,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":75,"minAtk":424,"maxAtk":1271},{"itemId":639743,"className":"MUS03_101_QUEST_REWARD","name":"Kedoran Finisher","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":13732,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":75,"minAtk":551,"maxAtk":1144},{"itemId":639757,"className":"SWD03_103_QUEST_REWARD","name":"Kedoran Velniup","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":1092,"maxAtk":1159},{"itemId":639758,"className":"TSW03_113_QUEST_REWARD","name":"Kedoran Tilly Two-handed Sword","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":1064,"maxAtk":1596},{"itemId":639759,"className":"STF03_101_QUEST_REWARD","name":"Kedoran Temere","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":1125},{"itemId":639760,"className":"TSF03_103_QUEST_REWARD","name":"Kedoran Sunflower","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":1330,"iceRes":-59},{"itemId":639761,"className":"TBW03_101_QUEST_REWARD","name":"Kedoran Wildling Bane","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":1064,"maxAtk":1596},{"itemId":639762,"className":"BOW03_111_QUEST_REWARD","name":"Kedoran Seimos Crossbow","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":120,"minAtk":1092,"maxAtk":1159},{"itemId":639763,"className":"MAC03_111_QUEST_REWARD","name":"Kedoran Seimos Mace","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":1114,"maxAtk":1137,"mAtk":1125},{"itemId":639764,"className":"SPR03_107_QUEST_REWARD","name":"Kedoran Seimos Spear","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":1013,"maxAtk":1238},{"itemId":639765,"className":"TSP03_107_QUEST_REWARD","name":"Kedoran Seimos Pike","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":931,"maxAtk":1729},{"itemId":639766,"className":"RAP03_313_QUEST_REWARD","name":"Kedoran Dualist Rapier","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":120,"minAtk":1125,"maxAtk":1125},{"itemId":639768,"className":"TMAC02_103_QUEST_REWARD","name":"Kedoran Krendall Two-handed Mace","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":120,"minAtk":1197,"maxAtk":1463,"mAtk":1330},{"itemId":639770,"className":"CAN02_111_QUEST_REWARD","name":"Kedoran Reine Cannon","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":120,"minAtk":665,"maxAtk":1995},{"itemId":639771,"className":"MUS02_111_QUEST_REWARD","name":"Kedoran Crystaras Musket","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":120,"minAtk":864,"maxAtk":1795},{"itemId":639785,"className":"SWD03_105_QUEST_REWARD","name":"Kedoran Flame","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":170,"minAtk":1532,"maxAtk":1626},{"itemId":639786,"className":"TSW03_105_QUEST_REWARD","name":"Kedoran Hell and Heaven","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":170,"minAtk":1493,"maxAtk":2239,"pAtk":117,"addDef":-235},{"itemId":639787,"className":"STF03_111_QUEST_REWARD","name":"Kedoran Casti Rod","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":170,"mAtk":1579},{"itemId":639788,"className":"TSF03_105_QUEST_REWARD","name":"Kedoran Maledoom","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":170,"mAtk":1866},{"itemId":639789,"className":"TBW03_112_QUEST_REWARD","name":"Kedoran Casti Bow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":170,"minAtk":1493,"maxAtk":2239},{"itemId":639790,"className":"BOW03_108_QUEST_REWARD","name":"Kedoran Karacha Crossbow","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":170,"minAtk":1532,"maxAtk":1626},{"itemId":639791,"className":"MAC03_103_QUEST_REWARD","name":"Kedoran Drake Tail","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":170,"minAtk":1563,"maxAtk":1595,"mAtk":1579},{"itemId":639792,"className":"SPR03_109_QUEST_REWARD","name":"Kedoran Casti Spear","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":170,"minAtk":1421,"maxAtk":1737,"addMaxAtk":21},{"itemId":639793,"className":"TSP03_109_QUEST_REWARD","name":"Kedoran Magas Pike","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":170,"minAtk":1306,"maxAtk":2426,"addMinAtk":30},{"itemId":639794,"className":"RAP03_101_QUEST_REWARD","name":"Kedoran Duelist","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":24252,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":170,"minAtk":1579,"maxAtk":1579},{"itemId":639796,"className":"TMAC02_104_QUEST_REWARD","name":"Kedoran Reine Two-handed Mace","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":170,"minAtk":1680,"maxAtk":2053,"mAtk":1866},{"itemId":639798,"className":"CAN02_106_QUEST_REWARD","name":"Kedoran Pajoritas Cannon","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":170,"minAtk":933,"maxAtk":2799},{"itemId":639799,"className":"MUS02_106_QUEST_REWARD","name":"Kedoran Pajoritas Musket","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":38803,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":170,"minAtk":1213,"maxAtk":2519},{"itemId":639813,"className":"SWD03_116_QUEST_REWARD","name":"Kedora Pensara Sword","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":220,"minAtk":1972,"maxAtk":2094,"addMDef":28},{"itemId":639814,"className":"TSW03_117_QUEST_REWARD","name":"Kedoran Pensara Two-handed Sword","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":220,"minAtk":1922,"maxAtk":2883,"pAtk":57},{"itemId":639815,"className":"STF03_114_QUEST_REWARD","name":"Kedora Pensara Rod","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":220,"mAtk":2033},{"itemId":639816,"className":"TSF03_109_QUEST_REWARD","name":"Kedoran Power Staff","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":220,"mAtk":2402},{"itemId":639817,"className":"TBW03_109_QUEST_REWARD","name":"Kedoran Marksman","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":220,"minAtk":1922,"maxAtk":2883},{"itemId":639818,"className":"BOW03_110_QUEST_REWARD","name":"Kedoran Didel Grand Cross","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":220,"minAtk":1972,"maxAtk":2094},{"itemId":639819,"className":"MAC03_116_QUEST_REWARD","name":"Kedoran Pensara Mace","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":220,"minAtk":2012,"maxAtk":2053,"mAtk":2033,"addMDef":17},{"itemId":639820,"className":"SPR03_112_QUEST_REWARD","name":"Kedoran Pensara Spear","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":220,"minAtk":1830,"maxAtk":2236},{"itemId":639821,"className":"TSP03_112_QUEST_REWARD","name":"Kedoran Pensara Pike","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":220,"minAtk":1682,"maxAtk":3123},{"itemId":639822,"className":"RAP03_102_QUEST_REWARD","name":"Kedoran Spada","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":32673,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":220,"minAtk":2033,"maxAtk":2033,"pAtk":68},{"itemId":639824,"className":"TMAC02_105_QUEST_REWARD","name":"Kedoran Pajoritas Two-handed Mace","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":220,"minAtk":2162,"maxAtk":2643,"mAtk":2402},{"itemId":639826,"className":"CAN01_107_QUEST_REWARD","name":"Kedoran Erera Cannon","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":220,"minAtk":1201,"maxAtk":3604},{"itemId":639827,"className":"MUS02_107_QUEST_REWARD","name":"Kedoran Migantis Musket","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":52276,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":220,"minAtk":1562,"maxAtk":3243},{"itemId":639841,"className":"SWD04_109_QUEST_REWARD_NT","name":"Kedoran Abdochar","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":48800,"sellPrice":14780,"equipType1":"Sword","equipType2":"Sword","minLevel":315,"minAtk":3191,"maxAtk":3388,"addMaxAtk":158,"addDef":245},{"itemId":639842,"className":"TSW04_109_QUEST_REWARD_NT","name":"Kedoran Sarkmis","type":"Equip","group":"Weapon","weight":210,"maxStack":1,"price":78080,"sellPrice":23649,"equipType1":"THSword","equipType2":"Sword","minLevel":315,"minAtk":3110,"maxAtk":4665,"darkRes":180},{"itemId":639843,"className":"MAC04_111_QUEST_REWARD_NT","name":"Kedoran Skull Smasher","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":48800,"sellPrice":14780,"equipType1":"Mace","equipType2":"Mace","minLevel":315,"minAtk":3257,"maxAtk":3323,"mAtk":3290},{"itemId":639844,"className":"TSF04_109_QUEST_REWARD_NT","name":"Kedoran Regard Horn Staff","type":"Equip","group":"Weapon","weight":235,"maxStack":1,"price":78080,"sellPrice":23649,"equipType1":"THStaff","equipType2":"Staff","minLevel":315,"mAtk":3888},{"itemId":639845,"className":"STF04_110_QUEST_REWARD_NT","name":"Kedoran Heart of Glory","type":"Equip","group":"Weapon","weight":120,"maxStack":1,"price":48800,"sellPrice":14780,"equipType1":"Staff","equipType2":"Staff","minLevel":315,"mAtk":3290,"addDef":132},{"itemId":639846,"className":"TMAC04_101_QUEST_REWARD_NT","name":"Kedoran Skull Breaker","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":78080,"sellPrice":23649,"equipType1":"THMace","equipType2":"Mace","minLevel":315,"minAtk":3499,"maxAtk":4277,"mAtk":3888},{"itemId":639848,"className":"SPR04_110_QUEST_REWARD_NT","name":"Kedoran Wingshard Spear","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":48800,"sellPrice":17798,"equipType1":"Spear","equipType2":"Spear","minLevel":315,"minAtk":2961,"maxAtk":3619},{"itemId":639849,"className":"TSP04_111_QUEST_REWARD_NT","name":"Kedoran Regard Horn Pike","type":"Equip","group":"Weapon","weight":215,"maxStack":1,"price":78080,"sellPrice":20723,"equipType1":"THSpear","equipType2":"Spear","minLevel":315,"minAtk":2721,"maxAtk":5054},{"itemId":639850,"className":"RAP04_106_QUEST_REWARD_NT","name":"Kedoran Black Horn","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":48800,"sellPrice":11991,"equipType1":"Rapier","equipType2":"Sword","minLevel":315,"minAtk":3290,"maxAtk":3290},{"itemId":639851,"className":"BOW04_109_QUEST_REWARD_NT","name":"Kedoran Regard Horn Crossbow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":48800,"sellPrice":14780,"equipType1":"Bow","equipType2":"Bow","minLevel":315,"minAtk":3191,"maxAtk":3388},{"itemId":639852,"className":"TBW04_109_QUEST_REWARD_NT","name":"Kedoran Astra Bow","type":"Equip","group":"Weapon","weight":250,"maxStack":1,"price":78080,"sellPrice":23649,"equipType1":"THBow","equipType2":"Bow","minLevel":315,"minAtk":3110,"maxAtk":4665},{"itemId":639854,"className":"CAN04_103_QUEST_REWARD_NT","name":"Kedoran Emengard Cannon","type":"Equip","group":"Weapon","weight":200,"maxStack":1,"price":78080,"sellPrice":8868,"equipType1":"Cannon","equipType2":"Gun","minLevel":315,"minAtk":1944,"maxAtk":5832,"addMaxAtk":302},{"itemId":639855,"className":"MUS04_103_QUEST_REWARD_NT","name":"Kedoran Emengard Musket","type":"Equip","group":"Weapon","weight":172,"maxStack":1,"price":78080,"sellPrice":23649,"equipType1":"Musket","equipType2":"Gun","minLevel":315,"minAtk":2527,"maxAtk":5249},{"itemId":639857,"className":"SWD04_116_QUEST_REWARD","name":"Kedoran Raffye Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":350,"minAtk":3541,"maxAtk":3760},{"itemId":639858,"className":"TSW04_116_QUEST_REWARD","name":"Kedoran Raffye Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":350,"minAtk":3451,"maxAtk":5177},{"itemId":639859,"className":"MAC04_118_QUEST_REWARD","name":"Kedoran Raffye Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":350,"minAtk":3614,"maxAtk":3687,"mAtk":3651},{"itemId":639860,"className":"TSF04_116_QUEST_REWARD","name":"Kedoran Raffye Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":350,"mAtk":4314},{"itemId":639861,"className":"STF04_117_QUEST_REWARD","name":"Kedoran Raffye Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":350,"mAtk":3651},{"itemId":639862,"className":"TMAC04_107_QUEST_REWARD","name":"Kedoran Raffye Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":350,"minAtk":3883,"maxAtk":4746,"mAtk":4314},{"itemId":639864,"className":"SPR04_117_QUEST_REWARD","name":"Kedoran Raffye Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":350,"minAtk":3286,"maxAtk":4016},{"itemId":639865,"className":"TSP04_118_QUEST_REWARD","name":"Kedoran Raffye Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":350,"minAtk":3020,"maxAtk":5609},{"itemId":639866,"className":"RAP04_111_QUEST_REWARD","name":"Kedoran Raffye Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":350,"minAtk":3651,"maxAtk":3651},{"itemId":639867,"className":"BOW04_116_QUEST_REWARD","name":"Kedoran Raffye Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":55466,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":350,"minAtk":3541,"maxAtk":3760},{"itemId":639868,"className":"TBW04_116_QUEST_REWARD","name":"Kedoran Raffye Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":350,"minAtk":3451,"maxAtk":5177},{"itemId":639870,"className":"CAN04_107_QUEST_REWARD","name":"Kedoran Raffye Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":350,"minAtk":2157,"maxAtk":6472},{"itemId":639871,"className":"MUS04_107_QUEST_REWARD","name":"Kedoran Raffye Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":88745,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":350,"minAtk":2804,"maxAtk":5824},{"itemId":639873,"className":"SWD04_118_QUEST_REWARD","name":"Kedoran Zvaigzde Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":380,"minAtk":3841,"maxAtk":4079},{"itemId":639874,"className":"TSW04_118_QUEST_REWARD","name":"Kedoran Zvaigzde Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":380,"minAtk":3744,"maxAtk":5616},{"itemId":639875,"className":"STF04_119_QUEST_REWARD","name":"Kedoran Zvaigzde Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":380,"mAtk":3960},{"itemId":639876,"className":"TBW04_118_QUEST_REWARD","name":"Kedoran Zvaigzde Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":380,"minAtk":3744,"maxAtk":5616},{"itemId":639877,"className":"BOW04_118_QUEST_REWARD","name":"Kedoran Zvaigzde Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":380,"minAtk":3841,"maxAtk":4079},{"itemId":639878,"className":"MAC04_120_QUEST_REWARD","name":"Kedoran Zvaigzde Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":380,"minAtk":3920,"maxAtk":4000,"mAtk":3960},{"itemId":639879,"className":"TMAC04_109_QUEST_REWARD","name":"Kedoran Zvaigzde Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":380,"minAtk":4212,"maxAtk":5148,"mAtk":4680},{"itemId":639881,"className":"SPR04_119_QUEST_REWARD","name":"Kedoran Zvaigzde Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":380,"minAtk":3564,"maxAtk":4356},{"itemId":639882,"className":"TSP04_120_QUEST_REWARD","name":"Kedoran Zvaigzde Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":380,"minAtk":3276,"maxAtk":6084},{"itemId":639884,"className":"TSF04_118_QUEST_REWARD","name":"Kedoran Zvaigzde Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":380,"mAtk":4680},{"itemId":639886,"className":"RAP04_113_QUEST_REWARD","name":"Kedoran Zvaigzde Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":56990,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":380,"minAtk":3960,"maxAtk":3960},{"itemId":639887,"className":"CAN04_109_QUEST_REWARD","name":"Kedoran Zvaigzde Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":380,"minAtk":2340,"maxAtk":7020},{"itemId":639888,"className":"MUS04_109_QUEST_REWARD","name":"Kedoran Zvaigzde Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":91184,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":380,"minAtk":3042,"maxAtk":6318},{"itemId":639903,"className":"SWD04_110_QUEST_REWARD","name":"Kedoran Primus Migantis Sword","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":270,"minAtk":2741,"maxAtk":2910},{"itemId":639904,"className":"TSW04_114_QUEST_REWARD","name":"Kedoran Primus Migantis Two-handed Sword","type":"Equip","group":"Weapon","weight":270,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":270,"minAtk":2671,"maxAtk":4007},{"itemId":639905,"className":"STF04_115_QUEST_REWARD","name":"Kedoran Primus Migantis Rod","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":270,"mAtk":2826},{"itemId":639906,"className":"TBW04_114_QUEST_REWARD","name":"Kedoran Primus Migantis Bow","type":"Equip","group":"Weapon","weight":270,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":270,"minAtk":2671,"maxAtk":4007},{"itemId":639907,"className":"BOW04_114_QUEST_REWARD","name":"Kedoran Primus Migantis Crossbow","type":"Equip","group":"Weapon","weight":180,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":270,"minAtk":2741,"maxAtk":2910},{"itemId":639908,"className":"MAC04_116_QUEST_REWARD","name":"Kedoran Primus Migantis Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":270,"minAtk":2797,"maxAtk":2854,"mAtk":2826},{"itemId":639909,"className":"TMAC04_105_QUEST_REWARD","name":"Kedoran Primus Migantis Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":270,"minAtk":3005,"maxAtk":3673,"mAtk":3339},{"itemId":639911,"className":"SPR04_115_QUEST_REWARD","name":"Kedoran Primus Migantis Spear","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":270,"minAtk":2543,"maxAtk":3108},{"itemId":639912,"className":"TSP04_116_QUEST_REWARD","name":"Kedoran Primus Migantis Pike","type":"Equip","group":"Weapon","weight":290,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":270,"minAtk":2338,"maxAtk":4341},{"itemId":639914,"className":"TSF04_114_QUEST_REWARD","name":"Kedoran Primus Migantis Staff","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":270,"mAtk":3339},{"itemId":639916,"className":"RAP04_109_QUEST_REWARD","name":"Kedoran Primus Migantis Rapier","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":40000,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":270,"minAtk":2826,"maxAtk":2826},{"itemId":639917,"className":"CAN04_105_QUEST_REWARD","name":"Kedoran Primus Migantis Cannon","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":270,"minAtk":1670,"maxAtk":5009},{"itemId":639918,"className":"MUS04_105_QUEST_REWARD","name":"Kedoran Primus Migantis Musket","type":"Equip","group":"Weapon","weight":155,"maxStack":1,"price":64000,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":270,"minAtk":2171,"maxAtk":4508},{"itemId":639955,"className":"SWD04_121_QUEST_REWARD","name":"Kedoran Primus Legva Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":400,"minAtk":4041,"maxAtk":4291},{"itemId":639956,"className":"TSW04_121_QUEST_REWARD","name":"Kedoran Primus Legva Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":400,"minAtk":3939,"maxAtk":5909},{"itemId":639957,"className":"STF04_122_QUEST_REWARD","name":"Kedoran Primus Legva Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":400,"mAtk":4166},{"itemId":639958,"className":"TBW04_121_QUEST_REWARD","name":"Kedoran Primus Legva Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":400,"minAtk":3939,"maxAtk":5909},{"itemId":639959,"className":"BOW04_121_QUEST_REWARD","name":"Kedoran Primus Legva Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":400,"minAtk":4041,"maxAtk":4291},{"itemId":639960,"className":"MAC04_123_QUEST_REWARD","name":"Kedoran Primus Legva Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":400,"minAtk":4125,"maxAtk":4208,"mAtk":4166},{"itemId":639961,"className":"TMAC04_112_QUEST_REWARD","name":"Kedoran Primus Legva Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":400,"minAtk":4431,"maxAtk":5416,"mAtk":4924},{"itemId":639963,"className":"SPR04_122_QUEST_REWARD","name":"Kedoran Primus Legva Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":400,"minAtk":3750,"maxAtk":4583},{"itemId":639964,"className":"TSP04_123_QUEST_REWARD","name":"Kedoran Primus Legva Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":400,"minAtk":3447,"maxAtk":6401},{"itemId":639966,"className":"TSF04_121_QUEST_REWARD","name":"Kedoran Primus Legva Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":400,"mAtk":4924},{"itemId":639968,"className":"RAP04_118_QUEST_REWARD","name":"Kedoran Primus Legva Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":400,"minAtk":4166,"maxAtk":4166},{"itemId":639969,"className":"CAN04_113_QUEST_REWARD","name":"Kedoran Primus Legva Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":400,"minAtk":2462,"maxAtk":7386},{"itemId":639970,"className":"MUS04_113_QUEST_REWARD","name":"Kedoran Primus Legva Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":400,"minAtk":3200,"maxAtk":6647},{"itemId":6360101,"className":"FOREVER_WEAPON_SWD01_138","name":"[4ever] Sword","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":64,"maxAtk":68,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":6360102,"className":"FOREVER_WEAPON_TSW01_130","name":"[4ever] Two-handed Sword","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":62,"maxAtk":94,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":6360103,"className":"FOREVER_WEAPON_STF01_138","name":"[4ever] Rod","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":66,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":6360104,"className":"FOREVER_WEAPON_TBW01_138","name":"[4ever] Bow","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":62,"maxAtk":94,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":6360105,"className":"FOREVER_WEAPON_BOW01_131","name":"[4ever] Crossbow","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":64,"maxAtk":68,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":6360106,"className":"FOREVER_WEAPON_MAC01_137","name":"[4ever] Mace","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":65,"maxAtk":67,"mAtk":66,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":6360107,"className":"FOREVER_WEAPON_SPR01_120","name":"[4ever] Spear","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":59,"maxAtk":73,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":6360108,"className":"FOREVER_WEAPON_TSP01_112","name":"[4ever] Two-handed Spear","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":55,"maxAtk":101,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":6360109,"className":"FOREVER_WEAPON_TSF01_130","name":"[4ever] Staff","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":78,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":6360110,"className":"FOREVER_WEAPON_RAP01_104","name":"[4ever] Rapier","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":66,"maxAtk":66,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":6360113,"className":"FOREVER_WEAPON_CAN100_102","name":"[4ever] Cannon","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":39,"maxAtk":117,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":6360115,"className":"FOREVER_WEAPON_MUS100_102","name":"[4ever] Musket","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":51,"maxAtk":105,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":6360116,"className":"FOREVER_WEAPON_TMAC02_104","name":"[4ever] Two-handed Mace","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":70,"maxAtk":86,"mAtk":78,"script":{"strArg":"Growth_Item_Legend"}},{"itemId":6370101,"className":"PVP_BOW04_126_1","name":"Vaivora Crossbow - Cluster Bomb (20 minutes)","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":4341,"maxAtk":4610,"script":{"strArg":"pvp_Mine"}},{"itemId":6370102,"className":"PVP_TSW04_126_2","name":"Vaivora Two-handed Sword - Wedge Blast (20 minutes)","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":4231,"maxAtk":6347,"slash":1480,"script":{"strArg":"pvp_Mine"}},{"itemId":6370103,"className":"PVP_TSP04_128_2","name":"Vaivora Pike - Matchless (20 minutes)","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":3703,"maxAtk":6876,"script":{"strArg":"pvp_Mine"}},{"itemId":6370104,"className":"PVP_RAP04_124_1","name":"Vaivora Rapier - Banderilla (20 minutes)","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":4476,"maxAtk":4476,"script":{"strArg":"pvp_Mine"}},{"itemId":6370106,"className":"PVP_CAN04_118_1","name":"Vaivora Cannon - Centerfire (20 minutes)","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":2645,"maxAtk":7934,"script":{"strArg":"pvp_Mine"}},{"itemId":6370107,"className":"PVP_TSF04_129_3","name":"Vaivora Staff - Biased Gravity (20 minutes)","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":5289,"script":{"strArg":"pvp_Mine"}},{"itemId":6370108,"className":"PVP_TMAC04_118_3","name":"Vaivora Two-handed Mace - Necrosis (20 minutes)","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":4760,"maxAtk":5818,"mAtk":5289,"script":{"strArg":"pvp_Mine"}},{"itemId":6370109,"className":"PVP_STF04_127_3","name":"Vaivora Rod - Rune of Vigilance (20 minutes)","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":4476,"script":{"strArg":"pvp_Mine"}},{"itemId":6370111,"className":"PVP_TSF04_129_4","name":"Vaivora Staff - Lewa Advent (20 minutes)","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":5289,"script":{"strArg":"pvp_Mine"}},{"itemId":6370112,"className":"PVP_TMAC04_118_4","name":"Vaivora Two-handed Mace - Tuning (20 minutes)","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":4760,"maxAtk":5818,"mAtk":5289,"script":{"strArg":"pvp_Mine"}},{"itemId":6370114,"className":"PVP_MUS04_118_2","name":"Vaivora Musket - Lever Action (20 minutes)","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":3438,"maxAtk":7141,"script":{"strArg":"pvp_Mine"}},{"itemId":6370115,"className":"PVP_SWD04_126_4","name":"Vaivora Sword - Boreas (20 minutes)","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":4341,"maxAtk":4610,"strike":996,"script":{"strArg":"pvp_Mine"}},{"itemId":6370118,"className":"PVP_TSF04_129_5","name":"Vaivora Staff - Red Tiger Claw (20 minutes)","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":5289,"script":{"strArg":"pvp_Mine"}},{"itemId":6370119,"className":"PVP_STF04_127_4","name":"Vaivora Rod - Distortion (20 minutes)","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":4476,"script":{"strArg":"pvp_Mine"}},{"itemId":6370120,"className":"PVP_TSF04_129_6","name":"Vaivora Staff - Annihilate (20 minutes)","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":5289,"script":{"strArg":"pvp_Mine"}},{"itemId":6370121,"className":"PVP_TMAC04_118_5","name":"Vaivora Two-handed Mace - Thunder Kick (20 minutes)","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":4760,"maxAtk":5818,"mAtk":5289,"strike":1480,"script":{"strArg":"pvp_Mine"}},{"itemId":6370122,"className":"PVP_TMAC04_118_6","name":"Vaivora Two-handed Mace - Sacred Lightning (20 minutes)","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":4760,"maxAtk":5818,"mAtk":5289,"script":{"strArg":"pvp_Mine"}},{"itemId":6370125,"className":"PVP_TMAC04_118_7","name":"Vaivora Two-handed Mace - Conviction (20 minutes)","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":4760,"maxAtk":5818,"mAtk":5289,"strike":1480,"script":{"strArg":"pvp_Mine"}},{"itemId":6370126,"className":"PVP_TSF04_129_7","name":"Vaivora Staff - Immortality (20 minutes)","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":5289,"script":{"strArg":"pvp_Mine"}},{"itemId":6370127,"className":"PVP_TSF04_129_8","name":"Vaivora Rod - Demonische (20 minutes)","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":5289,"script":{"strArg":"pvp_Mine"}},{"itemId":6370128,"className":"PVP_MAC04_129_2","name":"Vaivora Mace - Protecting Grace (20 minutes)","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":4431,"maxAtk":4520,"mAtk":4476,"script":{"strArg":"pvp_Mine"}},{"itemId":6530001,"className":"EP11_SWD05_103","name":"[EP11] Savinose Legva Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":400,"minAtk":5173,"maxAtk":5493},{"itemId":6530002,"className":"EP11_TSW05_103","name":"[EP11] Savinose Legva Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":400,"minAtk":5042,"maxAtk":7563},{"itemId":6530003,"className":"EP11_STF05_103","name":"[EP11] Savinose Legva Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":400,"mAtk":5333},{"itemId":6530004,"className":"EP11_TBW05_103","name":"[EP11] Savinose Legva Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":400,"minAtk":5042,"maxAtk":7563},{"itemId":6530005,"className":"EP11_BOW05_103","name":"[EP11] Savinose Legva Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":400,"minAtk":5173,"maxAtk":5493},{"itemId":6530006,"className":"EP11_MAC05_103","name":"[EP11] Savinose Legva Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":400,"minAtk":5279,"maxAtk":5386,"mAtk":5333},{"itemId":6530007,"className":"EP11_TMAC05_105","name":"[EP11] Savinose Legva Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":400,"minAtk":5672,"maxAtk":6933,"mAtk":6302},{"itemId":6530008,"className":"EP11_SPR05_103","name":"[EP11] Savinose Legva Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":400,"minAtk":4800,"maxAtk":5866},{"itemId":6530009,"className":"EP11_TSP05_103","name":"[EP11] Savinose Legva Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":400,"minAtk":4412,"maxAtk":8193},{"itemId":6530010,"className":"EP11_TSF05_103","name":"[EP11] Savinose Legva Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":400,"mAtk":6302},{"itemId":6530011,"className":"EP11_RAP05_103","name":"[EP11] Savinose Legva Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":400,"minAtk":5333,"maxAtk":5333},{"itemId":6530012,"className":"EP11_CAN05_105","name":"[EP11] Savinose Legva Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":400,"minAtk":3151,"maxAtk":9454},{"itemId":6530013,"className":"EP11_MUS05_103","name":"[EP11] Savinose Legva Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":400,"minAtk":4097,"maxAtk":8508},{"itemId":9999983,"className":"NoWeapon_THSpear","name":"Empty_weapon","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":0,"sellPrice":0},{"itemId":9999989,"className":"NoWeapon_Spear","name":"Empty_weapon","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":0,"sellPrice":0},{"itemId":9999991,"className":"NoWeapon_Sword","name":"Empty_weapon","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":0,"sellPrice":0},{"itemId":9999992,"className":"NoWeapon_THSword","name":"Empty_weapon","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":0,"sellPrice":0},{"itemId":9999994,"className":"NoWeapon_Staff","name":"Empty_weapon","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":0,"sellPrice":0},{"itemId":9999995,"className":"NoWeapon_Bow","name":"Empty_weapon_Bow","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":0,"sellPrice":0},{"itemId":9999996,"className":"NoWeapon","name":"Empty_weapon_THBow","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":0,"sellPrice":0},{"itemId":9999998,"className":"NoWeapon_Mace","name":"Empty_weapon_Mace","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":0,"sellPrice":0},{"itemId":9999999,"className":"NoWeapon_THStaff","name":"Empty_weapon","type":"Equip","group":"Weapon","weight":1,"maxStack":1,"price":0,"sellPrice":0},{"itemId":10003142,"className":"Event_Roulette_Glacier_box_1","name":"[Event] Glacia Unique Weapon Selection Box","type":"Consume","group":"Weapon","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003145,"className":"20Season_Disnai_Weapon_box","name":"[Event] +11 ENH and Stage 8 TRA Savinose Dysnai Weapon Selection Box","type":"Consume","group":"Weapon","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003212,"className":"20Season_Disnai_Weapon_box_2","name":"[Event] +11 ENH and Stage 8 TRA Savinose Dysnai Weapon Selection Box","type":"Consume","group":"Weapon","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003214,"className":"Event_Vaivora_box_1","name":"[Event] 5th Anniversary Vaivora Unique Weapon Profession Selection Box LV.1","type":"Consume","group":"Weapon","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003215,"className":"Event_Vaivora_box_2","name":"[Event] Vaivora Unique Weapon Selection Box (Sword, Spear, Rapier)","type":"Consume","group":"Weapon","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003216,"className":"Event_Vaivora_box_3","name":"[Event] Vaivora Unique Weapon Selection Box (Staff, Rod)","type":"Consume","group":"Weapon","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003217,"className":"Event_Vaivora_box_4","name":"[Event] Vaivora Unique Weapon Selection Box (Blunt, Dagger)","type":"Consume","group":"Weapon","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003218,"className":"Event_Vaivora_box_5","name":"[Event] Vaivora Unique Weapon Selection Box (Bow, Cannon, Musket, Pistol, Crossbow)","type":"Consume","group":"Weapon","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003219,"className":"Event_Vaivora_box_random_1","name":"[Event] 5th Anniversary Vaivora Unique Weapon Random Box LV.1","type":"Consume","group":"Weapon","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT","strArg":"SWD04_126_1/1;SWD04_126_2/1;TSW04_126/1;TSW04_126_1/1;TSW04_126_2/1;TSP04_128/1;TSP04_128_1/1;TSP04_128_2/1;SPR04_127/1;SPR04_127_1/1;RAP04_124_1/1;RAP04_124/1;TSF04_129/1;TSF04_129_1/1;TSF04_129_2/1;TSF04_129_3/1;STF04_127/1;STF04_127_1/1;STF04_127_2/1;STF04_127_3/1;MAC04_129/1;MAC04_129_1/1;TMAC04_118_2/1;TMAC04_118_1/1;TMAC04_118_3/1;TMAC04_118/1;DAG04_123/1;DAG04_123_3/1;DAG04_123_1/1;DAG04_123_2/1;TBW04_126/1;TBW04_126_1/1;CAN04_118/1;CAN04_118_1/1;MUS04_118/1;MUS04_118_1/1;PST04_122_2/1;PST04_122/1;PST04_122_1/1;BOW04_126_1/1;BOW04_126/1;"}},{"itemId":10003342,"className":"2021_NewYear_Disnai_Weapon_box","name":"[2021] 16 ENH 10 TRA Savinose Dysnai M.Weapon Selection Box","type":"Consume","group":"Weapon","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003343,"className":"2021_NewYear_Disnai_SubWeapon_box","name":"[2021] 16 ENH 10 TRA Savinose Dysnai S.Weapon Selection Box","type":"Consume","group":"Weapon","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003376,"className":"Event_SelectBox_Glacier_MainWeapon","name":"[Event] 16 ENH 10 TRA Glacia Legenda M. Weapon Selection Box","type":"Consume","group":"Weapon","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003377,"className":"Event_SelectBox_Glacier_SubWeapon","name":"[Event] 16 ENH 10 TRA Glacia Legenda S. Weapon Selection Box","type":"Consume","group":"Weapon","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003378,"className":"Event_TxBox_Glacier_Weapon","name":"[Event] 16 ENH 10 TRA Glacia Legenda Weapon Selection Box","type":"Consume","group":"Weapon","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT","strArg":"Event_SelectBox_Glacier_MainWeapon/1;Event_SelectBox_Glacier_SubWeapon/1;","numArg1":1}},{"itemId":10003415,"className":"SelectBox_Glacier_MainWeapon_0505","name":"[Event] 16 ENH 10 TRA Glacia Legenda M. Weapon Selection Box","type":"Consume","group":"Weapon","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003416,"className":"SelectBox_Glacier_SubWeapon_0505","name":"[Event] 16 ENH 10 TRA Glacia Legenda S. Weapon Selection Box","type":"Consume","group":"Weapon","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003426,"className":"Event_Vaivora_box_random_3","name":"[FLEX] Vaivora Unique Weapon Random Box","type":"Consume","group":"Weapon","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT","strArg":"SWD04_126/1;SWD04_126_1/1;SWD04_126_2/1;SWD04_126_3/1;TSW04_126/1;TSW04_126_1/1;TSW04_126_2/1;TSP04_128/1;TSP04_128_1/1;TSP04_128_2/1;SPR04_127/1;SPR04_127_1/1;RAP04_124_1/1;RAP04_124/1;TSF04_129/1;TSF04_129_1/1;TSF04_129_2/1;TSF04_129_3/1;STF04_127/1;STF04_127_1/1;STF04_127_2/1;STF04_127_3/1;TRK04_111/1;SHD04_122_1/1;SHD04_122/1;MAC04_129/1;MAC04_129_1/1;TMAC04_118_2/1;TMAC04_118_1/1;TMAC04_118_3/1;TMAC04_118/1;DAG04_123/1;DAG04_123_3/1;DAG04_123_1/1;DAG04_123_2/1;DAG04_123_4/1;TBW04_126/1;TBW04_126_1/1;CAN04_118/1;CAN04_118_1/1;MUS04_118/1;MUS04_118_1/1;PST04_122_2/1;PST04_122/1;PST04_122_1/1;BOW04_126_1/1;BOW04_126/1;TSF04_129_4/1;SWD04_126_4/1;TMAC04_118_4/1;DAG04_123_5/1;MUS04_118_2/1;DAG04_123_6/1;SHD04_122_2/1;TSF04_129_5/1;STF04_127_4/1;TSF04_129_6/1;TMAC04_118_5/1;TMAC04_118_6/1;PST04_122_3/1;"}},{"itemId":10003473,"className":"SelectBox_Goddess_MainWeapon_25","name":"[Event] Goddess Main-weapon Selection Box","type":"Consume","group":"Weapon","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003474,"className":"SelectBox_Goddess_SubWeapon_25","name":"[Event] Goddess Sub-weapon Selection Box","type":"Consume","group":"Weapon","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003485,"className":"TEST_KUPOLE_SelectBox_Glacier_Weapon","name":"[Kupole] 16ENH 10TRA Glacia Legenda Weapon Selection Box","type":"Consume","group":"Weapon","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003486,"className":"TEST_KUPOLE_SelectBox_Glacier_Armor","name":"[Kupole] 11ENH 10TRA Glacia Legenda Armor Selection Box","type":"Consume","group":"Weapon","weight":0,"maxStack":32767,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003492,"className":"Event_Vaivora_box_1_TWN","name":"[Event] 5th Anniversary Vaivora Unique Weapon Profession Selection Box LV.1","type":"Consume","group":"Weapon","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003493,"className":"Event_Vaivora_box_2_TWN","name":"[Event] Vaivora Unique Weapon Selection Box (Sword, Spear, Rapier)","type":"Consume","group":"Weapon","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003494,"className":"Event_Vaivora_box_3_TWN","name":"[Event] Vaivora Unique Weapon Selection Box (Staff, Rod)","type":"Consume","group":"Weapon","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003495,"className":"Event_Vaivora_box_4_TWN","name":"[Event] Vaivora Unique Weapon Selection Box (Blunt, Dagger)","type":"Consume","group":"Weapon","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003496,"className":"Event_Vaivora_box_5_TWN","name":"[Event] Vaivora Unique Weapon Selection Box (Bow, Cannon, Musket, Pistol, Crossbow)","type":"Consume","group":"Weapon","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"numArg1":1}},{"itemId":10003497,"className":"Event_Vaivora_box_random_1_TWN","name":"[Event] 5th Anniversary Vaivora Unique Weapon Random Box LV.1","type":"Consume","group":"Weapon","weight":0,"maxStack":99999,"price":0,"sellPrice":0,"equipType1":"None","minLevel":1,"script":{"function":"SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT","strArg":"SWD04_126/1;SWD04_126_1/1;SWD04_126_2/1;SWD04_126_3/1;TSW04_126/1;TSW04_126_1/1;TSW04_126_2/1;TSP04_128/1;TSP04_128_1/1;TSP04_128_2/1;SPR04_127/1;SPR04_127_1/1;RAP04_124_1/1;RAP04_124/1;TSF04_129/1;TSF04_129_1/1;TSF04_129_2/1;TSF04_129_3/1;STF04_127/1;STF04_127_1/1;STF04_127_2/1;STF04_127_3/1;TRK04_111/1;SHD04_122_1/1;SHD04_122/1;MAC04_129/1;MAC04_129_1/1;TMAC04_118_2/1;TMAC04_118_1/1;TMAC04_118_3/1;TMAC04_118/1;DAG04_123/1;DAG04_123_3/1;DAG04_123_1/1;DAG04_123_2/1;DAG04_123_4/1;TBW04_126/1;TBW04_126_1/1;CAN04_118/1;CAN04_118_1/1;MUS04_118/1;MUS04_118_1/1;PST04_122_2/1;PST04_122/1;PST04_122_1/1;BOW04_126_1/1;BOW04_126/1;TSF04_129_4/1;SWD04_126_4/1;TMAC04_118_4/1;DAG04_123_5/1;MUS04_118_2/1;DAG04_123_6/1;SHD04_122_2/1;TSF04_129_5/1;STF04_127_4/1;TSF04_129_6/1;TMAC04_118_5/1;TMAC04_118_6/1;PST04_122_3/1;"}},{"itemId":10306000,"className":"Event_CAN05_106_Roulette","name":"[Event] Skiaclipse Varna Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":400,"minAtk":3151,"maxAtk":9454},{"itemId":10306001,"className":"Event_MUS05_104_Roulette","name":"[Event] Skiaclipse Varna Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":400,"minAtk":4097,"maxAtk":8508},{"itemId":10306002,"className":"Event_SWD05_104_Roulette","name":"[Event] Skiaclipse Varna Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":400,"minAtk":5173,"maxAtk":5493},{"itemId":10306003,"className":"Event_TSF05_104_Roulette","name":"[Event] Skiaclipse Varna Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":400,"mAtk":6302},{"itemId":10306006,"className":"Event_TSP05_104_Roulette","name":"[Event] Skiaclipse Varna Pike ","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":400,"minAtk":4412,"maxAtk":8193},{"itemId":10306007,"className":"Event_SPR05_104_Roulette","name":"[Event] Skiaclipse Varna Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":400,"minAtk":4800,"maxAtk":5866},{"itemId":10306008,"className":"Event_MAC05_104_Roulette","name":"[Event] Skiaclipse Varna Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":400,"minAtk":5279,"maxAtk":5386,"mAtk":5333},{"itemId":10306009,"className":"Event_BOW05_104_Roulette","name":"[Event] Skiaclipse Varna Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":400,"minAtk":5173,"maxAtk":5493},{"itemId":10306010,"className":"Event_TMAC05_106_Roulette","name":"[Event] Skiaclipse Varna Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":400,"minAtk":5672,"maxAtk":6933,"mAtk":6302},{"itemId":10306012,"className":"Event_TBW05_104_Roulette","name":"[Event] Skiaclipse Varna Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":400,"minAtk":5042,"maxAtk":7563},{"itemId":10306013,"className":"Event_STF05_104_Roulette","name":"[Event] Skiaclipse Varna Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":400,"mAtk":5333},{"itemId":10306014,"className":"Event_TSW05_104_Roulette","name":"[Event] Skiaclipse Varna Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":400,"minAtk":5042,"maxAtk":7563},{"itemId":10306015,"className":"Event_RAP05_104_Roulette","name":"[Event] Skiaclipse Varna Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":400,"minAtk":5333,"maxAtk":5333},{"itemId":10306041,"className":"Event_EP12_FIELD_SWORD","name":"[Event] Savinose Dysnai Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":440,"minAtk":6367,"maxAtk":6761},{"itemId":10306042,"className":"Event_EP12_FIELD_THSWORD","name":"[Event] Savinose Dysnai Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":440,"minAtk":6095,"maxAtk":9143},{"itemId":10306043,"className":"Event_EP12_FIELD_STAFF","name":"[Event] Savinose Dysnai Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":440,"mAtk":6564},{"itemId":10306044,"className":"Event_EP12_FIELD_THBOW","name":"[Event] Savinose Dysnai Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":440,"minAtk":6095,"maxAtk":9143},{"itemId":10306045,"className":"Event_EP12_FIELD_BOW","name":"[Event] Savinose Dysnai Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":440,"minAtk":6367,"maxAtk":6761},{"itemId":10306046,"className":"Event_EP12_FIELD_MACE","name":"[Event] Savinose Dysnai Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":440,"minAtk":6498,"maxAtk":6630,"mAtk":6564},{"itemId":10306047,"className":"Event_EP12_FIELD_THMACE","name":"[Event] Savinose Dysnai Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":440,"minAtk":6857,"maxAtk":8381,"mAtk":7619},{"itemId":10306049,"className":"Event_EP12_FIELD_SPEAR","name":"[Event] Savinose Dysnai Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":440,"minAtk":5908,"maxAtk":7221},{"itemId":10306050,"className":"Event_EP12_FIELD_THSPEAR","name":"[Event] Savinose Dysnai Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":440,"minAtk":5333,"maxAtk":9905},{"itemId":10306052,"className":"Event_EP12_FIELD_THSTAFF","name":"[Event] Savinose Dysnai Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":440,"mAtk":7619},{"itemId":10306054,"className":"Event_EP12_FIELD_RAPIER","name":"[Event] Savinose Dysnai Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":440,"minAtk":6564,"maxAtk":6564},{"itemId":10306055,"className":"Event_EP12_FIELD_CANNON","name":"[Event] Savinose Dysnai Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":440,"minAtk":3810,"maxAtk":11429},{"itemId":10306056,"className":"Event_EP12_FIELD_MUSKET","name":"[Event] Savinose Dysnai Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":440,"minAtk":4952,"maxAtk":10286},{"itemId":10306070,"className":"Event2_EP12_FIELD_SWORD","name":"[Event] Savinose Dysnai Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":440,"minAtk":6367,"maxAtk":6761},{"itemId":10306071,"className":"Event2_EP12_FIELD_THSWORD","name":"[Event] Savinose Dysnai Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":440,"minAtk":6095,"maxAtk":9143},{"itemId":10306072,"className":"Event2_EP12_FIELD_STAFF","name":"[Event] Savinose Dysnai Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":440,"mAtk":6564},{"itemId":10306073,"className":"Event2_EP12_FIELD_THBOW","name":"[Event] Savinose Dysnai Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":440,"minAtk":6095,"maxAtk":9143},{"itemId":10306074,"className":"Event2_EP12_FIELD_BOW","name":"[Event] Savinose Dysnai Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":440,"minAtk":6367,"maxAtk":6761},{"itemId":10306075,"className":"Event2_EP12_FIELD_MACE","name":"[Event] Savinose Dysnai Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":440,"minAtk":6498,"maxAtk":6630,"mAtk":6564},{"itemId":10306076,"className":"Event2_EP12_FIELD_THMACE","name":"[Event] Savinose Dysnai Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":440,"minAtk":6857,"maxAtk":8381,"mAtk":7619},{"itemId":10306078,"className":"Event2_EP12_FIELD_SPEAR","name":"[Event] Savinose Dysnai Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":440,"minAtk":5908,"maxAtk":7221},{"itemId":10306079,"className":"Event2_EP12_FIELD_THSPEAR","name":"[Event] Savinose Dysnai Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":440,"minAtk":5333,"maxAtk":9905},{"itemId":10306081,"className":"Event2_EP12_FIELD_THSTAFF","name":"[Event] Savinose Dysnai Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":440,"mAtk":7619},{"itemId":10306083,"className":"Event2_EP12_FIELD_RAPIER","name":"[Event] Savinose Dysnai Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":440,"minAtk":6564,"maxAtk":6564},{"itemId":10306084,"className":"Event2_EP12_FIELD_CANNON","name":"[Event] Savinose Dysnai Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":440,"minAtk":3810,"maxAtk":11429},{"itemId":10306085,"className":"Event2_EP12_FIELD_MUSKET","name":"[Event] Savinose Dysnai Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":440,"minAtk":4952,"maxAtk":10286},{"itemId":10306087,"className":"Event_EP12_RAID_SWORD","name":"[Event] Glacia Legenda Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":440,"minAtk":6367,"maxAtk":6761,"script":{"strArg":"Legenda"}},{"itemId":10306088,"className":"Event_EP12_RAID_THSWORD","name":"[Event] Glacia Legenda Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":440,"minAtk":6095,"maxAtk":9143,"script":{"strArg":"Legenda"}},{"itemId":10306089,"className":"Event_EP12_RAID_STAFF","name":"[Event] Glacia Legenda Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":440,"mAtk":6564,"script":{"strArg":"Legenda"}},{"itemId":10306090,"className":"Event_EP12_RAID_THBOW","name":"[Event] Glacia Legenda Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":440,"minAtk":6095,"maxAtk":9143,"script":{"strArg":"Legenda"}},{"itemId":10306091,"className":"Event_EP12_RAID_BOW","name":"[Event] Glacia Legenda Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":440,"minAtk":6367,"maxAtk":6761,"script":{"strArg":"Legenda"}},{"itemId":10306092,"className":"Event_EP12_RAID_MACE","name":"[Event] Glacia Legenda Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":440,"minAtk":6498,"maxAtk":6630,"mAtk":6564,"script":{"strArg":"Legenda"}},{"itemId":10306093,"className":"Event_EP12_RAID_THMACE","name":"[Event] Glacia Legenda Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":440,"minAtk":6857,"maxAtk":8381,"mAtk":7619,"script":{"strArg":"Legenda"}},{"itemId":10306095,"className":"Event_EP12_RAID_SPEAR","name":"[Event] Glacia Legenda Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":440,"minAtk":5908,"maxAtk":7221,"script":{"strArg":"Legenda"}},{"itemId":10306096,"className":"Event_EP12_RAID_THSPEAR","name":"[Event] Glacia Legenda Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":440,"minAtk":5333,"maxAtk":9905,"script":{"strArg":"Legenda"}},{"itemId":10306098,"className":"Event_EP12_RAID_THSTAFF","name":"[Event] Glacia Legenda Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":440,"mAtk":7619,"script":{"strArg":"Legenda"}},{"itemId":10306100,"className":"Event_EP12_RAID_RAPIER","name":"[Event] Glacia Legenda Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":440,"minAtk":6564,"maxAtk":6564,"script":{"strArg":"Legenda"}},{"itemId":10306101,"className":"Event_EP12_RAID_CANNON","name":"[Event] Glacia Legenda Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":440,"minAtk":3810,"maxAtk":11429,"script":{"strArg":"Legenda"}},{"itemId":10306102,"className":"Event_EP12_RAID_MUSKET","name":"[Event] Glacia Legenda Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":440,"minAtk":4952,"maxAtk":10286,"script":{"strArg":"Legenda"}},{"itemId":10306116,"className":"Event_EP12_RAID_SWORD_2","name":"[Event] Glacia Legenda Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":440,"minAtk":6367,"maxAtk":6761,"script":{"strArg":"Legenda"}},{"itemId":10306117,"className":"Event_EP12_RAID_THSWORD_2","name":"[Event] Glacia Legenda Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":440,"minAtk":6095,"maxAtk":9143,"script":{"strArg":"Legenda"}},{"itemId":10306118,"className":"Event_EP12_RAID_STAFF_2","name":"[Event] Glacia Legenda Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":440,"mAtk":6564,"script":{"strArg":"Legenda"}},{"itemId":10306119,"className":"Event_EP12_RAID_THBOW_2","name":"[Event] Glacia Legenda Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":440,"minAtk":6095,"maxAtk":9143,"script":{"strArg":"Legenda"}},{"itemId":10306120,"className":"Event_EP12_RAID_BOW_2","name":"[Event] Glacia Legenda Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":440,"minAtk":6367,"maxAtk":6761,"script":{"strArg":"Legenda"}},{"itemId":10306121,"className":"Event_EP12_RAID_MACE_2","name":"[Event] Glacia Legenda Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":440,"minAtk":6498,"maxAtk":6630,"mAtk":6564,"script":{"strArg":"Legenda"}},{"itemId":10306122,"className":"Event_EP12_RAID_THMACE_2","name":"[Event] Glacia Legenda Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":440,"minAtk":6857,"maxAtk":8381,"mAtk":7619,"script":{"strArg":"Legenda"}},{"itemId":10306124,"className":"Event_EP12_RAID_SPEAR_2","name":"[Event] Glacia Legenda Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":440,"minAtk":5908,"maxAtk":7221,"script":{"strArg":"Legenda"}},{"itemId":10306125,"className":"Event_EP12_RAID_THSPEAR_2","name":"[Event] Glacia Legenda Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":440,"minAtk":5333,"maxAtk":9905,"script":{"strArg":"Legenda"}},{"itemId":10306127,"className":"Event_EP12_RAID_THSTAFF_2","name":"[Event] Glacia Legenda Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":440,"mAtk":7619,"script":{"strArg":"Legenda"}},{"itemId":10306129,"className":"Event_EP12_RAID_RAPIER_2","name":"[Event] Glacia Legenda Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":440,"minAtk":6564,"maxAtk":6564,"script":{"strArg":"Legenda"}},{"itemId":10306130,"className":"Event_EP12_RAID_CANNON_2","name":"[Event] Glacia Legenda Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":440,"minAtk":3810,"maxAtk":11429,"script":{"strArg":"Legenda"}},{"itemId":10306131,"className":"Event_EP12_RAID_MUSKET_2","name":"[Event] Glacia Legenda Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":440,"minAtk":4952,"maxAtk":10286,"script":{"strArg":"Legenda"}},{"itemId":10306133,"className":"Event_Growth_Sword","name":"[Growth] Sword","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":64,"maxAtk":68,"script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306134,"className":"Event_Growth_THSword","name":"[Growth] Two-handed Sword","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":62,"maxAtk":94,"script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306135,"className":"Event_Growth_Rod","name":"[Growth] Rod","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":66,"script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306136,"className":"Event_Growth_Bow","name":"[Growth] Bow","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":62,"maxAtk":94,"script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306137,"className":"Event_Growth_CrossBow","name":"[Growth] Crossbow","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":64,"maxAtk":68,"script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306138,"className":"Event_Growth_Mace","name":"[Growth] Mace","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":65,"maxAtk":67,"mAtk":66,"script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306139,"className":"Event_Growth_Spear","name":"[Growth] Spear","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":59,"maxAtk":73,"script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306140,"className":"Event_Growth_THSpear","name":"[Growth] Pike","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":55,"maxAtk":101,"script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306141,"className":"Event_Growth_Staff","name":"[Growth] Staff","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":78,"script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306142,"className":"Event_Growth_Rapier","name":"[Growth] Rapier","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":66,"maxAtk":66,"script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306157,"className":"Event_Growth_Cannon","name":"[Growth] Cannon","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":39,"maxAtk":117,"script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306159,"className":"Event_Growth_Musket","name":"[Growth] Musket","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":51,"maxAtk":105,"script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10306160,"className":"Event_Growth_THMace","name":"[Growth] Two-handed Mace","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":70,"maxAtk":86,"mAtk":78,"script":{"strArg":"Growth_Item_Legend","numArg1":440}},{"itemId":10310001,"className":"SWD04_123_Ev","name":"[Event] Moringponia Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":400,"minAtk":4041,"maxAtk":4291},{"itemId":10310002,"className":"TSW04_123_Ev","name":"[Event] Moringponia Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":400,"minAtk":3939,"maxAtk":5909},{"itemId":10310003,"className":"STF04_124_Ev","name":"[Event] Moringponia Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":400,"mAtk":4166},{"itemId":10310004,"className":"TBW04_123_Ev","name":"[Event] Moringponia Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":400,"minAtk":3939,"maxAtk":5909},{"itemId":10310005,"className":"BOW04_123_Ev","name":"[Event] Moringponia Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":400,"minAtk":4041,"maxAtk":4291,"addMaxAtk":339},{"itemId":10310006,"className":"MAC04_126_Ev","name":"[Event] Moringponia Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":400,"minAtk":4125,"maxAtk":4208,"mAtk":4166,"addDef":410},{"itemId":10310007,"className":"TMAC04_115_Ev","name":"[Event] Moringponia Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":400,"minAtk":4431,"maxAtk":5416,"mAtk":4924,"strike":291},{"itemId":10310008,"className":"SPR04_124_Ev","name":"[Event] Moringponia Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":400,"minAtk":3750,"maxAtk":4583},{"itemId":10310009,"className":"TSP04_125_Ev","name":"[Event] Moringponia Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":400,"minAtk":3447,"maxAtk":6401},{"itemId":10310010,"className":"TSF04_125_Ev","name":"[Event] Moringponia Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":400,"mAtk":4924},{"itemId":10310011,"className":"TSF04_126_Ev","name":"[Event] Moringponia Caster","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":400,"mAtk":4924},{"itemId":10310012,"className":"RAP04_121_Ev","name":"[Event] Moringponia Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":400,"minAtk":4166,"maxAtk":4166},{"itemId":10310013,"className":"CAN04_115_Ev","name":"[Event] Moringponia Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":400,"minAtk":2462,"maxAtk":7386},{"itemId":10310014,"className":"MUS04_115_Ev","name":"[Event] Moringponia Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":400,"minAtk":3200,"maxAtk":6647,"pAtk":350},{"itemId":10310019,"className":"SWD04_124_Ev","name":"[Event] Misrus Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":400,"minAtk":4041,"maxAtk":4291,"addMDef":420},{"itemId":10310020,"className":"TSW04_124_Ev","name":"[Event] Misrus Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":400,"minAtk":3939,"maxAtk":5909},{"itemId":10310021,"className":"STF04_125_Ev","name":"[Event] Misrus Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":400,"mAtk":4166},{"itemId":10310022,"className":"TBW04_124_Ev","name":"[Event] Misrus Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":400,"minAtk":3939,"maxAtk":5909},{"itemId":10310023,"className":"BOW04_124_Ev","name":"[Event] Misrus Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":400,"minAtk":4041,"maxAtk":4291},{"itemId":10310024,"className":"MAC04_127_Ev","name":"[Event] Misrus Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":400,"minAtk":4125,"maxAtk":4208,"mAtk":4166,"addMDef":398},{"itemId":10310025,"className":"TMAC04_116_Ev","name":"[Event] Misrus Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":400,"minAtk":4431,"maxAtk":5416,"mAtk":4924},{"itemId":10310026,"className":"SPR04_125_Ev","name":"[Event] Misrus Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":400,"minAtk":3750,"maxAtk":4583,"aries":392},{"itemId":10310027,"className":"TSP04_126_Ev","name":"[Event] Misrus Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":400,"minAtk":3447,"maxAtk":6401},{"itemId":10310028,"className":"TSF04_127_Ev","name":"[Event] Misrus Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":400,"mAtk":4924,"addMAtk":407},{"itemId":10310029,"className":"RAP04_122_Ev","name":"[Event] Misrus Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":400,"minAtk":4166,"maxAtk":4166},{"itemId":10310030,"className":"CAN04_116_Ev","name":"[Event] Misrus Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":400,"minAtk":2462,"maxAtk":7386,"addMaxAtk":722},{"itemId":10310031,"className":"MUS04_116_Ev","name":"[Event] Misrus Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":400,"minAtk":3200,"maxAtk":6647},{"itemId":10310037,"className":"SWD_Galimybe","name":"Galimive Dysnai Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":430,"minAtk":4341,"maxAtk":4610},{"itemId":10310038,"className":"TSW_Galimybe","name":"Galimive Dysnai Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":430,"minAtk":4231,"maxAtk":6347},{"itemId":10310039,"className":"STF_Galimybe","name":"Galimive Dysnai Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":430,"mAtk":4476},{"itemId":10310040,"className":"TBW_Galimybe","name":"Galimive Dysnai Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":430,"minAtk":4231,"maxAtk":6347},{"itemId":10310041,"className":"BOW_Galimybe","name":"Galimive Dysnai Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":430,"minAtk":4341,"maxAtk":4610},{"itemId":10310042,"className":"MAC_Galimybe","name":"Galimive Dysnai Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":430,"minAtk":4431,"maxAtk":4520,"mAtk":4476},{"itemId":10310043,"className":"TMAC_Galimybe","name":"Galimive Dysnai Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":430,"minAtk":4760,"maxAtk":5818,"mAtk":5289},{"itemId":10310044,"className":"SPR_Galimybe","name":"Galimive Dysnai Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":430,"minAtk":4028,"maxAtk":4923},{"itemId":10310045,"className":"TSP_Galimybe","name":"Galimive Dysnai Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":430,"minAtk":3703,"maxAtk":6876},{"itemId":10310046,"className":"TSF_Galimybe","name":"Galimive Dysnai Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":430,"mAtk":5289,"addMAtk":407},{"itemId":10310047,"className":"RAP_Galimybe","name":"Galimive Dysnai Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":430,"minAtk":4476,"maxAtk":4476},{"itemId":10310048,"className":"CAN_Galimybe","name":"Galimive Dysnai Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":430,"minAtk":2645,"maxAtk":7934},{"itemId":10310049,"className":"MUS_Galimybe","name":"Galimive Dysnai Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":430,"minAtk":3438,"maxAtk":7141},{"itemId":10310054,"className":"SWD04_123_Ev_2","name":"[Event] Moringponia Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":400,"minAtk":4041,"maxAtk":4291},{"itemId":10310055,"className":"TSW04_123_Ev_2","name":"[Event] Moringponia Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":400,"minAtk":3939,"maxAtk":5909},{"itemId":10310056,"className":"STF04_124_Ev_2","name":"[Event] Moringponia Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":400,"mAtk":4166},{"itemId":10310057,"className":"TBW04_123_Ev_2","name":"[Event] Moringponia Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":400,"minAtk":3939,"maxAtk":5909},{"itemId":10310058,"className":"BOW04_123_Ev_2","name":"[Event] Moringponia Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":400,"minAtk":4041,"maxAtk":4291,"addMaxAtk":339},{"itemId":10310059,"className":"MAC04_126_Ev_2","name":"[Event] Moringponia Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":400,"minAtk":4125,"maxAtk":4208,"mAtk":4166,"addDef":410},{"itemId":10310060,"className":"TMAC04_115_Ev_2","name":"[Event] Moringponia Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":400,"minAtk":4431,"maxAtk":5416,"mAtk":4924,"strike":291},{"itemId":10310061,"className":"SPR04_124_Ev_2","name":"[Event] Moringponia Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":400,"minAtk":3750,"maxAtk":4583},{"itemId":10310062,"className":"TSP04_125_Ev_2","name":"[Event] Moringponia Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":400,"minAtk":3447,"maxAtk":6401},{"itemId":10310063,"className":"TSF04_125_Ev_2","name":"[Event] Moringponia Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":400,"mAtk":4924},{"itemId":10310064,"className":"TSF04_126_Ev_2","name":"[Event] Moringponia Caster","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":400,"mAtk":4924},{"itemId":10310065,"className":"RAP04_121_Ev_2","name":"[Event] Moringponia Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":400,"minAtk":4166,"maxAtk":4166},{"itemId":10310066,"className":"CAN04_115_Ev_2","name":"[Event] Moringponia Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":400,"minAtk":2462,"maxAtk":7386},{"itemId":10310067,"className":"MUS04_115_Ev_2","name":"[Event] Moringponia Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":400,"minAtk":3200,"maxAtk":6647,"pAtk":350},{"itemId":10310072,"className":"SWD04_124_Ev_2","name":"[Event] Misrus Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":400,"minAtk":4041,"maxAtk":4291,"addMDef":420},{"itemId":10310073,"className":"TSW04_124_Ev_2","name":"[Event] Misrus Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":400,"minAtk":3939,"maxAtk":5909},{"itemId":10310074,"className":"STF04_125_Ev_2","name":"[Event] Misrus Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":400,"mAtk":4166},{"itemId":10310075,"className":"TBW04_124_Ev_2","name":"[Event] Misrus Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":400,"minAtk":3939,"maxAtk":5909},{"itemId":10310076,"className":"BOW04_124_Ev_2","name":"[Event] Misrus Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":400,"minAtk":4041,"maxAtk":4291},{"itemId":10310077,"className":"MAC04_127_Ev_2","name":"[Event] Misrus Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":400,"minAtk":4125,"maxAtk":4208,"mAtk":4166,"addMDef":398},{"itemId":10310078,"className":"TMAC04_116_Ev_2","name":"[Event] Misrus Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":400,"minAtk":4431,"maxAtk":5416,"mAtk":4924},{"itemId":10310079,"className":"SPR04_125_Ev_2","name":"[Event] Misrus Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":400,"minAtk":3750,"maxAtk":4583,"aries":392},{"itemId":10310080,"className":"TSP04_126_Ev_2","name":"[Event] Misrus Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":400,"minAtk":3447,"maxAtk":6401},{"itemId":10310081,"className":"TSF04_127_Ev_2","name":"[Event] Misrus Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":400,"mAtk":4924,"addMAtk":407},{"itemId":10310082,"className":"RAP04_122_Ev_2","name":"[Event] Misrus Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":64609,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":400,"minAtk":4166,"maxAtk":4166},{"itemId":10310083,"className":"CAN04_116_Ev_2","name":"[Event] Misrus Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":400,"minAtk":2462,"maxAtk":7386,"addMaxAtk":722},{"itemId":10310084,"className":"MUS04_116_Ev_2","name":"[Event] Misrus Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":103374,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":400,"minAtk":3200,"maxAtk":6647},{"itemId":10800013,"className":"Episode12_EP12_FIELD_SWORD","name":"[EP12] Savinose Dysnai Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":440,"minAtk":6367,"maxAtk":6761},{"itemId":10800014,"className":"Episode12_EP12_FIELD_THSWORD","name":"[EP12] Savinose Dysnai Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":440,"minAtk":6095,"maxAtk":9143},{"itemId":10800015,"className":"Episode12_EP12_FIELD_STAFF","name":"[EP12] Savinose Dysnai Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":440,"mAtk":6564},{"itemId":10800016,"className":"Episode12_EP12_FIELD_THBOW","name":"[EP12] Savinose Dysnai Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":440,"minAtk":6095,"maxAtk":9143},{"itemId":10800017,"className":"Episode12_EP12_FIELD_BOW","name":"[EP12] Savinose Dysnai Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":440,"minAtk":6367,"maxAtk":6761},{"itemId":10800018,"className":"Episode12_EP12_FIELD_MACE","name":"[EP12] Savinose Dysnai Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":440,"minAtk":6498,"maxAtk":6630,"mAtk":6564},{"itemId":10800019,"className":"Episode12_EP12_FIELD_THMACE","name":"[EP12] Savinose Dysnai Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":440,"minAtk":6857,"maxAtk":8381,"mAtk":7619},{"itemId":10800021,"className":"Episode12_EP12_FIELD_SPEAR","name":"[EP12] Savinose Dysnai Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":440,"minAtk":5908,"maxAtk":7221},{"itemId":10800022,"className":"Episode12_EP12_FIELD_THSPEAR","name":"[EP12] Savinose Dysnai Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":440,"minAtk":5333,"maxAtk":9905},{"itemId":10800024,"className":"Episode12_EP12_FIELD_THSTAFF","name":"[EP12] Savinose Dysnai Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":440,"mAtk":7619},{"itemId":10800026,"className":"Episode12_EP12_FIELD_RAPIER","name":"[EP12] Savinose Dysnai Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":440,"minAtk":6564,"maxAtk":6564},{"itemId":10800027,"className":"Episode12_EP12_FIELD_CANNON","name":"[EP12] Savinose Dysnai Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":440,"minAtk":3810,"maxAtk":11429},{"itemId":10800028,"className":"Episode12_EP12_FIELD_MUSKET","name":"[EP12] Savinose Dysnai Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":440,"minAtk":4952,"maxAtk":10286},{"itemId":10800042,"className":"2021_NewYear_EP12_FIELD_SWORD","name":"[2021] Savinose Dysnai Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":440,"minAtk":6367,"maxAtk":6761},{"itemId":10800043,"className":"2021_NewYear_EP12_FIELD_THSWORD","name":"[2021] Savinose Dysnai Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":440,"minAtk":6095,"maxAtk":9143},{"itemId":10800044,"className":"2021_NewYear_EP12_FIELD_STAFF","name":"[2021] Savinose Dysnai Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":440,"mAtk":6564},{"itemId":10800045,"className":"2021_NewYear_EP12_FIELD_THBOW","name":"[2021] Savinose Dysnai Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":440,"minAtk":6095,"maxAtk":9143},{"itemId":10800046,"className":"2021_NewYear_EP12_FIELD_BOW","name":"[2021] Savinose Dysnai Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":440,"minAtk":6367,"maxAtk":6761},{"itemId":10800047,"className":"2021_NewYear_EP12_FIELD_MACE","name":"[2021] Savinose Dysnai Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":440,"minAtk":6498,"maxAtk":6630,"mAtk":6564},{"itemId":10800048,"className":"2021_NewYear_EP12_FIELD_THMACE","name":"[2021] Savinose Dysnai Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":440,"minAtk":6857,"maxAtk":8381,"mAtk":7619},{"itemId":10800050,"className":"2021_NewYear_EP12_FIELD_SPEAR","name":"[2021] Savinose Dysnai Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":440,"minAtk":5908,"maxAtk":7221},{"itemId":10800051,"className":"2021_NewYear_EP12_FIELD_THSPEAR","name":"[2021] Savinose Dysnai Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":440,"minAtk":5333,"maxAtk":9905},{"itemId":10800053,"className":"2021_NewYear_EP12_FIELD_THSTAFF","name":"[2021] Savinose Dysnai Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":440,"mAtk":7619},{"itemId":10800055,"className":"2021_NewYear_EP12_FIELD_RAPIER","name":"[2021] Savinose Dysnai Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":440,"minAtk":6564,"maxAtk":6564},{"itemId":10800056,"className":"2021_NewYear_EP12_FIELD_CANNON","name":"[2021] Savinose Dysnai Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":440,"minAtk":3810,"maxAtk":11429},{"itemId":10800057,"className":"2021_NewYear_EP12_FIELD_MUSKET","name":"[2021] Savinose Dysnai Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":440,"minAtk":4952,"maxAtk":10286},{"itemId":10999001,"className":"TOSHero_SWORD","name":"Sword","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":970,"maxAtk":1030,"mAtk":1000,"def":1000,"mDef":1000,"script":{"strArg":"TOSHeroEquip"}},{"itemId":10999002,"className":"TOSHero_THSWORD","name":"Two-handed Sword","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":800,"maxAtk":1200,"mAtk":1000,"def":1000,"mDef":1000,"script":{"strArg":"TOSHeroEquip"}},{"itemId":10999003,"className":"TOSHero_STAFF","name":"Rod","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"minAtk":1000,"maxAtk":1000,"mAtk":1000,"def":1000,"mDef":1000,"script":{"strArg":"TOSHeroEquip"}},{"itemId":10999004,"className":"TOSHero_THBOW","name":"Bow","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":800,"maxAtk":1200,"mAtk":1000,"def":1000,"mDef":1000,"script":{"strArg":"TOSHeroEquip"}},{"itemId":10999005,"className":"TOSHero_BOW","name":"Crossbow","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":970,"maxAtk":1030,"mAtk":1000,"def":1000,"mDef":1000,"script":{"strArg":"TOSHeroEquip"}},{"itemId":10999006,"className":"TOSHero_MACE","name":"Mace","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":990,"maxAtk":1010,"mAtk":1000,"def":1000,"mDef":1000,"script":{"strArg":"TOSHeroEquip"}},{"itemId":10999007,"className":"TOSHero_THMACE","name":"Two-handed Mace","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":900,"maxAtk":1100,"mAtk":1000,"def":1000,"mDef":1000,"script":{"strArg":"TOSHeroEquip"}},{"itemId":10999009,"className":"TOSHero_SPEAR","name":"Spear","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":900,"maxAtk":1100,"mAtk":1000,"def":1000,"mDef":1000,"script":{"strArg":"TOSHeroEquip"}},{"itemId":10999010,"className":"TOSHero_THSPEAR","name":"Pike","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":700,"maxAtk":1300,"mAtk":1000,"def":1000,"mDef":1000,"script":{"strArg":"TOSHeroEquip"}},{"itemId":10999012,"className":"TOSHero_THSTAFF","name":"Staff","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"minAtk":1000,"maxAtk":1000,"mAtk":1000,"def":1000,"mDef":1000,"script":{"strArg":"TOSHeroEquip"}},{"itemId":10999014,"className":"TOSHero_RAPIER","name":"Rapier","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":1000,"maxAtk":1000,"mAtk":1000,"def":1000,"mDef":1000,"script":{"strArg":"TOSHeroEquip"}},{"itemId":10999015,"className":"TOSHero_CANNON","name":"Cannon","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":500,"maxAtk":1500,"mAtk":1000,"def":1000,"mDef":1000,"script":{"strArg":"TOSHeroEquip"}},{"itemId":10999016,"className":"TOSHero_MUSKET","name":"Musket","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":650,"maxAtk":1350,"mAtk":1000,"def":1000,"mDef":1000,"script":{"strArg":"TOSHeroEquip"}},{"itemId":11002010,"className":"EP12_SWD04_001","name":"Glacia Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":430,"minAtk":4341,"maxAtk":4610},{"itemId":11002011,"className":"EP12_TSW04_001","name":"Glacia Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":430,"minAtk":4231,"maxAtk":6347},{"itemId":11002012,"className":"EP12_SPR04_001","name":"Glacia Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":430,"minAtk":4028,"maxAtk":4923},{"itemId":11002013,"className":"EP12_TSP04_001","name":"Glacia Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":430,"minAtk":3703,"maxAtk":6876},{"itemId":11002014,"className":"EP12_MAC04_001","name":"Glacia Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":430,"minAtk":4431,"maxAtk":4520,"mAtk":4476,"addDef":795,"addMDef":795},{"itemId":11002015,"className":"EP12_TMAC04_001","name":"Glacia Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":430,"minAtk":4760,"maxAtk":5818,"mAtk":5289},{"itemId":11002016,"className":"EP12_TBW04_001","name":"Glacia Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":430,"minAtk":4231,"maxAtk":6347},{"itemId":11002017,"className":"EP12_CAN04_001","name":"Glacia Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":430,"minAtk":2645,"maxAtk":7934},{"itemId":11002019,"className":"EP12_RAP04_001","name":"Glacia Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":430,"minAtk":4476,"maxAtk":4476},{"itemId":11002021,"className":"EP12_MUS04_001","name":"Glacia Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":430,"minAtk":3438,"maxAtk":7141},{"itemId":11002022,"className":"EP12_STF04_001","name":"Glacia Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":430,"mAtk":4476},{"itemId":11002023,"className":"EP12_TSF04_001","name":"Glacia Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":105812,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":430,"mAtk":5289},{"itemId":11002025,"className":"EP12_BOW04_001","name":"Glacia Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":66133,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":430,"minAtk":4341,"maxAtk":4610},{"itemId":11007001,"className":"EP12_Artefact_001","name":"Red Fox Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007002,"className":"EP12_Artefact_002","name":"Red Fox Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007003,"className":"EP12_Artefact_003","name":"Blooming Rose Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":11007004,"className":"EP12_Artefact_004","name":"Fully Blooming Rose Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007005,"className":"EP12_Artefact_005","name":"Precious Small Rose Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007006,"className":"EP12_Artefact_006","name":"Precious Rose Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007007,"className":"EP12_Artefact_007","name":"Prickly Rose Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007008,"className":"EP12_Artefact_008","name":"Rose and the Fox Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11007010,"className":"EP12_Artefact_010","name":"Simmering Starlight Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007012,"className":"EP12_Artefact_012","name":"Boa Constrictor Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":11007013,"className":"EP12_Artefact_013","name":"Soaring Bluebird Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007014,"className":"EP12_Artefact_014","name":"Soaring Bluebird Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007016,"className":"EP12_Artefact_016","name":"East Biplane Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007017,"className":"EP12_Artefact_017","name":"Mayflower Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007018,"className":"EP12_Artefact_018","name":"Mayflower Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007019,"className":"EP12_Artefact_019","name":"Mayflower Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":11007020,"className":"EP12_Artefact_020","name":"Mayflower Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007021,"className":"EP12_Artefact_021","name":"Mayflower Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007022,"className":"EP12_Artefact_022","name":"Mayflower Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007023,"className":"EP12_Artefact_023","name":"Mayflower Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007024,"className":"EP12_Artefact_024","name":"Mayflower Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11007026,"className":"EP12_Artefact_026","name":"Mayflower Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007028,"className":"EP12_Artefact_028","name":"Mayflower Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":11007029,"className":"EP12_Artefact_029","name":"Mayflower Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007030,"className":"EP12_Artefact_030","name":"Mayflower Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007032,"className":"EP12_Artefact_032","name":"Mayflower Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007033,"className":"EP12_Artefact_033","name":"MusCATeer Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007034,"className":"EP12_Artefact_034","name":"MusCATeer Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007035,"className":"EP12_Artefact_035","name":"MusCATeer Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":11007036,"className":"EP12_Artefact_036","name":"MusCATeer Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007037,"className":"EP12_Artefact_037","name":"MusCATeer Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007038,"className":"EP12_Artefact_038","name":"MusCATeer Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007039,"className":"EP12_Artefact_039","name":"MusCATeer Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007040,"className":"EP12_Artefact_040","name":"MusCATeer Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11007042,"className":"EP12_Artefact_042","name":"MusCATeer Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007044,"className":"EP12_Artefact_044","name":"MusCATeer Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007045,"className":"EP12_Artefact_045","name":"MusCATeer Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007046,"className":"EP12_Artefact_046","name":"TOS Task Force Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007047,"className":"EP12_Artefact_047","name":"TOS Task Force Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007048,"className":"EP12_Artefact_048","name":"TOS Task Force Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":11007049,"className":"EP12_Artefact_049","name":"TOS Task Force Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007050,"className":"EP12_Artefact_050","name":"TOS Task Force Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007051,"className":"EP12_Artefact_051","name":"TOS Task Force Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007052,"className":"EP12_Artefact_052","name":"TOS Task Force Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007053,"className":"EP12_Artefact_053","name":"TOS Task Force Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11007055,"className":"EP12_Artefact_055","name":"TOS Task Force Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007057,"className":"EP12_Artefact_057","name":"TOS Task Force Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":11007058,"className":"EP12_Artefact_058","name":"TOS Task Force Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007059,"className":"EP12_Artefact_059","name":"TOS Task Force Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007061,"className":"EP12_Artefact_061","name":"TOS Task Force Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007062,"className":"EP12_Artefact_062","name":"Summer Wave Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007063,"className":"EP12_Artefact_063","name":"Summer Wave Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007064,"className":"EP12_Artefact_064","name":"Summer Wave Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":11007065,"className":"EP12_Artefact_065","name":"Summer Wave Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007066,"className":"EP12_Artefact_066","name":"Summer Wave Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007067,"className":"EP12_Artefact_067","name":"Summer Wave Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007068,"className":"EP12_Artefact_068","name":"Summer Wave Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007069,"className":"EP12_Artefact_069","name":"Summer Wave Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11007071,"className":"EP12_Artefact_071","name":"Summer Wave Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007073,"className":"EP12_Artefact_073","name":"Summer Wave Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":11007074,"className":"EP12_Artefact_074","name":"Summer Wave Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007075,"className":"EP12_Artefact_075","name":"Summer Wave Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007077,"className":"EP12_Artefact_077","name":"Summer Wave Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007078,"className":"EP12_Artefact_078","name":"Honored Rose Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007079,"className":"EP12_Artefact_079","name":"Honored Rose Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007080,"className":"EP12_Artefact_080","name":"Honored Rose Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":11007081,"className":"EP12_Artefact_081","name":"Honored Rose Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007082,"className":"EP12_Artefact_082","name":"Honored Rose Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007083,"className":"EP12_Artefact_083","name":"Honored Rose Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007084,"className":"EP12_Artefact_084","name":"Honored Rose Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007085,"className":"EP12_Artefact_085","name":"Honored Rose Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11007087,"className":"EP12_Artefact_087","name":"Honored Rose Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007089,"className":"EP12_Artefact_089","name":"Honored Rose Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":11007090,"className":"EP12_Artefact_090","name":"Honored Rose Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007091,"className":"EP12_Artefact_091","name":"Honored Rose Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007093,"className":"EP12_Artefact_093","name":"Honored Rose Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007095,"className":"EP12_Artefact_095","name":"Masquerade Blue Blossom Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007096,"className":"EP12_Artefact_096","name":"Masquerade Injector Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":11007097,"className":"EP12_Artefact_097","name":"Maru Magic Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007098,"className":"EP12_Artefact_098","name":"Littleberk Pillow Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11007100,"className":"EP12_Artefact_100","name":"Evening Star Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007101,"className":"EP12_Artefact_101","name":"Evening Star Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007102,"className":"EP12_Artefact_102","name":"Evening Star Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007103,"className":"EP13_Artefact_000","name":"Task Unit Red Beam Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007104,"className":"EP13_Artefact_001","name":"Task Unit Green Beam Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007105,"className":"EP13_Artefact_002","name":"Task Unit Red Railgun Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":11007107,"className":"EP13_Artefact_004","name":"Ice Cold Sweet Potato Drum Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11007108,"className":"EP13_Artefact_005","name":"Ice Cold Mini Heater Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007111,"className":"EP13_Artefact_008","name":"Rosy Floret Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007112,"className":"EP13_Artefact_009","name":"Rosy Floret Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007113,"className":"EP13_Artefact_010","name":"Rosy Floret Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007114,"className":"EP13_Artefact_011","name":"Rosy Floret Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007115,"className":"EP13_Artefact_012","name":"Sweet Ice Cream Spoon Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007116,"className":"EP13_Artefact_013","name":"Sweet Ice Cream Scoop Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007118,"className":"EP13_Artefact_015","name":"Criminal Explosive Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007119,"className":"EP13_Artefact_016","name":"Criminal Keen Edge Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007120,"className":"EP13_Artefact_017","name":"Criminal Dynamite Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11007121,"className":"EP13_Artefact_018","name":"Criminal Submachine Gun Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":11007122,"className":"EP13_Artefact_019","name":"Giltine Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007123,"className":"EP13_Artefact_020","name":"Giltine Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007124,"className":"EP13_Artefact_021","name":"Giltine Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":11007125,"className":"EP13_Artefact_022","name":"Giltine Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007126,"className":"EP13_Artefact_023","name":"Giltine Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007127,"className":"EP13_Artefact_024","name":"Giltine Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007128,"className":"EP13_Artefact_025","name":"Giltine Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007129,"className":"EP13_Artefact_026","name":"Giltine Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11007131,"className":"EP13_Artefact_028","name":"Giltine Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007133,"className":"EP13_Artefact_030","name":"Giltine Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":11007134,"className":"EP13_Artefact_031","name":"Giltine Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007135,"className":"EP13_Artefact_032","name":"Giltine Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007137,"className":"EP13_Artefact_034","name":"Giltine Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007138,"className":"EP13_Artefact_035","name":"STEM Smartphone Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007139,"className":"EP13_Artefact_036","name":"STEM Spoid Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007140,"className":"EP13_Artefact_037","name":"STEM Acute Angle Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007141,"className":"EP13_Artefact_038","name":"STEM Organic Chemistry Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007142,"className":"EP13_Artefact_039","name":"[Appearance Change] Vaivora Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007143,"className":"EP13_Artefact_040","name":"[Appearance Change] Vaivora Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007144,"className":"EP13_Artefact_041","name":"[Appearance Change] Vaivora Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":11007145,"className":"EP13_Artefact_042","name":"[Appearance Change] Vaivora Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007146,"className":"EP13_Artefact_043","name":"[Appearance Change] Vaivora Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007147,"className":"EP13_Artefact_044","name":"[Appearance Change] Vaivora Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007148,"className":"EP13_Artefact_045","name":"[Appearance Change] Vaivora Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007149,"className":"EP13_Artefact_046","name":"[Appearance Change] Vaivora Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11007151,"className":"EP13_Artefact_048","name":"[Appearance Change] Vaivora Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007153,"className":"EP13_Artefact_050","name":"[Appearance Change] Vaivora Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":11007154,"className":"EP13_Artefact_051","name":"[Appearance Change] Vaivora Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007155,"className":"EP13_Artefact_052","name":"[Appearance Change] Vaivora Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007157,"className":"EP13_Artefact_054","name":"[Appearance Change] Vaivora Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007158,"className":"EP13_Artefact_055","name":"[Appearance Change] Asio Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007159,"className":"EP13_Artefact_056","name":"[Appearance Change] Asio Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007160,"className":"EP13_Artefact_057","name":"[Appearance Change] Asio Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":11007161,"className":"EP13_Artefact_058","name":"[Appearance Change] Asio Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007162,"className":"EP13_Artefact_059","name":"[Appearance Change] Asio Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007163,"className":"EP13_Artefact_060","name":"[Appearance Change] Asio Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007164,"className":"EP13_Artefact_061","name":"[Appearance Change] Asio Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007165,"className":"EP13_Artefact_062","name":"[Appearance Change] Asio Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11007167,"className":"EP13_Artefact_064","name":"[Appearance Change] Asio Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007169,"className":"EP13_Artefact_066","name":"[Appearance Change] Asio Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":11007170,"className":"EP13_Artefact_067","name":"[Appearance Change] Asio Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007171,"className":"EP13_Artefact_068","name":"[Appearance Change] Asio Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007173,"className":"EP13_Artefact_070","name":"[Appearance Change] Asio Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007174,"className":"EP13_Artefact_071","name":"[Appearance Change] Wastrel Zvaigzde Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007175,"className":"EP13_Artefact_072","name":"[Appearance Change] Wastrel Zvaigzde Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007176,"className":"EP13_Artefact_073","name":"[Appearance Change] Wastrel Zvaigzde Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":11007177,"className":"EP13_Artefact_074","name":"[Appearance Change] Wastrel Zvaigzde Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007178,"className":"EP13_Artefact_075","name":"[Appearance Change] Wastrel Zvaigzde Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007179,"className":"EP13_Artefact_076","name":"[Appearance Change] Wastrel Zvaigzde Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007180,"className":"EP13_Artefact_077","name":"[Appearance Change] Wastrel Zvaigzde Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007181,"className":"EP13_Artefact_078","name":"[Appearance Change] Wastrel Zvaigzde Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11007183,"className":"EP13_Artefact_080","name":"[Appearance Change] Wastrel Zvaigzde Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007185,"className":"EP13_Artefact_082","name":"[Appearance Change] Wastrel Zvaigzde Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":11007186,"className":"EP13_Artefact_083","name":"[Appearance Change] Wastrel Zvaigzde Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007187,"className":"EP13_Artefact_084","name":"[Appearance Change] Wastrel Zvaigzde Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007189,"className":"EP13_Artefact_086","name":"[Appearance Change] Wastrel Zvaigzde Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007190,"className":"EP13_Artefact_087","name":"[Appearance Change] Masinios Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007191,"className":"EP13_Artefact_088","name":"[Appearance Change] Masinios Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007192,"className":"EP13_Artefact_089","name":"[Appearance Change] Masinios Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":11007193,"className":"EP13_Artefact_090","name":"[Appearance Change] Masinios Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007194,"className":"EP13_Artefact_091","name":"[Appearance Change] Masinios Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007195,"className":"EP13_Artefact_092","name":"[Appearance Change] Masinios Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007196,"className":"EP13_Artefact_093","name":"[Appearance Change] Masinios Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007197,"className":"EP13_Artefact_094","name":"[Appearance Change] Masinios Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11007199,"className":"EP13_Artefact_096","name":"[Appearance Change] Masinios Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007201,"className":"EP13_Artefact_098","name":"[Appearance Change] Masinios Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":11007202,"className":"EP13_Artefact_099","name":"[Appearance Change] Masinios Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007203,"className":"EP13_Artefact_100","name":"[Appearance Change] Masinios Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007205,"className":"EP13_Artefact_102","name":"[Appearance Change] Masinios Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007206,"className":"EP13_Artefact_103","name":"[Appearance Change] Moringponia Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007207,"className":"EP13_Artefact_104","name":"[Appearance Change] Moringponia Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007208,"className":"EP13_Artefact_105","name":"[Appearance Change] Moringponia Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":11007209,"className":"EP13_Artefact_106","name":"[Appearance Change] Moringponia Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007210,"className":"EP13_Artefact_107","name":"[Appearance Change] Moringponia Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007211,"className":"EP13_Artefact_108","name":"[Appearance Change] Moringponia Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007212,"className":"EP13_Artefact_109","name":"[Appearance Change] Moringponia Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007213,"className":"EP13_Artefact_110","name":"[Appearance Change] Moringponia Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11007215,"className":"EP13_Artefact_112","name":"[Appearance Change] Moringponia Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007217,"className":"EP13_Artefact_114","name":"[Appearance Change] Moringponia Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":11007218,"className":"EP13_Artefact_115","name":"[Appearance Change] Moringponia Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007219,"className":"EP13_Artefact_116","name":"[Appearance Change] Moringponia Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007221,"className":"EP13_Artefact_118","name":"[Appearance Change] Moringponia Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007222,"className":"EP13_Artefact_119","name":"TOSummer Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007223,"className":"EP13_Artefact_120","name":"TOSummer Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007225,"className":"EP13_Artefact_122","name":"TOSummer Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007226,"className":"EP13_Artefact_123","name":"TOSummer Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007227,"className":"EP13_Artefact_124","name":"TOSummer Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007228,"className":"EP13_Artefact_125","name":"Drip Drop Dewy Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007229,"className":"EP13_Artefact_126","name":"Drip Drop Rainbow Umbrella Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":11007230,"className":"EP13_Artefact_127","name":"Drip Drop Lightning Cloud Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007231,"className":"EP13_Artefact_128","name":"Drip Drop Weather Doll Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007232,"className":"EP13_Artefact_129","name":"Drip Drop Frog Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007233,"className":"EP13_Artefact_130","name":"Good ol'days Electric Guitar Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007235,"className":"EP13_Artefact_132","name":"Good ol'days Pintail Comb Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007236,"className":"EP13_Artefact_133","name":"Good ol'days Neon Sign Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007237,"className":"EP13_Artefact_134","name":"Good ol'days LP Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007238,"className":"EP13_Artefact_135","name":"Armonia Two-handed Sword of Otherworld","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007239,"className":"EP13_Artefact_136","name":"Armonia Pike of Otherworld","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007240,"className":"EP13_Artefact_137","name":"Armonia Musket of Otherworld","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":11007243,"className":"EP13_Artefact_140","name":"Athleisure Barbell Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007244,"className":"EP13_Artefact_141","name":"Athleisure Tennis Racket Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007247,"className":"EP13_Artefact_144","name":"Asgard Mjolnir Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007248,"className":"EP13_Artefact_145","name":"Asgard Mjolnir Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007249,"className":"EP13_Artefact_146","name":"Asgard Mimir Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007250,"className":"EP13_Artefact_147","name":"Asgard Mimir Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007251,"className":"EP13_Artefact_148","name":"Asgard Gungnir Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":11007252,"className":"EP13_Artefact_149","name":"Asgard Gungnir Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007253,"className":"EP13_Artefact_150","name":"Servant Ceremonial Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":11007254,"className":"EP13_Artefact_151","name":"Servant Dusty Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007255,"className":"EP13_Artefact_152","name":"Servant Candlestick Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007256,"className":"EP13_Artefact_153","name":"Servant Butterknife Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007257,"className":"EP13_Artefact_154","name":"[Appearance Change] Solmiki Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007258,"className":"EP13_Artefact_155","name":"[Appearance Change] Solmiki Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007259,"className":"EP13_Artefact_156","name":"[Appearance Change] Solmiki Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":11007260,"className":"EP13_Artefact_157","name":"[Appearance Change] Solmiki Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007261,"className":"EP13_Artefact_158","name":"[Appearance Change] Solmiki Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007262,"className":"EP13_Artefact_159","name":"[Appearance Change] Solmiki Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007263,"className":"EP13_Artefact_160","name":"[Appearance Change] Solmiki Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007264,"className":"EP13_Artefact_161","name":"[Appearance Change] Solmiki Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11007266,"className":"EP13_Artefact_163","name":"[Appearance Change] Solmiki Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007268,"className":"EP13_Artefact_165","name":"[Appearance Change] Solmiki Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":11007269,"className":"EP13_Artefact_166","name":"[Appearance Change] Solmiki Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007270,"className":"EP13_Artefact_167","name":"[Appearance Change] Solmiki Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007272,"className":"EP13_Artefact_169","name":"[Appearance Change] Solmiki Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007273,"className":"EP13_Artefact_170","name":"[Appearance Change] Skiaclipse Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007274,"className":"EP13_Artefact_171","name":"[Appearance Change] Skiaclipse Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007275,"className":"EP13_Artefact_172","name":"[Appearance Change] Skiaclipse Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":11007276,"className":"EP13_Artefact_173","name":"[Appearance Change] Skiaclipse Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007277,"className":"EP13_Artefact_174","name":"[Appearance Change] Skiaclipse Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007278,"className":"EP13_Artefact_175","name":"[Appearance Change] Skiaclipse Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007279,"className":"EP13_Artefact_176","name":"[Appearance Change] Skiaclipse Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007280,"className":"EP13_Artefact_177","name":"[Appearance Change] Skiaclipse Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11007282,"className":"EP13_Artefact_179","name":"[Appearance Change] Skiaclipse Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007284,"className":"EP13_Artefact_181","name":"[Appearance Change] Skiaclipse Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":11007285,"className":"EP13_Artefact_182","name":"[Appearance Change] Skiaclipse Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007286,"className":"EP13_Artefact_183","name":"[Appearance Change] Skiaclipse Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007288,"className":"EP13_Artefact_185","name":"[Appearance Change] Skiaclipse Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007289,"className":"EP13_Artefact_186","name":"[Appearance Change] Velcoffer Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007290,"className":"EP13_Artefact_187","name":"[Appearance Change] Velcoffer Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007291,"className":"EP13_Artefact_188","name":"[Appearance Change] Velcoffer Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":11007292,"className":"EP13_Artefact_189","name":"[Appearance Change] Velcoffer Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007293,"className":"EP13_Artefact_190","name":"[Appearance Change] Velcoffer Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007294,"className":"EP13_Artefact_191","name":"[Appearance Change] Velcoffer Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007295,"className":"EP13_Artefact_192","name":"[Appearance Change] Velcoffer Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007296,"className":"EP13_Artefact_193","name":"[Appearance Change] Velcoffer Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11007298,"className":"EP13_Artefact_195","name":"[Appearance Change] Velcoffer Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007300,"className":"EP13_Artefact_197","name":"[Appearance Change] Velcoffer Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":11007301,"className":"EP13_Artefact_198","name":"[Appearance Change] Velcoffer Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007302,"className":"EP13_Artefact_199","name":"[Appearance Change] Velcoffer Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007304,"className":"EP13_Artefact_201","name":"[Appearance Change] Velcoffer Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007305,"className":"EP13_Artefact_202","name":"[Appearance Change] Lolopanther Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007306,"className":"EP13_Artefact_203","name":"[Appearance Change] Lolopanther Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007307,"className":"EP13_Artefact_204","name":"[Appearance Change] Lolopanther Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":11007308,"className":"EP13_Artefact_205","name":"[Appearance Change] Lolopanther Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007309,"className":"EP13_Artefact_206","name":"[Appearance Change] Lolopanther Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007310,"className":"EP13_Artefact_207","name":"[Appearance Change] Lolopanther Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007311,"className":"EP13_Artefact_208","name":"[Appearance Change] Lolopanther Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007312,"className":"EP13_Artefact_209","name":"[Appearance Change] Lolopanther Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11007314,"className":"EP13_Artefact_211","name":"[Appearance Change] Lolopanther Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007316,"className":"EP13_Artefact_213","name":"[Appearance Change] Lolopanther Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":11007317,"className":"EP13_Artefact_214","name":"[Appearance Change] Lolopanther Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007318,"className":"EP13_Artefact_215","name":"[Appearance Change] Lolopanther Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007320,"className":"EP13_Artefact_217","name":"[Appearance Change] Lolopanther Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007321,"className":"EP13_Artefact_218","name":"Animal Kindergarten Bubble Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007322,"className":"EP13_Artefact_219","name":"Animal Kindergarten Cotton Candy Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007323,"className":"EP13_Artefact_220","name":"Animal Kindergarten Duckling Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007324,"className":"EP13_Artefact_221","name":"Animal Kindergarten Candy Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007325,"className":"EP12_Re_Artefact_001","name":"[Re] Red Fox Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007326,"className":"EP12_Re_Artefact_002","name":"[Re] Red Fox Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007327,"className":"EP12_Re_Artefact_003","name":"[Re] Blooming Rose Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":11007328,"className":"EP12_Re_Artefact_004","name":"[Re] Fully Blooming Rose Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007329,"className":"EP12_Re_Artefact_005","name":"[Re] Precious Small Rose Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007330,"className":"EP12_Re_Artefact_006","name":"[Re] Precious Rose Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007331,"className":"EP12_Re_Artefact_007","name":"[Re] Prickly Rose Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007332,"className":"EP12_Re_Artefact_008","name":"[Re] Rose and the Fox Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11007334,"className":"EP12_Re_Artefact_010","name":"[Re] Simmering Starlight Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007336,"className":"EP12_Re_Artefact_012","name":"[Re] Boa Constrictor Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":11007337,"className":"EP12_Re_Artefact_013","name":"[Re] Soaring Bluebird Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007338,"className":"EP12_Re_Artefact_014","name":"[Re] Soaring Bluebird Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007340,"className":"EP12_Re_Artefact_016","name":"[Re] East Biplane Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007341,"className":"EP12_Re_Artefact_634150","name":"[Re] The Bat Count Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007342,"className":"EP12_Re_Artefact_634151","name":"[Re] The Bat Count Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007343,"className":"EP12_Re_Artefact_634152","name":"[Re] Pumpkin Lantern Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":11007344,"className":"EP12_Re_Artefact_634153","name":"[Re] Pumpkin Streetlamp Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007345,"className":"EP12_Re_Artefact_634154","name":"[Re] Surgical Scissors Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007346,"className":"EP12_Re_Artefact_634155","name":"[Re] Ripped Teddy Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007347,"className":"EP12_Re_Artefact_634156","name":"[Re] Rag Doll Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007348,"className":"EP12_Re_Artefact_634157","name":"[Re] Haunted Oak Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007349,"className":"EP12_Re_Artefact_634158","name":"[Re] Clown Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007350,"className":"EP12_Re_Artefact_634159","name":"[Re] Pumpkin Mage Musket","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59,"script":{"strArg":"WoodCarving"}},{"itemId":11007351,"className":"EP12_Re_Artefact_634160","name":"[Re] Heavy Coffin Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11007354,"className":"EP12_Re_Artefact_634163","name":"[Re] Haunted Skull Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007355,"className":"EP12_Re_Artefact_634164","name":"[Re] Hallowventer Hand Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007357,"className":"EP12_Re_Artefact_634121","name":"[Re] Whisk Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":11007358,"className":"EP12_Re_Artefact_634122","name":"[Re] Fish-Carver Raiper","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007359,"className":"EP12_Re_Artefact_634123","name":"[Re] Wine Glass Rod","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007360,"className":"EP12_Re_Artefact_634124","name":"[Re] Saltshaker Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007362,"className":"EP12_Re_Artefact_634126","name":"[Re] Whisk Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007363,"className":"EP12_Re_Artefact_634127","name":"[Re] Pepper Shaker Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007364,"className":"EP12_Re_Artefact_634128","name":"[Re] Spatula Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007366,"className":"EP12_Re_Artefact_634130","name":"[Re] Two-handed Butcher Knife","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007367,"className":"EP12_Re_Artefact_634131","name":"[Re] Pepper Grinder Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11007369,"className":"EP12_Re_Artefact_634133","name":"[Re] Table Knife Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007370,"className":"EP14_Artefact_001","name":"Eternal Savior Lumen Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007371,"className":"EP14_Artefact_002","name":"Eternal Savior Nox Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007372,"className":"EP14_Artefact_003","name":"Tos Hero Crossbow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11007373,"className":"EP14_Artefact_004","name":"Tos Hero Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007375,"className":"EP14_Artefact_006","name":"Knight of Zemyna Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007377,"className":"EP14_Artefact_008","name":"Knight of Zemyna Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007378,"className":"EP14_Artefact_009","name":"Knight of Zemyna Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007379,"className":"EP14_Artefact_010","name":"TOS Metal Electric Base Pike","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57,"script":{"strArg":"WoodCarving"}},{"itemId":11007381,"className":"EP14_Artefact_012","name":"TOS Metal Spiky Bat Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007382,"className":"EP14_Artefact_013","name":"TOS Metal Flaming Torch Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007383,"className":"EP14_Artefact_014","name":"Heliopolis Anubis Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11007385,"className":"EP14_Artefact_016","name":"Heliopolis Horus Spear","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41,"script":{"strArg":"WoodCarving"}},{"itemId":11007386,"className":"EP14_Artefact_017","name":"Major Arcana The Tower Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11007388,"className":"EP14_Artefact_019","name":"Major Arcana The Star Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11007389,"className":"EP14_Artefact_020","name":"Furry Sky Doggy Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11007390,"className":"EP14_Artefact_021","name":"Furry Noble Fox Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11007391,"className":"EP14_Artefact_022","name":"Furry Golden Fox Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11020001,"className":"EP12_FIELD_SWORD","name":"Savinose Dysnai Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":440,"minAtk":6367,"maxAtk":6761,"script":{"strArg":"Legenda"}},{"itemId":11020002,"className":"EP12_FIELD_THSWORD","name":"Savinose Dysnai Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":440,"minAtk":6095,"maxAtk":9143,"script":{"strArg":"Legenda"}},{"itemId":11020003,"className":"EP12_FIELD_STAFF","name":"Savinose Dysnai Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":440,"mAtk":6564,"script":{"strArg":"Legenda"}},{"itemId":11020004,"className":"EP12_FIELD_THBOW","name":"Savinose Dysnai Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":440,"minAtk":6095,"maxAtk":9143,"script":{"strArg":"Legenda"}},{"itemId":11020005,"className":"EP12_FIELD_BOW","name":"Savinose Dysnai Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":440,"minAtk":6367,"maxAtk":6761,"script":{"strArg":"Legenda"}},{"itemId":11020006,"className":"EP12_FIELD_MACE","name":"Savinose Dysnai Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":440,"minAtk":6498,"maxAtk":6630,"mAtk":6564,"script":{"strArg":"Legenda"}},{"itemId":11020007,"className":"EP12_FIELD_THMACE","name":"Savinose Dysnai Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":440,"minAtk":6857,"maxAtk":8381,"mAtk":7619,"script":{"strArg":"Legenda"}},{"itemId":11020009,"className":"EP12_FIELD_SPEAR","name":"Savinose Dysnai Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":440,"minAtk":5908,"maxAtk":7221,"script":{"strArg":"Legenda"}},{"itemId":11020010,"className":"EP12_FIELD_THSPEAR","name":"Savinose Dysnai Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":440,"minAtk":5333,"maxAtk":9905,"script":{"strArg":"Legenda"}},{"itemId":11020012,"className":"EP12_FIELD_THSTAFF","name":"Savinose Dysnai Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":440,"mAtk":7619,"script":{"strArg":"Legenda"}},{"itemId":11020014,"className":"EP12_FIELD_RAPIER","name":"Savinose Dysnai Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":440,"minAtk":6564,"maxAtk":6564,"script":{"strArg":"Legenda"}},{"itemId":11020015,"className":"EP12_FIELD_CANNON","name":"Savinose Dysnai Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":440,"minAtk":3810,"maxAtk":11429,"script":{"strArg":"Legenda"}},{"itemId":11020016,"className":"EP12_FIELD_MUSKET","name":"Savinose Dysnai Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":440,"minAtk":4952,"maxAtk":10286,"script":{"strArg":"Legenda"}},{"itemId":11020018,"className":"EP12_RAID_SWORD","name":"Glacia Legenda Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":440,"minAtk":6367,"maxAtk":6761,"script":{"strArg":"Legenda"}},{"itemId":11020019,"className":"EP12_RAID_THSWORD","name":"Glacia Legenda Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":440,"minAtk":6095,"maxAtk":9143,"script":{"strArg":"Legenda"}},{"itemId":11020020,"className":"EP12_RAID_STAFF","name":"Glacia Legenda Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":440,"mAtk":6564,"script":{"strArg":"Legenda"}},{"itemId":11020021,"className":"EP12_RAID_THBOW","name":"Glacia Legenda Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":440,"minAtk":6095,"maxAtk":9143,"script":{"strArg":"Legenda"}},{"itemId":11020022,"className":"EP12_RAID_BOW","name":"Glacia Legenda Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":440,"minAtk":6367,"maxAtk":6761,"script":{"strArg":"Legenda"}},{"itemId":11020023,"className":"EP12_RAID_MACE","name":"Glacia Legenda Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":440,"minAtk":6498,"maxAtk":6630,"mAtk":6564,"script":{"strArg":"Legenda"}},{"itemId":11020024,"className":"EP12_RAID_THMACE","name":"Glacia Legenda Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":440,"minAtk":6857,"maxAtk":8381,"mAtk":7619,"script":{"strArg":"Legenda"}},{"itemId":11020026,"className":"EP12_RAID_SPEAR","name":"Glacia Legenda Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":440,"minAtk":5908,"maxAtk":7221,"script":{"strArg":"Legenda"}},{"itemId":11020027,"className":"EP12_RAID_THSPEAR","name":"Glacia Legenda Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":440,"minAtk":5333,"maxAtk":9905,"script":{"strArg":"Legenda"}},{"itemId":11020029,"className":"EP12_RAID_THSTAFF","name":"Glacia Legenda Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":440,"mAtk":7619,"script":{"strArg":"Legenda"}},{"itemId":11020031,"className":"EP12_RAID_RAPIER","name":"Glacia Legenda Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":73752,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":440,"minAtk":6564,"maxAtk":6564,"script":{"strArg":"Legenda"}},{"itemId":11020032,"className":"EP12_RAID_CANNON","name":"Glacia Legenda Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":440,"minAtk":3810,"maxAtk":11429,"script":{"strArg":"Legenda"}},{"itemId":11020033,"className":"EP12_RAID_MUSKET","name":"Glacia Legenda Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":118003,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":440,"minAtk":4952,"maxAtk":10286,"script":{"strArg":"Legenda"}},{"itemId":11040004,"className":"Dummy_Sword_Guilty","name":"Liberated Res Sacrae Sword","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38},{"itemId":11040005,"className":"Dummy_Thsword_Guilty","name":"Liberated Res Sacrae Two-handed Sword","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53},{"itemId":11040006,"className":"Dummy_Spear_Guilty","name":"Liberated Res Sacrae Spear","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":33,"maxAtk":41},{"itemId":11040007,"className":"Dummy_Thspear_Guilty","name":"Liberated Res Sacrae Pike","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":31,"maxAtk":57},{"itemId":11040008,"className":"Dummy_Mace_Guilty","name":"Liberated Res Sacrae Mace","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37},{"itemId":11040009,"className":"Dummy_Thmace_Guilty","name":"Liberated Res Sacrae Two-handed Mace","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44},{"itemId":11040010,"className":"Dummy_Bow_Guilty","name":"Liberated Res Sacrae Bow","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53},{"itemId":11040011,"className":"Dummy_Cannon_Guilty","name":"Liberated Res Sacrae Cannon","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66},{"itemId":11040013,"className":"Dummy_Rapier_Guilty","name":"Liberated Res Sacrae Rapier","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37},{"itemId":11040015,"className":"Dummy_Musket_Guilty","name":"Liberated Res Sacrae Musket","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":29,"maxAtk":59},{"itemId":11040016,"className":"Dummy_Rod_Guilty","name":"Liberated Res Sacrae Rod","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":37},{"itemId":11040017,"className":"Dummy_Staff_Guilty","name":"Liberated Res Sacrae Staff","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44},{"itemId":11040019,"className":"Dummy_Crossbow_Guilty","name":"Liberated Res Sacrae Crossbow","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":36,"maxAtk":38},{"itemId":11043001,"className":"EP14_Contents_Artefact_001","name":"Baubas Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11043002,"className":"EP14_Contents_Artefact_002","name":"Baubas Two-handed Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11095000,"className":"EP13_RAID_SWORD","name":"Vasilisa Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":460,"minAtk":12734,"maxAtk":13522,"script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11095001,"className":"EP13_RAID_THSWORD","name":"Vasilisa Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":460,"minAtk":12078,"maxAtk":18117,"script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11095002,"className":"EP13_RAID_STAFF","name":"Vasilisa Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":460,"mAtk":13128,"script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11095003,"className":"EP13_RAID_THBOW","name":"Vasilisa Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":460,"minAtk":12078,"maxAtk":18117,"script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11095004,"className":"EP13_RAID_BOW","name":"Vasilisa Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":460,"minAtk":12734,"maxAtk":13522,"script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11095005,"className":"EP13_RAID_MACE","name":"Vasilisa Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":460,"minAtk":12997,"maxAtk":13259,"mAtk":13128,"script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11095006,"className":"EP13_RAID_THMACE","name":"Vasilisa Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":460,"minAtk":13587,"maxAtk":16607,"mAtk":15097,"script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11095008,"className":"EP13_RAID_SPEAR","name":"Vasilisa Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":460,"minAtk":11815,"maxAtk":14441,"script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11095009,"className":"EP13_RAID_THSPEAR","name":"Vasilisa Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":460,"minAtk":10568,"maxAtk":19626,"script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11095011,"className":"EP13_RAID_THSTAFF","name":"Vasilisa Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":460,"mAtk":15097,"script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11095013,"className":"EP13_RAID_RAPIER","name":"Vasilisa Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":73904,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":460,"minAtk":13128,"maxAtk":13128,"script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11095014,"className":"EP13_RAID_CANNON","name":"Vasilisa Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":460,"minAtk":7549,"maxAtk":22646,"script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11095015,"className":"EP13_RAID_MUSKET","name":"Vasilisa Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":118246,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":460,"minAtk":9813,"maxAtk":20381,"script":{"strArg":"Goddess_Vasilisa"}},{"itemId":11096500,"className":"GROWTH_REINFORCE_TIER1_SWORD","name":"Guardian Sword","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":78,"maxAtk":82,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier1"}},{"itemId":11096501,"className":"GROWTH_REINFORCE_TIER1_THSWORD","name":"Guardian Two-handed Sword","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":1,"minAtk":75,"maxAtk":113,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier1"}},{"itemId":11096502,"className":"GROWTH_REINFORCE_TIER1_STAFF","name":"Guardian Rod","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":1,"mAtk":80,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier1"}},{"itemId":11096503,"className":"GROWTH_REINFORCE_TIER1_THBOW","name":"Guardian Bow","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":75,"maxAtk":113,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier1"}},{"itemId":11096504,"className":"GROWTH_REINFORCE_TIER1_BOW","name":"Guardian Crossbow","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":1,"minAtk":78,"maxAtk":82,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier1"}},{"itemId":11096505,"className":"GROWTH_REINFORCE_TIER1_MACE","name":"Guardian Mace","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":79,"maxAtk":81,"mAtk":80,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier1"}},{"itemId":11096506,"className":"GROWTH_REINFORCE_TIER1_THMACE","name":"Guardian Two-handed Mace","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":85,"maxAtk":103,"mAtk":94,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier1"}},{"itemId":11096508,"className":"GROWTH_REINFORCE_TIER1_SPEAR","name":"Guardian Spear","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":1,"minAtk":72,"maxAtk":88,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier1"}},{"itemId":11096509,"className":"GROWTH_REINFORCE_TIER1_THSPEAR","name":"Guardian Pike","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":1,"minAtk":66,"maxAtk":122,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier1"}},{"itemId":11096511,"className":"GROWTH_REINFORCE_TIER1_THSTAFF","name":"Guardian Staff","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":94,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier1"}},{"itemId":11096513,"className":"GROWTH_REINFORCE_TIER1_RAPIER","name":"Guardian Rapier","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":80,"maxAtk":80,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier1"}},{"itemId":11096514,"className":"GROWTH_REINFORCE_TIER1_CANNON","name":"Guardian Cannon","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":47,"maxAtk":141,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier1"}},{"itemId":11096515,"className":"GROWTH_REINFORCE_TIER1_MUSKET","name":"Guardian Musket","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":1,"minAtk":61,"maxAtk":127,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier1"}},{"itemId":11096530,"className":"GROWTH_REINFORCE_TIER2_SWORD","name":"Elite Guardian Sword","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":120,"minAtk":1809,"maxAtk":1921,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier2"}},{"itemId":11096531,"className":"GROWTH_REINFORCE_TIER2_THSWORD","name":"Elite Guardian Two-handed Sword","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":120,"minAtk":1692,"maxAtk":2538,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier2"}},{"itemId":11096532,"className":"GROWTH_REINFORCE_TIER2_STAFF","name":"Elite Guardian Rod","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":120,"mAtk":1865,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier2"}},{"itemId":11096533,"className":"GROWTH_REINFORCE_TIER2_THBOW","name":"Elite Guardian Bow","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":120,"minAtk":1692,"maxAtk":2538,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier2"}},{"itemId":11096534,"className":"GROWTH_REINFORCE_TIER2_BOW","name":"Elite Guardian Crossbow","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":120,"minAtk":1809,"maxAtk":1921,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier2"}},{"itemId":11096535,"className":"GROWTH_REINFORCE_TIER2_MACE","name":"Elite Guardian Mace","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":120,"minAtk":1846,"maxAtk":1884,"mAtk":1865,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier2"}},{"itemId":11096536,"className":"GROWTH_REINFORCE_TIER2_THMACE","name":"Elite Guardian Two-handed Mace","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":120,"minAtk":1903,"maxAtk":2327,"mAtk":2115,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier2"}},{"itemId":11096538,"className":"GROWTH_REINFORCE_TIER2_SPEAR","name":"Elite Guardian Spear","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":120,"minAtk":1678,"maxAtk":2052,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier2"}},{"itemId":11096539,"className":"GROWTH_REINFORCE_TIER2_THSPEAR","name":"Elite Guardian Pike","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":120,"minAtk":1481,"maxAtk":2749,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier2"}},{"itemId":11096541,"className":"GROWTH_REINFORCE_TIER2_THSTAFF","name":"Elite Guardian Staff","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":120,"mAtk":2115,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier2"}},{"itemId":11096543,"className":"GROWTH_REINFORCE_TIER2_RAPIER","name":"Elite Guardian Rapier","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":15520,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":120,"minAtk":1865,"maxAtk":1865,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier2"}},{"itemId":11096544,"className":"GROWTH_REINFORCE_TIER2_CANNON","name":"Elite Guardian Cannon","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":120,"minAtk":1058,"maxAtk":3173,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier2"}},{"itemId":11096545,"className":"GROWTH_REINFORCE_TIER2_MUSKET","name":"Elite Guardian Musket","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":24832,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":120,"minAtk":1375,"maxAtk":2855,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier2"}},{"itemId":11096570,"className":"GROWTH_REINFORCE_TIER3_SWORD","name":"Royal Guardian Sword","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":41280,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":280,"minAtk":8358,"maxAtk":8874,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier3"}},{"itemId":11096571,"className":"GROWTH_REINFORCE_TIER3_THSWORD","name":"Royal Guardian Two-handed Sword","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":66048,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":280,"minAtk":7815,"maxAtk":11723,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier3"}},{"itemId":11096572,"className":"GROWTH_REINFORCE_TIER3_STAFF","name":"Royal Guardian Rod","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":41280,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":280,"mAtk":8616,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier3"}},{"itemId":11096573,"className":"GROWTH_REINFORCE_TIER3_THBOW","name":"Royal Guardian Bow","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":66048,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":280,"minAtk":7815,"maxAtk":11723,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier3"}},{"itemId":11096574,"className":"GROWTH_REINFORCE_TIER3_BOW","name":"Royal Guardian Crossbow","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":41280,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":280,"minAtk":8358,"maxAtk":8874,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier3"}},{"itemId":11096575,"className":"GROWTH_REINFORCE_TIER3_MACE","name":"Royal Guardian Mace","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":41280,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":280,"minAtk":8530,"maxAtk":8702,"mAtk":8616,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier3"}},{"itemId":11096576,"className":"GROWTH_REINFORCE_TIER3_THMACE","name":"Royal Guardian Two-handed Mace","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":66048,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":280,"minAtk":8792,"maxAtk":10746,"mAtk":9769,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier3"}},{"itemId":11096578,"className":"GROWTH_REINFORCE_TIER3_SPEAR","name":"Royal Guardian Spear","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":41280,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":280,"minAtk":7754,"maxAtk":9478,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier3"}},{"itemId":11096579,"className":"GROWTH_REINFORCE_TIER3_THSPEAR","name":"Royal Guardian Pike","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":66048,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":280,"minAtk":6838,"maxAtk":12700,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier3"}},{"itemId":11096581,"className":"GROWTH_REINFORCE_TIER3_THSTAFF","name":"Royal Guardian Staff","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":66048,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":280,"mAtk":9769,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier3"}},{"itemId":11096583,"className":"GROWTH_REINFORCE_TIER3_RAPIER","name":"Royal Guardian Rapier","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":41280,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":280,"minAtk":8616,"maxAtk":8616,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier3"}},{"itemId":11096584,"className":"GROWTH_REINFORCE_TIER3_CANNON","name":"Royal Guardian Cannon","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":66048,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":280,"minAtk":4885,"maxAtk":14654,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier3"}},{"itemId":11096585,"className":"GROWTH_REINFORCE_TIER3_MUSKET","name":"Royal Guardian Musket","type":"Equip","group":"Weapon","weight":0,"maxStack":1,"price":66048,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":280,"minAtk":6350,"maxAtk":13188,"script":{"strArg":"Growth_By_Reinforce/Growth_Goddess_Tier3"}},{"itemId":11100027,"className":"EP14_RAID_SWORD","name":"Reservoir Sword","type":"Equip","group":"Weapon","weight":170,"maxStack":1,"price":74361,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":480,"minAtk":29634,"maxAtk":31468,"script":{"strArg":"Goddess_Weapon_Lv480"}},{"itemId":11100028,"className":"EP14_RAID_THSWORD","name":"Reservoir Two-handed Sword","type":"Equip","group":"Weapon","weight":220,"maxStack":1,"price":118977,"sellPrice":0,"equipType1":"THSword","equipType2":"Sword","minLevel":480,"minAtk":28107,"maxAtk":42160,"script":{"strArg":"Goddess_Weapon_Lv480"}},{"itemId":11100029,"className":"EP14_RAID_STAFF","name":"Reservoir Rod","type":"Equip","group":"Weapon","weight":130,"maxStack":1,"price":74361,"sellPrice":0,"equipType1":"Staff","equipType2":"Staff","minLevel":480,"mAtk":30551,"script":{"strArg":"Goddess_Weapon_Lv480"}},{"itemId":11100030,"className":"EP14_RAID_THBOW","name":"Reservoir Bow","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":118977,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":480,"minAtk":28107,"maxAtk":42160,"script":{"strArg":"Goddess_Weapon_Lv480"}},{"itemId":11100031,"className":"EP14_RAID_BOW","name":"Reservoir Crossbow","type":"Equip","group":"Weapon","weight":150,"maxStack":1,"price":74361,"sellPrice":0,"equipType1":"Bow","equipType2":"Bow","minLevel":480,"minAtk":29634,"maxAtk":31468,"script":{"strArg":"Goddess_Weapon_Lv480"}},{"itemId":11100032,"className":"EP14_RAID_MACE","name":"Reservoir Mace","type":"Equip","group":"Weapon","weight":160,"maxStack":1,"price":74361,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":480,"minAtk":30245,"maxAtk":30857,"mAtk":30551,"script":{"strArg":"Goddess_Weapon_Lv480"}},{"itemId":11100033,"className":"EP14_RAID_THMACE","name":"Reservoir Two-handed Mace","type":"Equip","group":"Weapon","weight":190,"maxStack":1,"price":118977,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":480,"minAtk":31620,"maxAtk":38647,"mAtk":35134,"script":{"strArg":"Goddess_Weapon_Lv480"}},{"itemId":11100035,"className":"EP14_RAID_SPEAR","name":"Reservoir Spear","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":74361,"sellPrice":0,"equipType1":"Spear","equipType2":"Spear","minLevel":480,"minAtk":27496,"maxAtk":33606,"script":{"strArg":"Goddess_Weapon_Lv480"}},{"itemId":11100036,"className":"EP14_RAID_THSPEAR","name":"Reservoir Pike","type":"Equip","group":"Weapon","weight":260,"maxStack":1,"price":118977,"sellPrice":0,"equipType1":"THSpear","equipType2":"Spear","minLevel":480,"minAtk":24594,"maxAtk":45674,"script":{"strArg":"Goddess_Weapon_Lv480"}},{"itemId":11100038,"className":"EP14_RAID_THSTAFF","name":"Reservoir Staff","type":"Equip","group":"Weapon","weight":230,"maxStack":1,"price":118977,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":480,"mAtk":35134,"script":{"strArg":"Goddess_Weapon_Lv480"}},{"itemId":11100040,"className":"EP14_RAID_RAPIER","name":"Reservoir Rapier","type":"Equip","group":"Weapon","weight":140,"maxStack":1,"price":74361,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":480,"minAtk":30551,"maxAtk":30551,"script":{"strArg":"Goddess_Weapon_Lv480"}},{"itemId":11100041,"className":"EP14_RAID_CANNON","name":"Reservoir Cannon","type":"Equip","group":"Weapon","weight":100,"maxStack":1,"price":118977,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":480,"minAtk":17567,"maxAtk":52700,"script":{"strArg":"Goddess_Weapon_Lv480"}},{"itemId":11100042,"className":"EP14_RAID_MUSKET","name":"Reservoir Musket","type":"Equip","group":"Weapon","weight":125,"maxStack":1,"price":118977,"sellPrice":0,"equipType1":"Musket","equipType2":"Gun","minLevel":480,"minAtk":22837,"maxAtk":47430,"script":{"strArg":"Goddess_Weapon_Lv480"}},{"itemId":11104001,"className":"guiltynelaima_bow","name":"Goddess Sister's Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}},{"itemId":11104002,"className":"guiltynelaima_sword","name":"Goddess Sister's Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11104004,"className":"guiltynelaima_staff","name":"Goddess Sister's Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11104005,"className":"guiltynelaima_thmace","name":"Goddess Sister's Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11104007,"className":"EP15_Artefact_001","name":"Lofty Snow Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11104009,"className":"EP15_Artefact_003","name":"Lofty Snow Tuna Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11104011,"className":"ep15spring01_thmace","name":"Spring Fluff Two-handed Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THMace","equipType2":"Mace","minLevel":1,"minAtk":39,"maxAtk":48,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11104012,"className":"ep15spring01_mace","name":"Spring Fluff Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11104013,"className":"ep15spring01_rapier","name":"Spring Fluff Rapier","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Rapier","equipType2":"Sword","minLevel":1,"minAtk":37,"maxAtk":37,"material":"Aries","script":{"strArg":"WoodCarving"}},{"itemId":11104015,"className":"ep15picnic_sword","name":"Picnic Sword","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Sword","equipType2":"Sword","minLevel":1,"minAtk":36,"maxAtk":38,"script":{"strArg":"WoodCarving"}},{"itemId":11104016,"className":"ep15picnic_thstaff","name":"Picnic Staff","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THStaff","equipType2":"Staff","minLevel":1,"mAtk":44,"script":{"strArg":"WoodCarving"}},{"itemId":11104017,"className":"ep15picnic_cannon","name":"Picnic Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11104018,"className":"ep15unicorn_mace","name":"Unicorn PJs Mace","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":400,"sellPrice":0,"equipType1":"Mace","equipType2":"Mace","minLevel":1,"minAtk":37,"maxAtk":37,"mAtk":37,"script":{"strArg":"WoodCarving"}},{"itemId":11104020,"className":"ep15unicorn_cannon","name":"Unicorn PJs Cannon","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"Cannon","equipType2":"Gun","minLevel":1,"minAtk":22,"maxAtk":66,"script":{"strArg":"WoodCarving"}},{"itemId":11104021,"className":"ep15unicorn_bow","name":"Unicorn PJs Bow","type":"Equip","group":"Weapon","weight":10,"maxStack":1,"price":640,"sellPrice":0,"equipType1":"THBow","equipType2":"Bow","minLevel":1,"minAtk":35,"maxAtk":53,"script":{"strArg":"WoodCarving"}}]
\ No newline at end of file
diff --git a/system/web-optional/MeliaGUI/storage/app/db/jobs.json b/system/web-optional/MeliaGUI/storage/app/db/jobs.json
new file mode 100644
index 000000000..2d5aa154c
--- /dev/null
+++ b/system/web-optional/MeliaGUI/storage/app/db/jobs.json
@@ -0,0 +1 @@
+[{"jobId":1001,"className":"Char1_1","initial":"WAR","jobClass":"Swordsman","name":"Swordsman","rank":1,"str":7,"con":7,"int":2,"spr":3,"dex":6,"strRatio":75,"conRatio":75,"intRatio":0,"sprRatio":0,"dexRatio":50,"hpRate":1,"spRate":1,"stamina":25000,"defRate":2,"mdefRate":1,"hrRate":1,"drRate":1,"blkRate":1.5,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.2,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10001},{"jobId":1002,"className":"Char1_2","initial":"HLD","jobClass":"Swordsman","name":"Highlander","rank":2,"str":7,"con":7,"int":2,"spr":3,"dex":6,"strRatio":95,"conRatio":25,"intRatio":0,"sprRatio":0,"dexRatio":80,"hpRate":1,"spRate":1,"stamina":25000,"defRate":2,"mdefRate":1,"hrRate":1,"drRate":1,"blkRate":1.5,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.2,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10000},{"jobId":1003,"className":"Char1_3","initial":"PEL","jobClass":"Swordsman","name":"Peltasta","rank":2,"str":7,"con":7,"int":2,"spr":3,"dex":6,"strRatio":30,"conRatio":150,"intRatio":0,"sprRatio":0,"dexRatio":20,"hpRate":1,"spRate":1,"stamina":25000,"defRate":2,"mdefRate":1,"hrRate":1,"drRate":1,"blkRate":1.5,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.2,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10000},{"jobId":1004,"className":"Char1_4","initial":"HOP","jobClass":"Swordsman","name":"Hoplite","rank":2,"str":7,"con":7,"int":2,"spr":3,"dex":6,"strRatio":80,"conRatio":70,"intRatio":0,"sprRatio":0,"dexRatio":50,"hpRate":1,"spRate":1,"stamina":25000,"defRate":2,"mdefRate":1,"hrRate":1,"drRate":1,"blkRate":1.5,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.2,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10000},{"jobId":1005,"className":"Char1_5","initial":"CEN","jobClass":"Swordsman","name":"Centurion","rank":200,"str":7,"con":7,"int":2,"spr":3,"dex":6,"strRatio":1,"conRatio":1,"intRatio":1,"sprRatio":1,"dexRatio":1,"hpRate":1,"spRate":1,"stamina":25000,"defRate":2,"mdefRate":1,"hrRate":1,"drRate":1,"blkRate":1.5,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.2,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10000},{"jobId":1006,"className":"Char1_6","initial":"BAR","jobClass":"Swordsman","name":"Barbarian","rank":2,"str":7,"con":7,"int":2,"spr":3,"dex":6,"strRatio":80,"conRatio":40,"intRatio":0,"sprRatio":0,"dexRatio":80,"hpRate":1,"spRate":1,"stamina":25000,"defRate":2,"mdefRate":1,"hrRate":1,"drRate":1,"blkRate":1.5,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.2,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10000},{"jobId":1007,"className":"Char1_7","initial":"CAT","jobClass":"Swordsman","name":"Cataphract","rank":2,"str":7,"con":7,"int":2,"spr":3,"dex":6,"strRatio":110,"conRatio":50,"intRatio":0,"sprRatio":0,"dexRatio":40,"hpRate":1,"spRate":1,"stamina":25000,"defRate":2,"mdefRate":1,"hrRate":1,"drRate":1,"blkRate":1.5,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.2,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10000},{"jobId":1009,"className":"Char1_9","initial":"DOP","jobClass":"Swordsman","name":"Doppelsoeldner","rank":2,"str":7,"con":7,"int":2,"spr":3,"dex":6,"strRatio":90,"conRatio":40,"intRatio":0,"sprRatio":0,"dexRatio":70,"hpRate":1,"spRate":1,"stamina":25000,"defRate":2,"mdefRate":1,"hrRate":1,"drRate":1,"blkRate":1.5,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.2,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10000},{"jobId":1010,"className":"Char1_10","initial":"ROD","jobClass":"Swordsman","name":"Rodelero","rank":2,"str":7,"con":7,"int":2,"spr":3,"dex":6,"strRatio":70,"conRatio":90,"intRatio":0,"sprRatio":0,"dexRatio":40,"hpRate":1,"spRate":1,"stamina":25000,"defRate":2,"mdefRate":1,"hrRate":1,"drRate":1,"blkRate":1.5,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.2,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10000},{"jobId":1012,"className":"Char1_12","initial":"MUR","jobClass":"Swordsman","name":"Murmillo","rank":2,"str":7,"con":7,"int":2,"spr":3,"dex":6,"strRatio":80,"conRatio":80,"intRatio":0,"sprRatio":0,"dexRatio":40,"hpRate":1,"spRate":1,"stamina":25000,"defRate":2,"mdefRate":1,"hrRate":1,"drRate":1,"blkRate":1.5,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.2,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10000},{"jobId":1014,"className":"Char1_14","initial":"FNC","jobClass":"Swordsman","name":"Fencer","rank":2,"str":7,"con":7,"int":2,"spr":3,"dex":6,"strRatio":60,"conRatio":30,"intRatio":0,"sprRatio":0,"dexRatio":110,"hpRate":1,"spRate":1,"stamina":25000,"defRate":2,"mdefRate":1,"hrRate":1,"drRate":1,"blkRate":1.5,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.2,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10000},{"jobId":1015,"className":"Char1_15","initial":"DRG","jobClass":"Swordsman","name":"Dragoon","rank":2,"str":7,"con":7,"int":2,"spr":3,"dex":6,"strRatio":100,"conRatio":60,"intRatio":0,"sprRatio":0,"dexRatio":40,"hpRate":1,"spRate":1,"stamina":25000,"defRate":2,"mdefRate":1,"hrRate":1,"drRate":1,"blkRate":1.5,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.2,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10000},{"jobId":1016,"className":"Char1_16","initial":"TMP","jobClass":"Swordsman","name":"Templar","rank":2,"str":7,"con":7,"int":2,"spr":3,"dex":6,"strRatio":65,"conRatio":65,"intRatio":0,"sprRatio":0,"dexRatio":70,"hpRate":1,"spRate":1,"stamina":25000,"defRate":2,"mdefRate":1,"hrRate":1,"drRate":1,"blkRate":1.5,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.2,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10000},{"jobId":1017,"className":"Char1_17","initial":"LAN","jobClass":"Swordsman","name":"Lancer","rank":2,"str":7,"con":7,"int":2,"spr":3,"dex":6,"strRatio":100,"conRatio":55,"intRatio":0,"sprRatio":0,"dexRatio":45,"hpRate":1,"spRate":1,"stamina":25000,"defRate":2,"mdefRate":1,"hrRate":1,"drRate":1,"blkRate":1.5,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.2,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10000},{"jobId":1018,"className":"Char1_19","initial":"MTD","jobClass":"Swordsman","name":"Matador","rank":2,"str":7,"con":7,"int":2,"spr":3,"dex":6,"strRatio":90,"conRatio":60,"intRatio":0,"sprRatio":0,"dexRatio":50,"hpRate":1,"spRate":1,"stamina":25000,"defRate":2,"mdefRate":1,"hrRate":1,"drRate":1,"blkRate":1.5,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.2,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10000},{"jobId":1019,"className":"Char1_20","initial":"NAK","jobClass":"Swordsman","name":"Nak Muay","rank":2,"str":7,"con":7,"int":2,"spr":3,"dex":6,"strRatio":60,"conRatio":40,"intRatio":0,"sprRatio":0,"dexRatio":100,"hpRate":1,"spRate":1,"stamina":25000,"defRate":2,"mdefRate":1,"hrRate":1,"drRate":1,"blkRate":1.5,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.2,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10000},{"jobId":1020,"className":"Char1_18","initial":"RTA","jobClass":"Swordsman","name":"Retiarius","rank":2,"str":7,"con":7,"int":2,"spr":3,"dex":6,"strRatio":90,"conRatio":50,"intRatio":0,"sprRatio":0,"dexRatio":60,"hpRate":1,"spRate":1,"stamina":25000,"defRate":2,"mdefRate":1,"hrRate":1,"drRate":1,"blkRate":1.5,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.2,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10000},{"jobId":1021,"className":"Char1_21","initial":"HAC","jobClass":"Swordsman","name":"Hackapell","rank":2,"str":7,"con":7,"int":2,"spr":3,"dex":6,"strRatio":75,"conRatio":45,"intRatio":0,"sprRatio":0,"dexRatio":80,"hpRate":1,"spRate":1,"stamina":25000,"defRate":2,"mdefRate":1,"hrRate":1,"drRate":1,"blkRate":1.5,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.2,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10000},{"jobId":1022,"className":"Char1_22","initial":"BLB","jobClass":"Swordsman","name":"Blossom Blader","rank":2,"str":7,"con":7,"int":2,"spr":3,"dex":6,"strRatio":110,"conRatio":35,"intRatio":0,"sprRatio":0,"dexRatio":55,"hpRate":1,"spRate":1,"stamina":25000,"defRate":2,"mdefRate":1,"hrRate":1,"drRate":1,"blkRate":1.5,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.2,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10000},{"jobId":1023,"className":"Char1_23","initial":"LCD","jobClass":"Swordsman","name":"Luchador","rank":2,"str":7,"con":7,"int":2,"spr":3,"dex":6,"strRatio":110,"conRatio":35,"intRatio":0,"sprRatio":0,"dexRatio":55,"hpRate":1,"spRate":1,"stamina":25000,"defRate":2,"mdefRate":1,"hrRate":1,"drRate":1,"blkRate":1.5,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.2,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10000},{"jobId":1024,"className":"Char1_24","initial":"SPM","jobClass":"Swordsman","name":"Shenji","rank":2,"str":7,"con":7,"int":2,"spr":3,"dex":6,"strRatio":110,"conRatio":35,"intRatio":0,"sprRatio":0,"dexRatio":55,"hpRate":1,"spRate":1,"stamina":25000,"defRate":2,"mdefRate":1,"hrRate":1,"drRate":1,"blkRate":1.5,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.2,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10000},{"jobId":2001,"className":"Char2_1","initial":"WIZ","jobClass":"Wizard","name":"Wizard","rank":1,"str":2,"con":3,"int":9,"spr":8,"dex":3,"strRatio":0,"conRatio":40,"intRatio":80,"sprRatio":80,"dexRatio":0,"hpRate":0.85,"spRate":1,"stamina":25000,"defRate":1,"mdefRate":2,"hrRate":1.1,"drRate":1,"blkRate":1,"blkBreakRate":1.5,"crthrRate":1.25,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10006},{"jobId":2002,"className":"Char2_2","initial":"FIM","jobClass":"Wizard","name":"Pyromancer","rank":2,"str":2,"con":3,"int":9,"spr":8,"dex":3,"strRatio":0,"conRatio":50,"intRatio":90,"sprRatio":60,"dexRatio":0,"hpRate":0.85,"spRate":1,"stamina":25000,"defRate":1,"mdefRate":2,"hrRate":1.1,"drRate":1,"blkRate":1,"blkBreakRate":1.5,"crthrRate":1.25,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10005},{"jobId":2003,"className":"Char2_3","initial":"FRM","jobClass":"Wizard","name":"Cryomancer","rank":2,"str":2,"con":3,"int":9,"spr":8,"dex":3,"strRatio":0,"conRatio":70,"intRatio":70,"sprRatio":60,"dexRatio":0,"hpRate":0.85,"spRate":1,"stamina":25000,"defRate":1,"mdefRate":2,"hrRate":1.1,"drRate":1,"blkRate":1,"blkBreakRate":1.5,"crthrRate":1.25,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10005},{"jobId":2004,"className":"Char2_4","initial":"PSY","jobClass":"Wizard","name":"Psychokino","rank":2,"str":2,"con":3,"int":9,"spr":8,"dex":3,"strRatio":0,"conRatio":55,"intRatio":95,"sprRatio":50,"dexRatio":0,"hpRate":0.85,"spRate":1,"stamina":25000,"defRate":1,"mdefRate":2,"hrRate":1.1,"drRate":1,"blkRate":1,"blkBreakRate":1.5,"crthrRate":1.25,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10005},{"jobId":2005,"className":"Char2_5","initial":"ALC","jobClass":"Wizard","name":"Alchemist","rank":2,"str":2,"con":3,"int":9,"spr":8,"dex":3,"strRatio":0,"conRatio":55,"intRatio":65,"sprRatio":80,"dexRatio":0,"hpRate":0.85,"spRate":1,"stamina":25000,"defRate":1,"mdefRate":2,"hrRate":1.1,"drRate":1,"blkRate":1,"blkBreakRate":1.5,"crthrRate":1.25,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10005},{"jobId":2006,"className":"Char2_6","initial":"SOR","jobClass":"Wizard","name":"Sorcerer","rank":2,"str":2,"con":3,"int":9,"spr":8,"dex":3,"strRatio":0,"conRatio":20,"intRatio":70,"sprRatio":110,"dexRatio":0,"hpRate":0.85,"spRate":1,"stamina":25000,"defRate":1,"mdefRate":2,"hrRate":1.1,"drRate":1,"blkRate":1,"blkBreakRate":1.5,"crthrRate":1.25,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10005},{"jobId":2008,"className":"Char2_8","initial":"CHR","jobClass":"Wizard","name":"Chronomancer","rank":2,"str":2,"con":3,"int":9,"spr":8,"dex":3,"strRatio":0,"conRatio":55,"intRatio":70,"sprRatio":75,"dexRatio":0,"hpRate":0.85,"spRate":1,"stamina":25000,"defRate":1,"mdefRate":2,"hrRate":1.1,"drRate":1,"blkRate":1,"blkBreakRate":1.5,"crthrRate":1.25,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10005},{"jobId":2009,"className":"Char2_9","initial":"NEC","jobClass":"Wizard","name":"Necromancer","rank":2,"str":2,"con":3,"int":9,"spr":8,"dex":3,"strRatio":0,"conRatio":30,"intRatio":60,"sprRatio":110,"dexRatio":0,"hpRate":0.85,"spRate":1,"stamina":25000,"defRate":1,"mdefRate":2,"hrRate":1.1,"drRate":1,"blkRate":1,"blkBreakRate":1.5,"crthrRate":1.25,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10005},{"jobId":2011,"className":"Char2_11","initial":"WRC","jobClass":"Wizard","name":"Elementalist","rank":2,"str":2,"con":3,"int":9,"spr":8,"dex":3,"strRatio":0,"conRatio":20,"intRatio":100,"sprRatio":80,"dexRatio":0,"hpRate":0.85,"spRate":1,"stamina":25000,"defRate":1,"mdefRate":2,"hrRate":1.1,"drRate":1,"blkRate":1,"blkBreakRate":1.5,"crthrRate":1.25,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10005},{"jobId":2012,"className":"Char2_12","initial":"MMC","jobClass":"Wizard","name":"Mimic","rank":200,"str":2,"con":3,"int":9,"spr":8,"dex":3,"strRatio":3,"conRatio":3,"intRatio":8,"sprRatio":7,"dexRatio":4,"hpRate":0.85,"spRate":1,"stamina":25000,"defRate":1,"mdefRate":2,"hrRate":1.1,"drRate":1,"blkRate":1,"blkBreakRate":1.5,"crthrRate":1.25,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10005},{"jobId":2014,"className":"Char2_14","initial":"SAG","jobClass":"Wizard","name":"Sage","rank":2,"str":2,"con":3,"int":9,"spr":8,"dex":3,"strRatio":0,"conRatio":60,"intRatio":70,"sprRatio":70,"dexRatio":0,"hpRate":0.85,"spRate":1,"stamina":25000,"defRate":1,"mdefRate":2,"hrRate":1.1,"drRate":1,"blkRate":1,"blkBreakRate":1.5,"crthrRate":1.25,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10005},{"jobId":2015,"className":"Char2_15","initial":"WAL","jobClass":"Wizard","name":"Warlock","rank":2,"str":2,"con":3,"int":9,"spr":8,"dex":3,"strRatio":0,"conRatio":20,"intRatio":110,"sprRatio":70,"dexRatio":0,"hpRate":0.85,"spRate":1,"stamina":25000,"defRate":1,"mdefRate":2,"hrRate":1.1,"drRate":1,"blkRate":1,"blkBreakRate":1.5,"crthrRate":1.25,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10005},{"jobId":2016,"className":"Char2_16","initial":"FTF","jobClass":"Wizard","name":"Featherfoot","rank":2,"str":2,"con":3,"int":9,"spr":8,"dex":3,"strRatio":0,"conRatio":60,"intRatio":70,"sprRatio":70,"dexRatio":0,"hpRate":0.85,"spRate":1,"stamina":25000,"defRate":1,"mdefRate":2,"hrRate":1.1,"drRate":1,"blkRate":1,"blkBreakRate":1.5,"crthrRate":1.25,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10005},{"jobId":2017,"className":"Char2_17","initial":"RUN","jobClass":"Wizard","name":"Rune Caster","rank":2,"str":2,"con":3,"int":9,"spr":8,"dex":3,"strRatio":0,"conRatio":55,"intRatio":85,"sprRatio":60,"dexRatio":0,"hpRate":0.85,"spRate":1,"stamina":25000,"defRate":1,"mdefRate":2,"hrRate":1.1,"drRate":1,"blkRate":1,"blkBreakRate":1.5,"crthrRate":1.25,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10005},{"jobId":2019,"className":"Char2_19","initial":"SWM","jobClass":"Wizard","name":"Shadowmancer","rank":2,"str":2,"con":3,"int":9,"spr":8,"dex":3,"strRatio":0,"conRatio":40,"intRatio":110,"sprRatio":50,"dexRatio":0,"hpRate":0.85,"spRate":1,"stamina":25000,"defRate":1,"mdefRate":2,"hrRate":1.1,"drRate":1,"blkRate":1,"blkBreakRate":1.5,"crthrRate":1.25,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10005},{"jobId":2020,"className":"Char2_20","initial":"OMJ","jobClass":"Wizard","name":"Onmyoji","rank":2,"str":2,"con":3,"int":9,"spr":8,"dex":3,"strRatio":0,"conRatio":40,"intRatio":95,"sprRatio":65,"dexRatio":0,"hpRate":0.85,"spRate":1,"stamina":25000,"defRate":1,"mdefRate":2,"hrRate":1.1,"drRate":1,"blkRate":1,"blkBreakRate":1.5,"crthrRate":1.25,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10005},{"jobId":2021,"className":"Char2_21","initial":"DAO","jobClass":"Wizard","name":"Taoist","rank":2,"str":2,"con":3,"int":9,"spr":8,"dex":3,"strRatio":0,"conRatio":50,"intRatio":70,"sprRatio":80,"dexRatio":0,"hpRate":0.85,"spRate":1,"stamina":25000,"defRate":1,"mdefRate":2,"hrRate":1.1,"drRate":1,"blkRate":1,"blkBreakRate":1.5,"crthrRate":1.25,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10005},{"jobId":2022,"className":"Char2_22","initial":"BOK","jobClass":"Wizard","name":"Bokor","rank":2,"str":2,"con":3,"int":9,"spr":8,"dex":3,"strRatio":0,"conRatio":40,"intRatio":70,"sprRatio":90,"dexRatio":0,"hpRate":0.85,"spRate":1,"stamina":25000,"defRate":1,"mdefRate":2,"hrRate":1.1,"drRate":1,"blkRate":1,"blkBreakRate":1.5,"crthrRate":1.25,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10005},{"jobId":2023,"className":"Char2_23","initial":"TEM","jobClass":"Wizard","name":"Terramancer","rank":2,"str":2,"con":3,"int":9,"spr":8,"dex":3,"strRatio":0,"conRatio":60,"intRatio":100,"sprRatio":40,"dexRatio":0,"hpRate":0.85,"spRate":1,"stamina":25000,"defRate":1,"mdefRate":2,"hrRate":1.1,"drRate":1,"blkRate":1,"blkBreakRate":1.5,"crthrRate":1.25,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10005},{"jobId":2024,"className":"Char2_24","initial":"KER","jobClass":"Wizard","name":"Keraunos","rank":2,"str":2,"con":3,"int":9,"spr":8,"dex":3,"strRatio":0,"conRatio":20,"intRatio":140,"sprRatio":40,"dexRatio":0,"hpRate":0.85,"spRate":1,"stamina":25000,"defRate":1,"mdefRate":2,"hrRate":1.1,"drRate":1,"blkRate":1,"blkBreakRate":1.5,"crthrRate":1.25,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10005},{"jobId":3001,"className":"Char3_1","initial":"ARC","jobClass":"Archer","name":"Archer","rank":1,"str":8,"con":4,"int":2,"spr":3,"dex":8,"strRatio":75,"conRatio":50,"intRatio":0,"sprRatio":0,"dexRatio":75,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.4,"drRate":1.1,"blkRate":1,"blkBreakRate":1.4,"crthrRate":1.3,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1.1,"barrackStance":10003},{"jobId":3002,"className":"Char3_2","initial":"HUT","jobClass":"Archer","name":"Hunter","rank":2,"str":8,"con":4,"int":2,"spr":3,"dex":8,"strRatio":90,"conRatio":80,"intRatio":0,"sprRatio":0,"dexRatio":30,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.4,"drRate":1.1,"blkRate":1,"blkBreakRate":1.4,"crthrRate":1.3,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1.1,"barrackStance":10002},{"jobId":3003,"className":"Char3_3","initial":"QRS","jobClass":"Archer","name":"Quarrel Shooter","rank":2,"str":8,"con":4,"int":2,"spr":3,"dex":8,"strRatio":50,"conRatio":100,"intRatio":0,"sprRatio":0,"dexRatio":50,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.4,"drRate":1.1,"blkRate":1,"blkBreakRate":1.4,"crthrRate":1.3,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1.1,"barrackStance":10002},{"jobId":3004,"className":"Char3_4","initial":"RAG","jobClass":"Archer","name":"Ranger","rank":2,"str":8,"con":4,"int":2,"spr":3,"dex":8,"strRatio":110,"conRatio":30,"intRatio":0,"sprRatio":0,"dexRatio":60,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.4,"drRate":1.1,"blkRate":1,"blkBreakRate":1.4,"crthrRate":1.3,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1.1,"barrackStance":10002},{"jobId":3005,"className":"Char3_5","initial":"SAP","jobClass":"Archer","name":"Sapper","rank":2,"str":8,"con":4,"int":2,"spr":3,"dex":8,"strRatio":70,"conRatio":90,"intRatio":0,"sprRatio":0,"dexRatio":40,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.4,"drRate":1.1,"blkRate":1,"blkBreakRate":1.4,"crthrRate":1.3,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1.1,"barrackStance":10002},{"jobId":3006,"className":"Char3_6","initial":"WUG","jobClass":"Archer","name":"Wugushi","rank":2,"str":8,"con":4,"int":2,"spr":3,"dex":8,"strRatio":100,"conRatio":50,"intRatio":0,"sprRatio":0,"dexRatio":50,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.4,"drRate":1.1,"blkRate":1,"blkBreakRate":1.4,"crthrRate":1.3,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1.1,"barrackStance":10002},{"jobId":3011,"className":"Char3_11","initial":"FLT","jobClass":"Archer","name":"Fletcher","rank":2,"str":8,"con":4,"int":2,"spr":3,"dex":8,"strRatio":100,"conRatio":35,"intRatio":0,"sprRatio":0,"dexRatio":65,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.4,"drRate":1.1,"blkRate":1,"blkBreakRate":1.4,"crthrRate":1.3,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1.1,"barrackStance":10002},{"jobId":3012,"className":"Char3_12","initial":"PDP","jobClass":"Archer","name":"Pied Piper","rank":2,"str":8,"con":4,"int":2,"spr":3,"dex":8,"strRatio":70,"conRatio":60,"intRatio":0,"sprRatio":0,"dexRatio":70,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.4,"drRate":1.1,"blkRate":1,"blkBreakRate":1.4,"crthrRate":1.3,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1.1,"barrackStance":10002},{"jobId":3013,"className":"Char3_13","initial":"APP","jobClass":"Archer","name":"Appraiser","rank":2,"str":8,"con":4,"int":2,"spr":3,"dex":8,"strRatio":85,"conRatio":50,"intRatio":0,"sprRatio":0,"dexRatio":65,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.4,"drRate":1.1,"blkRate":1,"blkBreakRate":1.4,"crthrRate":1.3,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1.1,"barrackStance":10002},{"jobId":3014,"className":"Char3_14","initial":"FAL","jobClass":"Archer","name":"Falconer","rank":2,"str":8,"con":4,"int":2,"spr":3,"dex":8,"strRatio":80,"conRatio":70,"intRatio":0,"sprRatio":0,"dexRatio":50,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.4,"drRate":1.1,"blkRate":1,"blkBreakRate":1.4,"crthrRate":1.3,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1.1,"barrackStance":10002},{"jobId":3015,"className":"Char3_15","initial":"CNN","jobClass":"Archer","name":"Cannoneer","rank":2,"str":8,"con":4,"int":2,"spr":3,"dex":8,"strRatio":120,"conRatio":60,"intRatio":0,"sprRatio":0,"dexRatio":20,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.4,"drRate":1.1,"blkRate":1,"blkBreakRate":1.4,"crthrRate":1.3,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1.1,"barrackStance":10002},{"jobId":3016,"className":"Char3_16","initial":"MSK","jobClass":"Archer","name":"Musketeer","rank":2,"str":8,"con":4,"int":2,"spr":3,"dex":8,"strRatio":110,"conRatio":50,"intRatio":0,"sprRatio":0,"dexRatio":40,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.4,"drRate":1.1,"blkRate":1,"blkBreakRate":1.4,"crthrRate":1.3,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1.1,"barrackStance":10002},{"jobId":3017,"className":"Char3_17","initial":"MER","jobClass":"Archer","name":"Mergen","rank":2,"str":8,"con":4,"int":2,"spr":3,"dex":8,"strRatio":100,"conRatio":40,"intRatio":0,"sprRatio":0,"dexRatio":60,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.4,"drRate":1.1,"blkRate":1,"blkBreakRate":1.4,"crthrRate":1.3,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1.1,"barrackStance":10002},{"jobId":3101,"className":"Char3_18","initial":"MAT","jobClass":"Archer","name":"Matross","rank":2,"str":8,"con":4,"int":2,"spr":3,"dex":8,"strRatio":115,"conRatio":35,"intRatio":0,"sprRatio":0,"dexRatio":50,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.4,"drRate":1.1,"blkRate":1,"blkBreakRate":1.4,"crthrRate":1.3,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1.1,"barrackStance":10003},{"jobId":3102,"className":"Char3_19","initial":"TIG","jobClass":"Archer","name":"Tiger Hunter","rank":2,"str":8,"con":4,"int":2,"spr":3,"dex":8,"strRatio":95,"conRatio":55,"intRatio":0,"sprRatio":0,"dexRatio":50,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.4,"drRate":1.1,"blkRate":1,"blkBreakRate":1.4,"crthrRate":1.3,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1.1,"barrackStance":10003},{"jobId":3103,"className":"Char3_20","initial":"ABL","jobClass":"Archer","name":"Arbalester","rank":2,"str":8,"con":4,"int":2,"spr":3,"dex":8,"strRatio":90,"conRatio":30,"intRatio":0,"sprRatio":0,"dexRatio":80,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.4,"drRate":1.1,"blkRate":1,"blkBreakRate":1.4,"crthrRate":1.3,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1.1,"barrackStance":10003},{"jobId":3104,"className":"Char3_21","initial":"ARQ","jobClass":"Archer","name":"Arquebusier","rank":2,"str":8,"con":4,"int":2,"spr":3,"dex":8,"strRatio":110,"conRatio":45,"intRatio":0,"sprRatio":0,"dexRatio":45,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.4,"drRate":1.1,"blkRate":1,"blkBreakRate":1.4,"crthrRate":1.3,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1.1,"barrackStance":10003},{"jobId":3105,"className":"Char3_22","initial":"HWA","jobClass":"Archer","name":"Hwarang","rank":2,"str":8,"con":4,"int":2,"spr":3,"dex":8,"strRatio":110,"conRatio":45,"intRatio":0,"sprRatio":0,"dexRatio":45,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.4,"drRate":1.1,"blkRate":1,"blkBreakRate":1.4,"crthrRate":1.3,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1.1,"barrackStance":10003},{"jobId":3106,"className":"Char3_23","initial":"ENG","jobClass":"Archer","name":"Engineer","rank":2,"str":8,"con":4,"int":2,"spr":3,"dex":8,"strRatio":100,"conRatio":50,"intRatio":0,"sprRatio":0,"dexRatio":50,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.4,"drRate":1.1,"blkRate":1,"blkBreakRate":1.4,"crthrRate":1.3,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1.1,"barrackStance":10003},{"jobId":4001,"className":"Char4_1","initial":"CLR","jobClass":"Cleric","name":"Cleric","rank":1,"str":4,"con":6,"int":4,"spr":9,"dex":2,"strRatio":0,"conRatio":50,"intRatio":60,"sprRatio":90,"dexRatio":0,"hpRate":0.95,"spRate":1,"stamina":25000,"defRate":1.5,"mdefRate":1.5,"hrRate":1,"drRate":1,"blkRate":1.25,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.5,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10004},{"jobId":4002,"className":"Char4_2","initial":"PRS","jobClass":"Cleric","name":"Priest","rank":2,"str":4,"con":6,"int":4,"spr":9,"dex":2,"strRatio":0,"conRatio":30,"intRatio":40,"sprRatio":130,"dexRatio":0,"hpRate":0.95,"spRate":1,"stamina":25000,"defRate":1.5,"mdefRate":1.5,"hrRate":1,"drRate":1,"blkRate":1.25,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.5,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10003},{"jobId":4003,"className":"Char4_3","initial":"KRV","jobClass":"Cleric","name":"Krivis","rank":2,"str":4,"con":6,"int":4,"spr":9,"dex":2,"strRatio":0,"conRatio":30,"intRatio":100,"sprRatio":70,"dexRatio":0,"hpRate":0.95,"spRate":1,"stamina":25000,"defRate":1.5,"mdefRate":1.5,"hrRate":1,"drRate":1,"blkRate":1.25,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.5,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10003},{"jobId":4005,"className":"Char4_5","initial":"DRU","jobClass":"Cleric","name":"Druid","rank":2,"str":4,"con":6,"int":4,"spr":9,"dex":2,"strRatio":0,"conRatio":20,"intRatio":90,"sprRatio":90,"dexRatio":0,"hpRate":0.95,"spRate":1,"stamina":25000,"defRate":1.5,"mdefRate":1.5,"hrRate":1,"drRate":1,"blkRate":1.25,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.5,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10003},{"jobId":4006,"className":"Char4_6","initial":"SAD","jobClass":"Cleric","name":"Sadhu","rank":2,"str":4,"con":6,"int":4,"spr":9,"dex":2,"strRatio":0,"conRatio":30,"intRatio":120,"sprRatio":50,"dexRatio":0,"hpRate":0.95,"spRate":1,"stamina":25000,"defRate":1.5,"mdefRate":1.5,"hrRate":1,"drRate":1,"blkRate":1.25,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.5,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10003},{"jobId":4007,"className":"Char4_7","initial":"DDR","jobClass":"Cleric","name":"Dievdirbys","rank":2,"str":4,"con":6,"int":4,"spr":9,"dex":2,"strRatio":0,"conRatio":40,"intRatio":85,"sprRatio":75,"dexRatio":0,"hpRate":0.95,"spRate":1,"stamina":25000,"defRate":1.5,"mdefRate":1.5,"hrRate":1,"drRate":1,"blkRate":1.25,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.5,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10003},{"jobId":4008,"className":"Char4_8","initial":"ORC","jobClass":"Cleric","name":"Oracle","rank":2,"str":4,"con":6,"int":4,"spr":9,"dex":2,"strRatio":0,"conRatio":50,"intRatio":50,"sprRatio":100,"dexRatio":0,"hpRate":0.95,"spRate":1,"stamina":25000,"defRate":1.5,"mdefRate":1.5,"hrRate":1,"drRate":1,"blkRate":1.25,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.5,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10003},{"jobId":4009,"className":"Char4_9","initial":"MNK","jobClass":"Cleric","name":"Monk","rank":2,"str":4,"con":6,"int":4,"spr":9,"dex":2,"strRatio":80,"conRatio":50,"intRatio":0,"sprRatio":0,"dexRatio":70,"hpRate":0.95,"spRate":1,"stamina":25000,"defRate":1.5,"mdefRate":1.5,"hrRate":1,"drRate":1,"blkRate":1.25,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.5,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10003},{"jobId":4010,"className":"Char4_10","initial":"PDN","jobClass":"Cleric","name":"Pardoner","rank":2,"str":4,"con":6,"int":4,"spr":9,"dex":2,"strRatio":0,"conRatio":20,"intRatio":70,"sprRatio":110,"dexRatio":0,"hpRate":0.95,"spRate":1,"stamina":25000,"defRate":1.5,"mdefRate":1.5,"hrRate":1,"drRate":1,"blkRate":1.25,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.5,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10003},{"jobId":4011,"className":"Char4_11","initial":"PLD","jobClass":"Cleric","name":"Paladin ","rank":2,"str":4,"con":6,"int":4,"spr":9,"dex":2,"strRatio":50,"conRatio":110,"intRatio":0,"sprRatio":0,"dexRatio":40,"hpRate":0.95,"spRate":1,"stamina":25000,"defRate":1.5,"mdefRate":1.5,"hrRate":1,"drRate":1,"blkRate":1.25,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.5,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10003},{"jobId":4012,"className":"Char4_12","initial":"CHA","jobClass":"Cleric","name":"Chaplain","rank":2,"str":4,"con":6,"int":4,"spr":9,"dex":2,"strRatio":75,"conRatio":30,"intRatio":0,"sprRatio":0,"dexRatio":95,"hpRate":0.95,"spRate":1,"stamina":25000,"defRate":1.5,"mdefRate":1.5,"hrRate":1,"drRate":1,"blkRate":1.25,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.5,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10003},{"jobId":4013,"className":"Char4_13","initial":"SHP","jobClass":"Cleric","name":"Shepherd","rank":200,"str":4,"con":6,"int":4,"spr":9,"dex":2,"strRatio":0,"conRatio":0,"intRatio":0,"sprRatio":0,"dexRatio":0,"hpRate":0.95,"spRate":1,"stamina":25000,"defRate":1.5,"mdefRate":1.5,"hrRate":1,"drRate":1,"blkRate":1.25,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.5,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10003},{"jobId":4014,"className":"Char4_14","initial":"PGD","jobClass":"Cleric","name":"Plague Doctor","rank":2,"str":4,"con":6,"int":4,"spr":9,"dex":2,"strRatio":0,"conRatio":40,"intRatio":80,"sprRatio":80,"dexRatio":0,"hpRate":0.95,"spRate":1,"stamina":25000,"defRate":1.5,"mdefRate":1.5,"hrRate":1,"drRate":1,"blkRate":1.25,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.5,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10003},{"jobId":4015,"className":"Char4_15","initial":"KBL","jobClass":"Cleric","name":"Kabbalist","rank":2,"str":4,"con":6,"int":4,"spr":9,"dex":2,"strRatio":0,"conRatio":45,"intRatio":45,"sprRatio":110,"dexRatio":0,"hpRate":0.95,"spRate":1,"stamina":25000,"defRate":1.5,"mdefRate":1.5,"hrRate":1,"drRate":1,"blkRate":1.25,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.5,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10003},{"jobId":4016,"className":"Char4_16","initial":"INQ","jobClass":"Cleric","name":"Inquisitor","rank":2,"str":4,"con":6,"int":4,"spr":9,"dex":2,"strRatio":100,"conRatio":60,"intRatio":0,"sprRatio":0,"dexRatio":40,"hpRate":0.95,"spRate":1,"stamina":25000,"defRate":1.5,"mdefRate":1.5,"hrRate":1,"drRate":1,"blkRate":1.25,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.5,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10003},{"jobId":4018,"className":"Char4_18","initial":"MKO","jobClass":"Cleric","name":"Miko","rank":2,"str":4,"con":6,"int":4,"spr":9,"dex":2,"strRatio":0,"conRatio":60,"intRatio":60,"sprRatio":80,"dexRatio":0,"hpRate":0.95,"spRate":1,"stamina":25000,"defRate":1.5,"mdefRate":1.5,"hrRate":1,"drRate":1,"blkRate":1.25,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.5,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10003},{"jobId":4019,"className":"Char4_19","initial":"ZLT","jobClass":"Cleric","name":"Zealot","rank":2,"str":4,"con":6,"int":4,"spr":9,"dex":2,"strRatio":70,"conRatio":50,"intRatio":0,"sprRatio":0,"dexRatio":80,"hpRate":0.95,"spRate":1,"stamina":25000,"defRate":1.5,"mdefRate":1.5,"hrRate":1,"drRate":1,"blkRate":1.25,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.5,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10003},{"jobId":4020,"className":"Char4_20","initial":"EXO","jobClass":"Cleric","name":"Exorcist","rank":2,"str":4,"con":6,"int":4,"spr":9,"dex":2,"strRatio":0,"conRatio":40,"intRatio":120,"sprRatio":40,"dexRatio":0,"hpRate":0.95,"spRate":1,"stamina":25000,"defRate":1.5,"mdefRate":1.5,"hrRate":1,"drRate":1,"blkRate":1.25,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.5,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10003},{"jobId":4021,"className":"Char4_21","initial":"CRU","jobClass":"Cleric","name":"Crusader","rank":2,"str":4,"con":6,"int":4,"spr":9,"dex":2,"strRatio":0,"conRatio":60,"intRatio":70,"sprRatio":70,"dexRatio":0,"hpRate":0.95,"spRate":1,"stamina":25000,"defRate":1.5,"mdefRate":1.5,"hrRate":1,"drRate":1,"blkRate":1.25,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.5,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10003},{"jobId":4022,"className":"Char4_22","initial":"CRU","jobClass":"Cleric","name":"Lama","rank":2,"str":4,"con":6,"int":4,"spr":9,"dex":2,"strRatio":100,"conRatio":70,"intRatio":0,"sprRatio":0,"dexRatio":30,"hpRate":0.95,"spRate":1,"stamina":25000,"defRate":1.5,"mdefRate":1.5,"hrRate":1,"drRate":1,"blkRate":1.25,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.5,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10003},{"jobId":5001,"className":"Char5_1","initial":"SCT","jobClass":"Scout","name":"Scout","rank":1,"str":6,"con":5,"int":2,"spr":3,"dex":9,"strRatio":70,"conRatio":40,"intRatio":0,"sprRatio":0,"dexRatio":90,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.2,"drRate":1.5,"blkRate":1,"blkBreakRate":1,"crthrRate":1.5,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1.1,"moveSpeedRate":1,"barrackStance":10001},{"jobId":5002,"className":"Char5_2","initial":"ASS","jobClass":"Scout","name":"Assassin","rank":2,"str":6,"con":5,"int":2,"spr":3,"dex":9,"strRatio":55,"conRatio":35,"intRatio":0,"sprRatio":0,"dexRatio":110,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.2,"drRate":1.5,"blkRate":1,"blkBreakRate":1,"crthrRate":1.5,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1.1,"moveSpeedRate":1,"barrackStance":10001},{"jobId":5003,"className":"Char5_3","initial":"OUL","jobClass":"Scout","name":"Outlaw","rank":2,"str":6,"con":5,"int":2,"spr":3,"dex":9,"strRatio":90,"conRatio":40,"intRatio":0,"sprRatio":0,"dexRatio":70,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.2,"drRate":1.5,"blkRate":1,"blkBreakRate":1,"crthrRate":1.5,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1.1,"moveSpeedRate":1,"barrackStance":10001},{"jobId":5004,"className":"Char5_4","initial":"SQR","jobClass":"Scout","name":"Squire","rank":2,"str":6,"con":5,"int":2,"spr":3,"dex":9,"strRatio":70,"conRatio":60,"intRatio":0,"sprRatio":0,"dexRatio":70,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.2,"drRate":1.5,"blkRate":1,"blkBreakRate":1,"crthrRate":1.5,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1.1,"moveSpeedRate":1,"barrackStance":10001},{"jobId":5005,"className":"Char5_5","initial":"COS","jobClass":"Scout","name":"Corsair","rank":2,"str":6,"con":5,"int":2,"spr":3,"dex":9,"strRatio":85,"conRatio":40,"intRatio":0,"sprRatio":0,"dexRatio":75,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.2,"drRate":1.5,"blkRate":1,"blkBreakRate":1,"crthrRate":1.5,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1.1,"moveSpeedRate":1,"barrackStance":10001},{"jobId":5006,"className":"Char5_6","initial":"SNB","jobClass":"Scout","name":"Shinobi","rank":2,"str":6,"con":5,"int":2,"spr":3,"dex":9,"strRatio":75,"conRatio":35,"intRatio":0,"sprRatio":0,"dexRatio":90,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.2,"drRate":1.5,"blkRate":1,"blkBreakRate":1,"crthrRate":1.5,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1.1,"moveSpeedRate":1,"barrackStance":10001},{"jobId":5007,"className":"Char5_7","initial":"THA","jobClass":"Scout","name":"Thaumaturge","rank":2,"str":6,"con":5,"int":2,"spr":3,"dex":9,"strRatio":65,"conRatio":70,"intRatio":0,"sprRatio":0,"dexRatio":65,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.2,"drRate":1.5,"blkRate":1,"blkBreakRate":1,"crthrRate":1.5,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1.1,"moveSpeedRate":1,"barrackStance":10001},{"jobId":5008,"className":"Char5_8","initial":"ENC","jobClass":"Scout","name":"Enchanter","rank":2,"str":6,"con":5,"int":2,"spr":3,"dex":9,"strRatio":45,"conRatio":55,"intRatio":0,"sprRatio":0,"dexRatio":100,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.2,"drRate":1.5,"blkRate":1,"blkBreakRate":1,"crthrRate":1.5,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1.1,"moveSpeedRate":1,"barrackStance":10001},{"jobId":5009,"className":"Char5_9","initial":"LIN","jobClass":"Scout","name":"Linker","rank":2,"str":6,"con":5,"int":2,"spr":3,"dex":9,"strRatio":70,"conRatio":50,"intRatio":0,"sprRatio":0,"dexRatio":80,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.2,"drRate":1.5,"blkRate":1,"blkBreakRate":1,"crthrRate":1.5,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1.1,"moveSpeedRate":1,"barrackStance":10001},{"jobId":5010,"className":"Char5_10","initial":"ROG","jobClass":"Scout","name":"Rogue","rank":2,"str":6,"con":5,"int":2,"spr":3,"dex":9,"strRatio":60,"conRatio":50,"intRatio":0,"sprRatio":0,"dexRatio":90,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.2,"drRate":1.5,"blkRate":1,"blkBreakRate":1,"crthrRate":1.5,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1.1,"moveSpeedRate":1,"barrackStance":10001},{"jobId":5011,"className":"Char5_11","initial":"SCH","jobClass":"Scout","name":"Schwarzer Reiter","rank":2,"str":6,"con":5,"int":2,"spr":3,"dex":9,"strRatio":80,"conRatio":25,"intRatio":0,"sprRatio":0,"dexRatio":95,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.2,"drRate":1.5,"blkRate":1,"blkBreakRate":1,"crthrRate":1.5,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1.1,"moveSpeedRate":1,"barrackStance":10001},{"jobId":5012,"className":"Char5_12","initial":"BMk","jobClass":"Scout","name":"Bullet Marker","rank":2,"str":6,"con":5,"int":2,"spr":3,"dex":9,"strRatio":75,"conRatio":15,"intRatio":0,"sprRatio":0,"dexRatio":110,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.2,"drRate":1.5,"blkRate":1,"blkBreakRate":1,"crthrRate":1.5,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1.1,"moveSpeedRate":1,"barrackStance":10001},{"jobId":5013,"className":"Char5_13","initial":"ARD","jobClass":"Scout","name":"Ardito","rank":2,"str":6,"con":5,"int":2,"spr":3,"dex":9,"strRatio":65,"conRatio":55,"intRatio":0,"sprRatio":0,"dexRatio":80,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.2,"drRate":1.5,"blkRate":1,"blkBreakRate":1,"crthrRate":1.5,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1.1,"moveSpeedRate":1,"barrackStance":10001},{"jobId":5014,"className":"Char5_14","initial":"SRF","jobClass":"Scout","name":"Sheriff","rank":2,"str":6,"con":5,"int":2,"spr":3,"dex":9,"strRatio":105,"conRatio":30,"intRatio":0,"sprRatio":0,"dexRatio":65,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.2,"drRate":1.5,"blkRate":1,"blkBreakRate":1,"crthrRate":1.5,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1.1,"moveSpeedRate":1,"barrackStance":10001},{"jobId":5015,"className":"Char5_15","initial":"RAN","jobClass":"Scout","name":"Rangda","rank":2,"str":6,"con":5,"int":2,"spr":3,"dex":9,"strRatio":70,"conRatio":65,"intRatio":0,"sprRatio":0,"dexRatio":65,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.2,"drRate":1.5,"blkRate":1,"blkBreakRate":1,"crthrRate":1.5,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1.1,"moveSpeedRate":1,"barrackStance":10001},{"jobId":5016,"className":"Char5_16","initial":"CLO","jobClass":"Scout","name":"Clown","rank":2,"str":6,"con":5,"int":2,"spr":3,"dex":9,"strRatio":100,"conRatio":50,"intRatio":0,"sprRatio":0,"dexRatio":50,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.2,"drRate":1.5,"blkRate":1,"blkBreakRate":1,"crthrRate":1.5,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1.1,"moveSpeedRate":1,"barrackStance":10001},{"jobId":5017,"className":"Char5_17","initial":"HAK","jobClass":"Scout","name":"Hakkapeliter","rank":2,"str":6,"con":5,"int":2,"spr":3,"dex":9,"strRatio":100,"conRatio":50,"intRatio":0,"sprRatio":0,"dexRatio":50,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.2,"drRate":1.5,"blkRate":1,"blkBreakRate":1,"crthrRate":1.5,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1.1,"moveSpeedRate":1,"barrackStance":10001},{"jobId":5018,"className":"Char5_18","initial":"JAG","jobClass":"Scout","name":"Jaguar","rank":2,"str":6,"con":5,"int":2,"spr":3,"dex":9,"strRatio":80,"conRatio":40,"intRatio":0,"sprRatio":0,"dexRatio":80,"hpRate":0.9,"spRate":1,"stamina":25000,"defRate":1.25,"mdefRate":1.25,"hrRate":1.2,"drRate":1.5,"blkRate":1,"blkBreakRate":1,"crthrRate":1.5,"crtdrRate":1,"rhpRate":1,"rspRate":1,"atkSpeedRate":1.1,"moveSpeedRate":1,"barrackStance":10001},{"jobId":9001,"className":"Char4_99","initial":"GM","jobClass":"Cleric","name":"GM","rank":99,"str":4,"con":6,"int":4,"spr":9,"dex":2,"strRatio":5,"conRatio":6,"intRatio":4,"sprRatio":7,"dexRatio":3,"hpRate":0.95,"spRate":1,"stamina":25000,"defRate":1.5,"mdefRate":1.5,"hrRate":1,"drRate":1,"blkRate":1.25,"blkBreakRate":1,"crthrRate":1,"crtdrRate":1.5,"rhpRate":1,"rspRate":1,"atkSpeedRate":1,"moveSpeedRate":1,"barrackStance":10003}]
\ No newline at end of file
diff --git a/system/web-optional/MeliaGUI/storage/app/db_backup/2023-07-30_01-39-08.sql b/system/web-optional/MeliaGUI/storage/app/db_backup/2023-07-30_01-39-08.sql
new file mode 100644
index 000000000..041ba469f
--- /dev/null
+++ b/system/web-optional/MeliaGUI/storage/app/db_backup/2023-07-30_01-39-08.sql
@@ -0,0 +1,819 @@
+-- MySQL dump 10.13 Distrib 8.1.0, for Win64 (x86_64)
+--
+-- Host: 127.0.0.1 Database: melia
+-- ------------------------------------------------------
+-- Server version 8.1.0
+
+/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
+/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
+/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
+/*!50503 SET NAMES utf8 */;
+/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
+/*!40103 SET TIME_ZONE='+00:00' */;
+/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
+/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
+/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
+/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
+
+--
+-- Table structure for table `abilities`
+--
+
+DROP TABLE IF EXISTS `abilities`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `abilities` (
+ `abilityId` bigint NOT NULL AUTO_INCREMENT,
+ `characterId` bigint NOT NULL,
+ `id` int NOT NULL,
+ `level` int NOT NULL,
+ `active` tinyint(1) NOT NULL DEFAULT '1',
+ PRIMARY KEY (`abilityId`),
+ KEY `characterId` (`characterId`),
+ CONSTRAINT `abilities_ibfk_1` FOREIGN KEY (`characterId`) REFERENCES `characters` (`characterId`) ON DELETE CASCADE ON UPDATE CASCADE,
+ CONSTRAINT `abilities_ibfk_2` FOREIGN KEY (`characterId`) REFERENCES `characters` (`characterId`) ON DELETE CASCADE ON UPDATE CASCADE
+) ENGINE=InnoDB AUTO_INCREMENT=126 DEFAULT CHARSET=utf8mb3;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `abilities`
+--
+
+LOCK TABLES `abilities` WRITE;
+/*!40000 ALTER TABLE `abilities` DISABLE KEYS */;
+INSERT INTO `abilities` VALUES (18,3,10012,1,1),(19,3,10013,1,1),(20,3,10014,1,1),(21,3,10000,1,1),(22,3,10001,1,1),(23,3,10007,1,1),(24,3,10009,1,1),(25,3,10008,1,1),(26,4,10012,1,1),(27,4,10013,1,1),(28,4,10014,1,1),(29,4,10000,1,1),(30,4,10001,1,1),(31,4,10007,1,1),(32,4,10009,1,1),(48,2,10012,1,1),(49,2,10013,1,1),(50,2,10014,1,1),(51,2,10000,1,1),(52,2,10001,1,1),(59,5,10012,1,1),(60,5,10013,1,1),(61,5,10014,1,1),(62,5,10000,1,1),(63,5,10001,1,1),(64,5,10007,1,1),(65,5,10009,1,1),(120,1,10012,1,1),(121,1,10013,1,1),(122,1,10014,1,1),(123,1,10000,1,1),(124,1,10005,1,1),(125,1,10006,1,1);
+/*!40000 ALTER TABLE `abilities` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `account_properties`
+--
+
+DROP TABLE IF EXISTS `account_properties`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `account_properties` (
+ `propertyId` bigint NOT NULL AUTO_INCREMENT,
+ `accountId` bigint NOT NULL,
+ `name` varchar(64) NOT NULL,
+ `type` varchar(1) NOT NULL,
+ `value` varchar(255) NOT NULL,
+ PRIMARY KEY (`propertyId`),
+ KEY `accountId` (`accountId`),
+ CONSTRAINT `account_properties_ibfk_1` FOREIGN KEY (`accountId`) REFERENCES `accounts` (`accountId`) ON DELETE CASCADE ON UPDATE CASCADE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `account_properties`
+--
+
+LOCK TABLES `account_properties` WRITE;
+/*!40000 ALTER TABLE `account_properties` DISABLE KEYS */;
+/*!40000 ALTER TABLE `account_properties` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `accounts`
+--
+
+DROP TABLE IF EXISTS `accounts`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `accounts` (
+ `accountId` bigint NOT NULL AUTO_INCREMENT,
+ `name` varchar(32) NOT NULL,
+ `password` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,
+ `teamName` varchar(64) DEFAULT NULL,
+ `authority` int NOT NULL DEFAULT '0',
+ `settings` varchar(2048) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT '',
+ `medals` int NOT NULL DEFAULT '0',
+ `giftMedals` int NOT NULL DEFAULT '0',
+ `premiumMedals` int NOT NULL DEFAULT '0',
+ `additionalSlotCount` int NOT NULL DEFAULT '0',
+ `teamExp` int NOT NULL DEFAULT '0',
+ `barracksThema` int NOT NULL DEFAULT '11',
+ `themas` varchar(128) NOT NULL DEFAULT '11',
+ `selectedSlot` tinyint NOT NULL DEFAULT '0',
+ `loginState` tinyint NOT NULL DEFAULT '0',
+ `loginCharacter` bigint NOT NULL DEFAULT '0',
+ PRIMARY KEY (`accountId`)
+) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `accounts`
+--
+
+LOCK TABLES `accounts` WRITE;
+/*!40000 ALTER TABLE `accounts` DISABLE KEYS */;
+INSERT INTO `accounts` VALUES (1,'ckto','$2a$10$UW9JZk4KVuBRf4vxC68P9O27RALQgPha7Y4A436YsvH7oqeWB0iL2','Return',99,'44 0 98 1 15 1 63 1 46 1 66 1 71 1 68 1 84 1 85 1 86 1 163 1 164 1 155 1 157 1 99 1 133 1 145 1 150 1 151 1 82 1 91 1 83 1 23 1 33 1 48 1 54 1 53 1 61 1 73 1 24 1 45 1 52 1 55 1 60 1 67 1 96 1 141 0 143 1 136 0 138 0 142 1 130 1 131 1 132 1 17 1 34 1 59 1 58 1 50 500 51 230 100 1 101 1 102 1 103 1 104 1 105 1 166 1 106 1 107 1 108 1 110 1 109 1 111 1 126 1 112 1 113 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 125 1 167 1 168 1 169 1 170 1 144 0 43 3',0,0,0,0,0,11,'11',1,0,0),(2,'ckto2','$2a$10$dW9C2Qo/tVhulP8FFEYLF.dwL73vqZVMB7DsrKDO2xNcq5I.ruNNi','ckto2',99,'44 0 98 1 15 1 63 1 46 1 66 1 71 1 68 1 84 1 85 1 86 1 163 1 164 1 155 1 157 1 99 1 133 1 145 1 150 1 151 1 82 1 91 1 83 1 23 1 33 1 48 1 54 1 53 1 61 1 73 1 24 1 45 1 52 1 55 1 60 1 67 1 96 1 141 1 143 1 136 0 138 0 142 1 130 1 131 1 132 1 17 1 34 1 59 1 58 1 50 500 51 230',0,0,0,0,0,11,'11',2,0,0),(3,'exec','$2a$10$O.AjwUjqe6mSnj.NeUP8nOJDrexLpjFUgloka6X69nfUS0mroacJq','Exec',99,'44 0 98 1 15 1 63 1 46 1 66 1 71 1 68 1 84 1 85 1 86 1 163 1 164 1 155 1 157 1 99 1 133 1 145 1 150 1 151 1 82 1 91 1 83 1 23 1 33 1 48 1 54 1 53 1 61 1 73 1 24 1 45 1 52 1 55 1 60 1 67 1 96 1 141 1 143 1 136 0 138 0 142 1 130 1 131 1 132 1 17 1 34 1 59 1 58 1 50 500 51 230 100 1 101 1 102 1 103 1 104 1 105 1 166 1 106 1 107 1 108 1 110 1 109 1 111 1 126 1 112 1 113 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 125 1 167 1 168 1 169 1 170 1',0,0,0,0,0,11,'11',1,0,0),(4,'flpcarv','$2a$10$WeQeWwIllD58B6kE1R0deuWqlcmtwm1wO.IulK5CXCdJyYW.C0JtO',NULL,0,'',0,0,0,0,0,11,'11',0,0,0);
+/*!40000 ALTER TABLE `accounts` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `buffs`
+--
+
+DROP TABLE IF EXISTS `buffs`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `buffs` (
+ `buffId` bigint NOT NULL AUTO_INCREMENT,
+ `characterId` bigint NOT NULL,
+ `classId` int NOT NULL,
+ `numArg1` int NOT NULL,
+ `numArg2` int NOT NULL,
+ `remainingDuration` time NOT NULL,
+ PRIMARY KEY (`buffId`),
+ KEY `characterId` (`characterId`),
+ CONSTRAINT `buffs_ibfk_1` FOREIGN KEY (`characterId`) REFERENCES `characters` (`characterId`) ON DELETE CASCADE ON UPDATE CASCADE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `buffs`
+--
+
+LOCK TABLES `buffs` WRITE;
+/*!40000 ALTER TABLE `buffs` DISABLE KEYS */;
+/*!40000 ALTER TABLE `buffs` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `character_properties`
+--
+
+DROP TABLE IF EXISTS `character_properties`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `character_properties` (
+ `propertyId` bigint NOT NULL AUTO_INCREMENT,
+ `characterId` bigint NOT NULL,
+ `name` varchar(64) NOT NULL,
+ `type` varchar(1) NOT NULL,
+ `value` varchar(255) NOT NULL,
+ PRIMARY KEY (`propertyId`),
+ KEY `characterId` (`characterId`),
+ CONSTRAINT `character_properties_ibfk_1` FOREIGN KEY (`characterId`) REFERENCES `characters` (`characterId`) ON DELETE CASCADE ON UPDATE CASCADE,
+ CONSTRAINT `character_properties_ibfk_2` FOREIGN KEY (`characterId`) REFERENCES `characters` (`characterId`) ON DELETE CASCADE ON UPDATE CASCADE
+) ENGINE=InnoDB AUTO_INCREMENT=2563 DEFAULT CHARSET=utf8mb3;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `character_properties`
+--
+
+LOCK TABLES `character_properties` WRITE;
+/*!40000 ALTER TABLE `character_properties` DISABLE KEYS */;
+INSERT INTO `character_properties` VALUES (367,3,'Lv','f','1'),(368,3,'STR_JOB','f','2'),(369,3,'CON_JOB','f','3'),(370,3,'INT_JOB','f','9'),(371,3,'MNA_JOB','f','8'),(372,3,'DEX_JOB','f','3'),(373,3,'STR_ADD','f','0'),(374,3,'CON_ADD','f','0'),(375,3,'INT_ADD','f','0'),(376,3,'MNA_ADD','f','0'),(377,3,'DEX_ADD','f','0'),(378,3,'STR','f','2'),(379,3,'CON','f','3'),(380,3,'INT','f','9'),(381,3,'MNA','f','8'),(382,3,'DEX','f','3'),(383,3,'MaxSta','f','25000'),(384,3,'Sta_RunStart','f','0'),(385,3,'Sta_Run','f','0'),(386,3,'Sta_Recover','f','400'),(387,3,'Sta_R_Delay','f','1000'),(388,3,'Sta_Runable','f','250'),(389,3,'Sta_Jump','f','0'),(390,3,'Sta_Step','f','2500'),(391,3,'MHP','f','343'),(392,3,'MSP','f','207'),(393,3,'HP','f','343'),(394,3,'SP','f','207'),(395,3,'RHP','f','3'),(396,3,'RSP','f','6'),(397,3,'RHPTIME','f','20000'),(398,3,'RSPTIME','f','20000'),(399,3,'StatByLevel','f','0'),(400,3,'StatByBonus','f','0'),(401,3,'UsedStat','f','0'),(402,3,'StatPoint','f','0'),(403,3,'AbilityPoint','s','0'),(404,3,'MAXPATK','f','25'),(405,3,'MINPATK','f','25'),(406,3,'MAXMATK','f','76'),(407,3,'MINMATK','f','76'),(408,3,'MAXPATK_SUB','f','24'),(409,3,'MINPATK_SUB','f','24'),(410,3,'DEF','f','59'),(411,3,'MDEF','f','59'),(412,3,'CRTATK','f','12'),(413,3,'CRTHR','f','0'),(414,3,'CRTDR','f','0'),(415,3,'HR','f','1'),(416,3,'DR','f','1'),(417,3,'BLK','f','0'),(418,3,'BLK_BREAK','f','1'),(419,3,'SR','f','3'),(420,3,'SDR','f','1'),(421,3,'MaxWeight','f','8025'),(422,3,'NowWeight','f','293'),(423,3,'MSPD','f','30'),(424,3,'JumpPower','f','350'),(425,3,'CastingSpeed','f','100'),(426,3,'MovingShotable','f','0'),(427,3,'MovingShot','f','0'),(428,3,'SkillRange','f','0'),(429,3,'HPDrain','f','2'),(430,3,'BOOST','f','1'),(431,3,'Const','f','1.909859'),(432,3,'CAST','f','1'),(433,3,'STR_STAT','f','0'),(434,3,'CON_STAT','f','0'),(435,3,'INT_STAT','f','0'),(436,3,'MNA_STAT','f','0'),(437,3,'DEX_STAT','f','0'),(438,3,'MHP_BM','f','0'),(439,3,'MHP_Bonus','f','0'),(440,3,'MSP_BM','f','0'),(441,3,'MSP_Bonus','f','0'),(442,3,'MSPD_BM','f','22'),(443,3,'MSPD_Bonus','f','0'),(444,3,'CastingSpeed_BM','f','0'),(445,3,'DEF_BM','f','0'),(446,3,'DEF_RATE_BM','f','0'),(447,3,'MDEF_BM','f','0'),(448,3,'MDEF_RATE_BM','f','0'),(449,3,'CRTATK_BM','f','0'),(450,3,'CRTHR_BM','f','0'),(451,3,'CRTDR_BM','f','0'),(452,3,'HR_BM','f','0'),(453,3,'HR_RATE_BM','f','0'),(454,3,'DR_BM','f','0'),(455,3,'DR_RATE_BM','f','0'),(456,3,'BLK_BM','f','0'),(457,3,'BLK_RATE_BM','f','0'),(458,3,'BLK_BREAK_BM','f','0'),(459,3,'BLK_BREAK_RATE_BM','f','0'),(460,3,'SR_BM','f','0'),(461,3,'FixedMinSDR_BM','f','0'),(462,3,'SDR_BM','f','0'),(463,3,'MAXSTA_Bonus','f','0'),(464,3,'MaxSta_BM','f','0'),(465,3,'DashRun','f','0'),(466,3,'REST_BM','f','0'),(467,3,'RSta_BM','f','0'),(468,3,'PATK_BM','f','0'),(469,3,'MINPATK_BM','f','0'),(470,3,'PATK_MAIN_BM','f','0'),(471,3,'MINPATK_MAIN_BM','f','0'),(472,3,'PATK_RATE_BM','f','0'),(473,3,'MINPATK_RATE_BM','f','0'),(474,3,'PATK_MAIN_RATE_BM','f','0'),(475,3,'MINPATK_MAIN_RATE_BM','f','0'),(476,3,'MAXPATK_BM','f','0'),(477,3,'MAXPATK_MAIN_BM','f','0'),(478,3,'MAXPATK_RATE_BM','f','0'),(479,3,'MAXPATK_MAIN_RATE_BM','f','0'),(480,3,'MATK_BM','f','0'),(481,3,'MINMATK_BM','f','0'),(482,3,'MATK_RATE_BM','f','0'),(483,3,'MINMATK_RATE_BM','f','0'),(484,3,'MAXMATK_BM','f','0'),(485,3,'MAXMATK_RATE_BM','f','0'),(486,3,'MaxWeight_BM','f','0'),(487,3,'MaxWeight_Bonus','f','0'),(488,3,'MovingShot_BM','f','0'),(489,4,'Lv','f','1'),(490,4,'STR_JOB','f','7'),(491,4,'CON_JOB','f','7'),(492,4,'INT_JOB','f','2'),(493,4,'MNA_JOB','f','3'),(494,4,'DEX_JOB','f','6'),(495,4,'STR_ADD','f','0'),(496,4,'CON_ADD','f','0'),(497,4,'INT_ADD','f','0'),(498,4,'MNA_ADD','f','0'),(499,4,'DEX_ADD','f','0'),(500,4,'STR','f','7'),(501,4,'CON','f','7'),(502,4,'INT','f','2'),(503,4,'MNA','f','3'),(504,4,'DEX','f','6'),(505,4,'MaxSta','f','25000'),(506,4,'Sta_RunStart','f','0'),(507,4,'Sta_Run','f','0'),(508,4,'Sta_Recover','f','400'),(509,4,'Sta_R_Delay','f','1000'),(510,4,'Sta_Runable','f','250'),(511,4,'Sta_Jump','f','0'),(512,4,'Sta_Step','f','2500'),(513,4,'MHP','f','408'),(514,4,'MSP','f','202'),(515,4,'HP','f','408'),(516,4,'SP','f','202'),(517,4,'RHP','f','4'),(518,4,'RSP','f','6'),(519,4,'RHPTIME','f','20000'),(520,4,'RSPTIME','f','20000'),(521,4,'StatByLevel','f','0'),(522,4,'StatByBonus','f','0'),(523,4,'UsedStat','f','0'),(524,4,'StatPoint','f','0'),(525,4,'AbilityPoint','s','0'),(526,4,'MAXPATK','f','73'),(527,4,'MINPATK','f','71'),(528,4,'MAXMATK','f','25'),(529,4,'MINMATK','f','25'),(530,4,'MAXPATK_SUB','f','34'),(531,4,'MINPATK_SUB','f','34'),(532,4,'DEF','f','59'),(533,4,'MDEF','f','59'),(534,4,'CRTATK','f','24'),(535,4,'CRTHR','f','0'),(536,4,'CRTDR','f','0'),(537,4,'HR','f','3'),(538,4,'DR','f','3'),(539,4,'BLK','f','0'),(540,4,'BLK_BREAK','f','3'),(541,4,'SR','f','4'),(542,4,'SDR','f','1'),(543,4,'MaxWeight','f','8070'),(544,4,'NowWeight','f','293'),(545,4,'MSPD','f','30'),(546,4,'JumpPower','f','350'),(547,4,'CastingSpeed','f','100'),(548,4,'MovingShotable','f','0'),(549,4,'MovingShot','f','0'),(550,4,'SkillRange','f','0'),(551,4,'HPDrain','f','2'),(552,4,'BOOST','f','1'),(553,4,'Const','f','1.909859'),(554,4,'CAST','f','1'),(555,4,'STR_STAT','f','0'),(556,4,'CON_STAT','f','0'),(557,4,'INT_STAT','f','0'),(558,4,'MNA_STAT','f','0'),(559,4,'DEX_STAT','f','0'),(560,4,'MHP_BM','f','0'),(561,4,'MHP_Bonus','f','0'),(562,4,'MSP_BM','f','0'),(563,4,'MSP_Bonus','f','0'),(564,4,'MSPD_BM','f','22'),(565,4,'MSPD_Bonus','f','0'),(566,4,'CastingSpeed_BM','f','0'),(567,4,'DEF_BM','f','0'),(568,4,'DEF_RATE_BM','f','0'),(569,4,'MDEF_BM','f','0'),(570,4,'MDEF_RATE_BM','f','0'),(571,4,'CRTATK_BM','f','0'),(572,4,'CRTHR_BM','f','0'),(573,4,'CRTDR_BM','f','0'),(574,4,'HR_BM','f','0'),(575,4,'HR_RATE_BM','f','0'),(576,4,'DR_BM','f','0'),(577,4,'DR_RATE_BM','f','0'),(578,4,'BLK_BM','f','0'),(579,4,'BLK_RATE_BM','f','0'),(580,4,'BLK_BREAK_BM','f','0'),(581,4,'BLK_BREAK_RATE_BM','f','0'),(582,4,'SR_BM','f','0'),(583,4,'FixedMinSDR_BM','f','0'),(584,4,'SDR_BM','f','0'),(585,4,'MAXSTA_Bonus','f','0'),(586,4,'MaxSta_BM','f','0'),(587,4,'DashRun','f','0'),(588,4,'REST_BM','f','0'),(589,4,'RSta_BM','f','0'),(590,4,'PATK_BM','f','0'),(591,4,'MINPATK_BM','f','0'),(592,4,'PATK_MAIN_BM','f','0'),(593,4,'MINPATK_MAIN_BM','f','0'),(594,4,'PATK_RATE_BM','f','0'),(595,4,'MINPATK_RATE_BM','f','0'),(596,4,'PATK_MAIN_RATE_BM','f','0'),(597,4,'MINPATK_MAIN_RATE_BM','f','0'),(598,4,'MAXPATK_BM','f','0'),(599,4,'MAXPATK_MAIN_BM','f','0'),(600,4,'MAXPATK_RATE_BM','f','0'),(601,4,'MAXPATK_MAIN_RATE_BM','f','0'),(602,4,'MATK_BM','f','0'),(603,4,'MINMATK_BM','f','0'),(604,4,'MATK_RATE_BM','f','0'),(605,4,'MINMATK_RATE_BM','f','0'),(606,4,'MAXMATK_BM','f','0'),(607,4,'MAXMATK_RATE_BM','f','0'),(608,4,'MaxWeight_BM','f','0'),(609,4,'MaxWeight_Bonus','f','0'),(610,4,'MovingShot_BM','f','0'),(977,2,'Lv','f','1'),(978,2,'STR_JOB','f','6'),(979,2,'CON_JOB','f','5'),(980,2,'INT_JOB','f','2'),(981,2,'MNA_JOB','f','3'),(982,2,'DEX_JOB','f','9'),(983,2,'STR_ADD','f','0'),(984,2,'CON_ADD','f','0'),(985,2,'INT_ADD','f','0'),(986,2,'MNA_ADD','f','0'),(987,2,'DEX_ADD','f','0'),(988,2,'STR','f','6'),(989,2,'CON','f','5'),(990,2,'INT','f','2'),(991,2,'MNA','f','3'),(992,2,'DEX','f','9'),(993,2,'MaxSta','f','25000'),(994,2,'Sta_RunStart','f','0'),(995,2,'Sta_Run','f','0'),(996,2,'Sta_Recover','f','400'),(997,2,'Sta_R_Delay','f','1000'),(998,2,'Sta_Runable','f','250'),(999,2,'Sta_Jump','f','0'),(1000,2,'Sta_Step','f','2500'),(1001,2,'MHP','f','365'),(1002,2,'MSP','f','202'),(1003,2,'HP','f','365'),(1004,2,'SP','f','202'),(1005,2,'RHP','f','3'),(1006,2,'RSP','f','6'),(1007,2,'RHPTIME','f','20000'),(1008,2,'RSPTIME','f','20000'),(1009,2,'StatByLevel','f','0'),(1010,2,'StatByBonus','f','0'),(1011,2,'UsedStat','f','0'),(1012,2,'StatPoint','f','0'),(1013,2,'AbilityPoint','s','0'),(1014,2,'MAXPATK','f','73'),(1015,2,'MINPATK','f','67'),(1016,2,'MAXMATK','f','25'),(1017,2,'MINMATK','f','25'),(1018,2,'MAXPATK_SUB','f','32'),(1019,2,'MINPATK_SUB','f','32'),(1020,2,'DEF','f','59'),(1021,2,'MDEF','f','59'),(1022,2,'CRTATK','f','36'),(1023,2,'CRTHR','f','0'),(1024,2,'CRTDR','f','0'),(1025,2,'HR','f','3'),(1026,2,'DR','f','4'),(1027,2,'BLK','f','0'),(1028,2,'BLK_BREAK','f','4'),(1029,2,'SR','f','3'),(1030,2,'SDR','f','1'),(1031,2,'MaxWeight','f','8055'),(1032,2,'NowWeight','f','433'),(1033,2,'MSPD','f','30'),(1034,2,'JumpPower','f','350'),(1035,2,'CastingSpeed','f','100'),(1036,2,'MovingShotable','f','0'),(1037,2,'MovingShot','f','0'),(1038,2,'SkillRange','f','0'),(1039,2,'HPDrain','f','2'),(1040,2,'BOOST','f','1'),(1041,2,'Const','f','1.909859'),(1042,2,'CAST','f','1'),(1043,2,'STR_STAT','f','0'),(1044,2,'CON_STAT','f','0'),(1045,2,'INT_STAT','f','0'),(1046,2,'MNA_STAT','f','0'),(1047,2,'DEX_STAT','f','0'),(1048,2,'MHP_BM','f','0'),(1049,2,'MHP_Bonus','f','0'),(1050,2,'MSP_BM','f','0'),(1051,2,'MSP_Bonus','f','0'),(1052,2,'MSPD_BM','f','0'),(1053,2,'MSPD_Bonus','f','0'),(1054,2,'CastingSpeed_BM','f','0'),(1055,2,'DEF_BM','f','0'),(1056,2,'DEF_RATE_BM','f','0'),(1057,2,'MDEF_BM','f','0'),(1058,2,'MDEF_RATE_BM','f','0'),(1059,2,'CRTATK_BM','f','0'),(1060,2,'CRTHR_BM','f','0'),(1061,2,'CRTDR_BM','f','0'),(1062,2,'HR_BM','f','0'),(1063,2,'HR_RATE_BM','f','0'),(1064,2,'DR_BM','f','0'),(1065,2,'DR_RATE_BM','f','0'),(1066,2,'BLK_BM','f','0'),(1067,2,'BLK_RATE_BM','f','0'),(1068,2,'BLK_BREAK_BM','f','0'),(1069,2,'BLK_BREAK_RATE_BM','f','0'),(1070,2,'SR_BM','f','0'),(1071,2,'FixedMinSDR_BM','f','0'),(1072,2,'SDR_BM','f','0'),(1073,2,'MAXSTA_Bonus','f','0'),(1074,2,'MaxSta_BM','f','0'),(1075,2,'DashRun','f','0'),(1076,2,'REST_BM','f','0'),(1077,2,'RSta_BM','f','0'),(1078,2,'PATK_BM','f','0'),(1079,2,'MINPATK_BM','f','0'),(1080,2,'PATK_MAIN_BM','f','0'),(1081,2,'MINPATK_MAIN_BM','f','0'),(1082,2,'PATK_RATE_BM','f','0'),(1083,2,'MINPATK_RATE_BM','f','0'),(1084,2,'PATK_MAIN_RATE_BM','f','0'),(1085,2,'MINPATK_MAIN_RATE_BM','f','0'),(1086,2,'MAXPATK_BM','f','0'),(1087,2,'MAXPATK_MAIN_BM','f','0'),(1088,2,'MAXPATK_RATE_BM','f','0'),(1089,2,'MAXPATK_MAIN_RATE_BM','f','0'),(1090,2,'MATK_BM','f','0'),(1091,2,'MINMATK_BM','f','0'),(1092,2,'MATK_RATE_BM','f','0'),(1093,2,'MINMATK_RATE_BM','f','0'),(1094,2,'MAXMATK_BM','f','0'),(1095,2,'MAXMATK_RATE_BM','f','0'),(1096,2,'MaxWeight_BM','f','0'),(1097,2,'MaxWeight_Bonus','f','0'),(1098,2,'MovingShot_BM','f','0'),(1221,5,'Lv','f','1'),(1222,5,'STR_JOB','f','7'),(1223,5,'CON_JOB','f','7'),(1224,5,'INT_JOB','f','2'),(1225,5,'MNA_JOB','f','3'),(1226,5,'DEX_JOB','f','6'),(1227,5,'STR_ADD','f','0'),(1228,5,'CON_ADD','f','0'),(1229,5,'INT_ADD','f','0'),(1230,5,'MNA_ADD','f','0'),(1231,5,'DEX_ADD','f','0'),(1232,5,'STR','f','7'),(1233,5,'CON','f','7'),(1234,5,'INT','f','2'),(1235,5,'MNA','f','3'),(1236,5,'DEX','f','6'),(1237,5,'MaxSta','f','25000'),(1238,5,'Sta_RunStart','f','0'),(1239,5,'Sta_Run','f','0'),(1240,5,'Sta_Recover','f','400'),(1241,5,'Sta_R_Delay','f','1000'),(1242,5,'Sta_Runable','f','250'),(1243,5,'Sta_Jump','f','0'),(1244,5,'Sta_Step','f','2500'),(1245,5,'MHP','f','408'),(1246,5,'MSP','f','202'),(1247,5,'HP','f','408'),(1248,5,'SP','f','202'),(1249,5,'RHP','f','4'),(1250,5,'RSP','f','6'),(1251,5,'RHPTIME','f','20000'),(1252,5,'RSPTIME','f','20000'),(1253,5,'StatByLevel','f','0'),(1254,5,'StatByBonus','f','0'),(1255,5,'UsedStat','f','0'),(1256,5,'StatPoint','f','0'),(1257,5,'AbilityPoint','s','0'),(1258,5,'MAXPATK','f','73'),(1259,5,'MINPATK','f','71'),(1260,5,'MAXMATK','f','25'),(1261,5,'MINMATK','f','25'),(1262,5,'MAXPATK_SUB','f','34'),(1263,5,'MINPATK_SUB','f','34'),(1264,5,'DEF','f','59'),(1265,5,'MDEF','f','59'),(1266,5,'CRTATK','f','24'),(1267,5,'CRTHR','f','0'),(1268,5,'CRTDR','f','0'),(1269,5,'HR','f','3'),(1270,5,'DR','f','3'),(1271,5,'BLK','f','0'),(1272,5,'BLK_BREAK','f','3'),(1273,5,'SR','f','4'),(1274,5,'SDR','f','1'),(1275,5,'MaxWeight','f','8070'),(1276,5,'NowWeight','f','293'),(1277,5,'MSPD','f','30'),(1278,5,'JumpPower','f','350'),(1279,5,'CastingSpeed','f','100'),(1280,5,'MovingShotable','f','0'),(1281,5,'MovingShot','f','0'),(1282,5,'SkillRange','f','0'),(1283,5,'HPDrain','f','2'),(1284,5,'BOOST','f','1'),(1285,5,'Const','f','1.909859'),(1286,5,'CAST','f','1'),(1287,5,'STR_STAT','f','0'),(1288,5,'CON_STAT','f','0'),(1289,5,'INT_STAT','f','0'),(1290,5,'MNA_STAT','f','0'),(1291,5,'DEX_STAT','f','0'),(1292,5,'MHP_BM','f','0'),(1293,5,'MHP_Bonus','f','0'),(1294,5,'MSP_BM','f','0'),(1295,5,'MSP_Bonus','f','0'),(1296,5,'MSPD_BM','f','0'),(1297,5,'MSPD_Bonus','f','0'),(1298,5,'CastingSpeed_BM','f','0'),(1299,5,'DEF_BM','f','0'),(1300,5,'DEF_RATE_BM','f','0'),(1301,5,'MDEF_BM','f','0'),(1302,5,'MDEF_RATE_BM','f','0'),(1303,5,'CRTATK_BM','f','0'),(1304,5,'CRTHR_BM','f','0'),(1305,5,'CRTDR_BM','f','0'),(1306,5,'HR_BM','f','0'),(1307,5,'HR_RATE_BM','f','0'),(1308,5,'DR_BM','f','0'),(1309,5,'DR_RATE_BM','f','0'),(1310,5,'BLK_BM','f','0'),(1311,5,'BLK_RATE_BM','f','0'),(1312,5,'BLK_BREAK_BM','f','0'),(1313,5,'BLK_BREAK_RATE_BM','f','0'),(1314,5,'SR_BM','f','0'),(1315,5,'FixedMinSDR_BM','f','0'),(1316,5,'SDR_BM','f','0'),(1317,5,'MAXSTA_Bonus','f','0'),(1318,5,'MaxSta_BM','f','0'),(1319,5,'DashRun','f','0'),(1320,5,'REST_BM','f','0'),(1321,5,'RSta_BM','f','0'),(1322,5,'PATK_BM','f','0'),(1323,5,'MINPATK_BM','f','0'),(1324,5,'PATK_MAIN_BM','f','0'),(1325,5,'MINPATK_MAIN_BM','f','0'),(1326,5,'PATK_RATE_BM','f','0'),(1327,5,'MINPATK_RATE_BM','f','0'),(1328,5,'PATK_MAIN_RATE_BM','f','0'),(1329,5,'MINPATK_MAIN_RATE_BM','f','0'),(1330,5,'MAXPATK_BM','f','0'),(1331,5,'MAXPATK_MAIN_BM','f','0'),(1332,5,'MAXPATK_RATE_BM','f','0'),(1333,5,'MAXPATK_MAIN_RATE_BM','f','0'),(1334,5,'MATK_BM','f','0'),(1335,5,'MINMATK_BM','f','0'),(1336,5,'MATK_RATE_BM','f','0'),(1337,5,'MINMATK_RATE_BM','f','0'),(1338,5,'MAXMATK_BM','f','0'),(1339,5,'MAXMATK_RATE_BM','f','0'),(1340,5,'MaxWeight_BM','f','0'),(1341,5,'MaxWeight_Bonus','f','0'),(1342,5,'MovingShot_BM','f','0'),(2441,1,'Lv','f','106'),(2442,1,'STR_JOB','f','99'),(2443,1,'CON_JOB','f','56'),(2444,1,'INT_JOB','f','2'),(2445,1,'MNA_JOB','f','3'),(2446,1,'DEX_JOB','f','73'),(2447,1,'STR_ADD','f','0'),(2448,1,'CON_ADD','f','0'),(2449,1,'INT_ADD','f','0'),(2450,1,'MNA_ADD','f','0'),(2451,1,'DEX_ADD','f','0'),(2452,1,'STR','f','99'),(2453,1,'CON','f','56'),(2454,1,'INT','f','2'),(2455,1,'MNA','f','3'),(2456,1,'DEX','f','73'),(2457,1,'MaxSta','f','27000'),(2458,1,'Sta_RunStart','f','0'),(2459,1,'Sta_Run','f','0'),(2460,1,'Sta_Recover','f','400'),(2461,1,'Sta_R_Delay','f','1000'),(2462,1,'Sta_Runable','f','250'),(2463,1,'Sta_Jump','f','0'),(2464,1,'Sta_Step','f','2500'),(2465,1,'MHP','f','9646'),(2466,1,'MSP','f','2121'),(2467,1,'HP','f','9646'),(2468,1,'SP','f','2121'),(2469,1,'RHP','f','96'),(2470,1,'RSP','f','63'),(2471,1,'RHPTIME','f','20000'),(2472,1,'RSPTIME','f','20000'),(2473,1,'StatByLevel','f','105'),(2474,1,'StatByBonus','f','0'),(2475,1,'UsedStat','f','0'),(2476,1,'StatPoint','f','0'),(2477,1,'AbilityPoint','s','0'),(2478,1,'MAXPATK','f','371.7'),(2479,1,'MINPATK','f','371.7'),(2480,1,'MAXMATK','f','130'),(2481,1,'MINMATK','f','130'),(2482,1,'MAXPATK_SUB','f','316'),(2483,1,'MINPATK_SUB','f','316'),(2484,1,'DEF','f','126'),(2485,1,'MDEF','f','126'),(2486,1,'CRTATK','f','362'),(2487,1,'CRTHR','f','53'),(2488,1,'CRTDR','f','53'),(2489,1,'HR','f','94'),(2490,1,'DR','f','75'),(2491,1,'BLK','f','0'),(2492,1,'BLK_BREAK','f','75'),(2493,1,'SR','f','0'),(2494,1,'SDR','f','1'),(2495,1,'MaxWeight','f','8775'),(2496,1,'NowWeight','f','0'),(2497,1,'MSPD','f','30'),(2498,1,'JumpPower','f','350'),(2499,1,'CastingSpeed','f','100'),(2500,1,'MovingShotable','f','1'),(2501,1,'MovingShot','f','0.8'),(2502,1,'SkillRange','f','0'),(2503,1,'HPDrain','f','2'),(2504,1,'BOOST','f','1'),(2505,1,'Const','f','1.909859'),(2506,1,'CAST','f','1'),(2507,1,'STR_STAT','f','0'),(2508,1,'CON_STAT','f','0'),(2509,1,'INT_STAT','f','0'),(2510,1,'MNA_STAT','f','0'),(2511,1,'DEX_STAT','f','0'),(2512,1,'MHP_BM','f','0'),(2513,1,'MHP_Bonus','f','0'),(2514,1,'MSP_BM','f','0'),(2515,1,'MSP_Bonus','f','0'),(2516,1,'MSPD_BM','f','0'),(2517,1,'MSPD_Bonus','f','0'),(2518,1,'CastingSpeed_BM','f','0'),(2519,1,'DEF_BM','f','0'),(2520,1,'DEF_RATE_BM','f','0'),(2521,1,'MDEF_BM','f','0'),(2522,1,'MDEF_RATE_BM','f','0'),(2523,1,'CRTATK_BM','f','0'),(2524,1,'CRTHR_BM','f','0'),(2525,1,'CRTDR_BM','f','0'),(2526,1,'HR_BM','f','0'),(2527,1,'HR_RATE_BM','f','0'),(2528,1,'DR_BM','f','0'),(2529,1,'DR_RATE_BM','f','0'),(2530,1,'BLK_BM','f','0'),(2531,1,'BLK_RATE_BM','f','0'),(2532,1,'BLK_BREAK_BM','f','0'),(2533,1,'BLK_BREAK_RATE_BM','f','0'),(2534,1,'SR_BM','f','0'),(2535,1,'FixedMinSDR_BM','f','0'),(2536,1,'SDR_BM','f','0'),(2537,1,'MAXSTA_Bonus','f','0'),(2538,1,'MaxSta_BM','f','0'),(2539,1,'DashRun','f','0'),(2540,1,'REST_BM','f','0'),(2541,1,'RSta_BM','f','0'),(2542,1,'PATK_BM','f','0'),(2543,1,'MINPATK_BM','f','0'),(2544,1,'PATK_MAIN_BM','f','0'),(2545,1,'MINPATK_MAIN_BM','f','0'),(2546,1,'PATK_RATE_BM','f','0'),(2547,1,'MINPATK_RATE_BM','f','0'),(2548,1,'PATK_MAIN_RATE_BM','f','0'),(2549,1,'MINPATK_MAIN_RATE_BM','f','0'),(2550,1,'MAXPATK_BM','f','0'),(2551,1,'MAXPATK_MAIN_BM','f','0'),(2552,1,'MAXPATK_RATE_BM','f','0'),(2553,1,'MAXPATK_MAIN_RATE_BM','f','0'),(2554,1,'MATK_BM','f','0'),(2555,1,'MINMATK_BM','f','0'),(2556,1,'MATK_RATE_BM','f','0'),(2557,1,'MINMATK_RATE_BM','f','0'),(2558,1,'MAXMATK_BM','f','0'),(2559,1,'MAXMATK_RATE_BM','f','0'),(2560,1,'MaxWeight_BM','f','0'),(2561,1,'MaxWeight_Bonus','f','0'),(2562,1,'MovingShot_BM','f','0');
+/*!40000 ALTER TABLE `character_properties` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `characters`
+--
+
+DROP TABLE IF EXISTS `characters`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `characters` (
+ `characterId` bigint NOT NULL AUTO_INCREMENT,
+ `accountId` bigint NOT NULL,
+ `name` varchar(64) NOT NULL,
+ `teamName` varchar(32) DEFAULT NULL,
+ `job` smallint NOT NULL,
+ `gender` tinyint NOT NULL,
+ `hair` int NOT NULL,
+ `level` int NOT NULL DEFAULT '1',
+ `slot` int NOT NULL,
+ `barrackLayer` int NOT NULL DEFAULT '1',
+ `bx` float NOT NULL,
+ `by` float NOT NULL,
+ `bz` float NOT NULL,
+ `bd` float NOT NULL,
+ `zone` int NOT NULL,
+ `x` float NOT NULL,
+ `y` float NOT NULL,
+ `z` float NOT NULL,
+ `exp` bigint NOT NULL DEFAULT '0',
+ `maxExp` bigint NOT NULL DEFAULT '1000',
+ `totalExp` bigint NOT NULL DEFAULT '0',
+ `hp` int NOT NULL DEFAULT '100',
+ `hpRate` float NOT NULL DEFAULT '1',
+ `maxHp` int NOT NULL DEFAULT '100',
+ `sp` int NOT NULL DEFAULT '50',
+ `spRate` float NOT NULL DEFAULT '1',
+ `maxSp` int NOT NULL DEFAULT '50',
+ `stamina` int NOT NULL DEFAULT '25000',
+ `staminaByJob` int NOT NULL DEFAULT '0',
+ `maxStamina` int NOT NULL DEFAULT '25000',
+ `str` int NOT NULL DEFAULT '0',
+ `strByJob` int NOT NULL DEFAULT '0',
+ `con` int NOT NULL DEFAULT '0',
+ `conByJob` int NOT NULL DEFAULT '0',
+ `int` int NOT NULL DEFAULT '0',
+ `intByJob` int NOT NULL DEFAULT '0',
+ `spr` int NOT NULL DEFAULT '0',
+ `sprByJob` int NOT NULL DEFAULT '0',
+ `dex` int NOT NULL DEFAULT '0',
+ `dexByJob` int NOT NULL DEFAULT '0',
+ `statByLevel` int NOT NULL DEFAULT '0',
+ `statByBonus` int NOT NULL DEFAULT '0',
+ `usedStat` int NOT NULL DEFAULT '0',
+ `abilityPoints` int NOT NULL DEFAULT '0',
+ `silver` bigint NOT NULL DEFAULT '0',
+ `equipVisibility` int NOT NULL DEFAULT '65535',
+ PRIMARY KEY (`characterId`),
+ KEY `accountId` (`accountId`),
+ CONSTRAINT `characters_ibfk_1` FOREIGN KEY (`accountId`) REFERENCES `accounts` (`accountId`) ON DELETE CASCADE ON UPDATE CASCADE
+) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb3;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `characters`
+--
+
+LOCK TABLES `characters` WRITE;
+/*!40000 ALTER TABLE `characters` DISABLE KEYS */;
+INSERT INTO `characters` VALUES (1,1,'Arrow','Return',3006,1,6,106,1,1,44.2936,18.0487,-1.76421,80.5292,1021,770.017,209.69,-866.547,212208,511290,16000761,0,0,100,0,0,50,27000,0,25000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,65535),(2,1,'Scout','Return',5001,1,21,1,2,1,65.4274,19.8831,38.8981,337.119,1021,-632.263,260.925,-980.134,0,8,0,0,0,100,0,0,50,25000,0,25000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23135785,65535),(3,2,'Mage','ckto2',2001,2,21,1,1,1,-1520,1054.81,721,103.323,1021,-628,260.925,-1025,0,8,0,0,0,100,0,0,50,25000,0,25000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99923234,65535),(4,2,'Swordman','ckto2',1001,1,1,1,2,1,49,22.0001,3,90,1021,-628,260.925,-1025,0,8,0,0,0,100,0,0,50,25000,0,25000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5632832,65535),(5,3,'TheGuy','Exec',1001,1,1,1,1,1,25,27.7655,30,90,1021,-628,260.925,-1025,0,8,0,0,0,100,0,0,50,25000,0,25000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123039023,65535);
+/*!40000 ALTER TABLE `characters` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `chatmacros`
+--
+
+DROP TABLE IF EXISTS `chatmacros`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `chatmacros` (
+ `chatMacroId` bigint NOT NULL AUTO_INCREMENT,
+ `accountId` bigint NOT NULL,
+ `index` tinyint NOT NULL,
+ `message` varchar(128) NOT NULL,
+ `pose` tinyint NOT NULL DEFAULT '0',
+ PRIMARY KEY (`chatMacroId`),
+ UNIQUE KEY `UQ_ChatMacro_index` (`accountId`,`index`),
+ CONSTRAINT `chatmacros_ibfk_1` FOREIGN KEY (`accountId`) REFERENCES `accounts` (`accountId`) ON DELETE CASCADE ON UPDATE CASCADE,
+ CONSTRAINT `FK_ChatMacro_accountId` FOREIGN KEY (`accountId`) REFERENCES `accounts` (`accountId`) ON DELETE CASCADE
+) ENGINE=InnoDB AUTO_INCREMENT=211 DEFAULT CHARSET=utf8mb3;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `chatmacros`
+--
+
+LOCK TABLES `chatmacros` WRITE;
+/*!40000 ALTER TABLE `chatmacros` DISABLE KEYS */;
+INSERT INTO `chatmacros` VALUES (41,2,1,'{img emoticon_0022 30 30} I\'m sorry',8),(42,2,2,'{img emoticon_0001 30 30} Thanks',9),(43,2,3,'{img emoticon_0002 30 30} Good',10),(44,2,4,'{img emoticon_0010 30 30} Surprised',16),(45,2,5,'{img emoticon_0016 30 30} Crying',17),(46,2,6,'{img emoticon_0007 30 30} Love',1),(47,2,7,'{img emoticon_0006 30 30} Hello',6),(48,2,8,'',0),(49,2,9,'',0),(50,2,10,'',0),(101,3,1,'{img emoticon_0022 30 30} I\'m sorry',8),(102,3,2,'{img emoticon_0001 30 30} Thanks',9),(103,3,3,'{img emoticon_0002 30 30} Good',10),(104,3,4,'{img emoticon_0010 30 30} Surprised',16),(105,3,5,'{img emoticon_0016 30 30} Crying',17),(106,3,6,'{img emoticon_0007 30 30} Love',1),(107,3,7,'{img emoticon_0006 30 30} Hello',6),(108,3,8,'',0),(109,3,9,'',0),(110,3,10,'',0),(201,1,1,'{img emoticon_0022 30 30} I\'m sorry',8),(202,1,2,'{img emoticon_0001 30 30} Thanks',9),(203,1,3,'{img emoticon_0002 30 30} Good',10),(204,1,4,'{img emoticon_0010 30 30} Surprised',16),(205,1,5,'{img emoticon_0016 30 30} Crying',17),(206,1,6,'{img emoticon_0007 30 30} Love',1),(207,1,7,'{img emoticon_0006 30 30} Hello',6),(208,1,8,'',0),(209,1,9,'',0),(210,1,10,'',0);
+/*!40000 ALTER TABLE `chatmacros` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `cooldowns`
+--
+
+DROP TABLE IF EXISTS `cooldowns`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `cooldowns` (
+ `cooldownId` bigint NOT NULL AUTO_INCREMENT,
+ `characterId` bigint NOT NULL,
+ `classId` int NOT NULL,
+ `remaining` time NOT NULL,
+ `duration` time NOT NULL,
+ `startTime` datetime NOT NULL,
+ PRIMARY KEY (`cooldownId`),
+ KEY `characterId` (`characterId`),
+ CONSTRAINT `cooldowns_ibfk_1` FOREIGN KEY (`characterId`) REFERENCES `characters` (`characterId`) ON DELETE CASCADE ON UPDATE CASCADE
+) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb3;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `cooldowns`
+--
+
+LOCK TABLES `cooldowns` WRITE;
+/*!40000 ALTER TABLE `cooldowns` DISABLE KEYS */;
+/*!40000 ALTER TABLE `cooldowns` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `failed_jobs`
+--
+
+DROP TABLE IF EXISTS `failed_jobs`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `failed_jobs` (
+ `id` bigint unsigned NOT NULL AUTO_INCREMENT,
+ `uuid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
+ `connection` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
+ `queue` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
+ `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
+ `exception` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
+ `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
+ PRIMARY KEY (`id`),
+ UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `failed_jobs`
+--
+
+LOCK TABLES `failed_jobs` WRITE;
+/*!40000 ALTER TABLE `failed_jobs` DISABLE KEYS */;
+/*!40000 ALTER TABLE `failed_jobs` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `inventory`
+--
+
+DROP TABLE IF EXISTS `inventory`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `inventory` (
+ `characterId` bigint NOT NULL,
+ `itemId` bigint NOT NULL,
+ `sort` int NOT NULL,
+ `equipSlot` tinyint NOT NULL DEFAULT '127',
+ PRIMARY KEY (`characterId`,`itemId`),
+ KEY `itemId` (`itemId`),
+ CONSTRAINT `inventory_ibfk_1` FOREIGN KEY (`characterId`) REFERENCES `characters` (`characterId`) ON DELETE CASCADE ON UPDATE CASCADE,
+ CONSTRAINT `inventory_ibfk_2` FOREIGN KEY (`itemId`) REFERENCES `items` (`itemUniqueId`) ON DELETE CASCADE ON UPDATE CASCADE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `inventory`
+--
+
+LOCK TABLES `inventory` WRITE;
+/*!40000 ALTER TABLE `inventory` DISABLE KEYS */;
+INSERT INTO `inventory` VALUES (1,183,0,127),(3,29,0,127),(3,33,4,127),(3,34,5,127),(3,35,0,3),(3,36,0,8),(3,37,0,14),(4,38,0,127),(4,39,1,127),(4,40,2,127),(4,41,3,127),(4,42,4,127),(4,43,5,127),(4,44,0,3),(4,45,0,8),(4,46,0,14);
+/*!40000 ALTER TABLE `inventory` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `items`
+--
+
+DROP TABLE IF EXISTS `items`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `items` (
+ `itemUniqueId` bigint NOT NULL AUTO_INCREMENT,
+ `itemId` int NOT NULL,
+ `amount` int NOT NULL,
+ PRIMARY KEY (`itemUniqueId`)
+) ENGINE=InnoDB AUTO_INCREMENT=184 DEFAULT CHARSET=utf8mb3;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `items`
+--
+
+LOCK TABLES `items` WRITE;
+/*!40000 ALTER TABLE `items` DISABLE KEYS */;
+INSERT INTO `items` VALUES (1,900011,1),(2,640091,20),(3,640094,20),(4,640097,20),(5,650012,1),(6,661221,1),(7,531101,1),(8,161101,1),(9,521101,1),(10,900011,1000001),(11,640091,20),(12,640094,20),(13,640097,20),(14,650012,1),(15,661221,1),(16,531101,1),(17,161101,1),(18,521101,1),(19,900011,1201232),(20,301111,1),(21,640091,20),(22,640094,20),(23,640097,20),(24,650012,1),(25,661221,1),(26,531101,1),(27,111013,1),(28,521101,1),(29,900011,9000000),(33,650012,1),(34,661221,1),(35,531101,1),(36,141101,1),(37,521101,1),(38,900011,5632832),(39,640091,20),(40,640094,20),(41,640097,20),(42,650012,1),(43,661221,1),(44,531101,1),(45,101101,1),(46,521101,1),(47,900011,20735785),(48,301111,1),(49,640091,20),(50,640094,20),(51,640097,20),(52,650012,1),(53,661221,1),(54,531101,1),(55,111013,1),(56,521101,1),(57,900011,20735785),(58,301111,1),(59,640091,20),(60,640094,20),(61,640097,20),(62,650012,1),(63,661221,1),(64,531101,1),(65,111013,1),(66,521101,1),(67,900011,23135785),(68,301111,1),(69,640091,20),(70,640094,20),(71,640097,20),(72,650012,1),(73,661221,1),(74,531101,1),(75,111013,1),(76,521101,1),(77,900011,3000000),(79,640091,20),(80,640094,20),(81,640097,20),(82,650012,1),(83,661221,1),(84,531101,1),(85,111013,1),(86,521101,1),(87,900011,44000001),(88,640091,20),(89,640094,20),(90,640097,20),(91,650012,1),(92,661221,1),(93,531101,1),(94,161101,1),(95,521101,1),(96,900011,123039023),(97,640091,20),(98,640094,20),(99,640097,20),(101,661221,1),(102,531101,1),(103,101101,1),(104,521101,1),(105,900011,44000023),(106,640091,20),(107,640094,20),(108,640097,20),(109,645117,2),(110,650012,1),(111,661221,1),(112,531101,1),(113,161101,1),(114,521101,1),(115,900011,44000023),(116,640091,20),(117,640094,20),(118,640097,20),(119,645117,2),(120,650012,1),(121,661221,1),(122,531101,1),(123,161101,1),(124,521101,1),(125,900011,44000023),(128,640097,20),(129,645117,2),(130,650012,1),(131,661221,1),(132,531101,1),(133,161101,1),(134,622105,1),(135,521101,1),(136,900011,44000023),(137,640094,8),(138,640097,20),(139,645117,2),(140,650012,1),(141,661221,1),(142,531101,1),(143,161101,1),(144,622105,1),(145,521101,1),(146,900011,44000023),(148,640097,15),(149,645117,2),(150,650012,1),(151,661221,1),(152,531101,1),(153,161101,1),(154,622105,1),(155,521101,1),(156,900011,44000023),(157,640097,1),(158,645117,2),(159,650012,1),(160,661221,1),(161,531101,1),(162,161101,1),(163,622105,1),(164,521101,1),(165,900011,34000000),(167,645117,1),(168,650012,1),(169,661221,1),(170,531101,1),(171,161101,1),(172,622105,1),(173,521101,1),(174,900011,29000000),(176,650012,1),(177,661221,1),(178,531101,1),(179,161101,1),(180,622105,1),(181,521101,1),(182,900011,1),(183,900011,1);
+/*!40000 ALTER TABLE `items` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `jobs`
+--
+
+DROP TABLE IF EXISTS `jobs`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `jobs` (
+ `characterId` bigint NOT NULL,
+ `jobId` int NOT NULL,
+ `circle` int NOT NULL DEFAULT '1',
+ `skillPoints` int NOT NULL DEFAULT '0',
+ `totalExp` bigint NOT NULL DEFAULT '0',
+ PRIMARY KEY (`characterId`,`jobId`),
+ CONSTRAINT `jobs_ibfk_1` FOREIGN KEY (`characterId`) REFERENCES `characters` (`characterId`) ON DELETE CASCADE ON UPDATE CASCADE,
+ CONSTRAINT `jobs_ibfk_2` FOREIGN KEY (`characterId`) REFERENCES `characters` (`characterId`) ON DELETE CASCADE ON UPDATE CASCADE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `jobs`
+--
+
+LOCK TABLES `jobs` WRITE;
+/*!40000 ALTER TABLE `jobs` DISABLE KEYS */;
+INSERT INTO `jobs` VALUES (1,3001,1,14,22292),(1,3006,1,1,307),(2,5001,1,0,0),(3,2001,1,0,0),(4,1001,1,0,0),(5,1001,1,0,0);
+/*!40000 ALTER TABLE `jobs` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `migrations`
+--
+
+DROP TABLE IF EXISTS `migrations`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `migrations` (
+ `id` int unsigned NOT NULL AUTO_INCREMENT,
+ `migration` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
+ `batch` int NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `migrations`
+--
+
+LOCK TABLES `migrations` WRITE;
+/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
+INSERT INTO `migrations` VALUES (1,'2014_10_12_000000_create_users_table',1),(2,'2014_10_12_100000_create_password_reset_tokens_table',1),(3,'2019_08_19_000000_create_failed_jobs_table',1),(4,'2019_12_14_000001_create_personal_access_tokens_table',1);
+/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `password_reset_tokens`
+--
+
+DROP TABLE IF EXISTS `password_reset_tokens`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `password_reset_tokens` (
+ `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
+ `token` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
+ `created_at` timestamp NULL DEFAULT NULL,
+ PRIMARY KEY (`email`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `password_reset_tokens`
+--
+
+LOCK TABLES `password_reset_tokens` WRITE;
+/*!40000 ALTER TABLE `password_reset_tokens` DISABLE KEYS */;
+/*!40000 ALTER TABLE `password_reset_tokens` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `personal_access_tokens`
+--
+
+DROP TABLE IF EXISTS `personal_access_tokens`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `personal_access_tokens` (
+ `id` bigint unsigned NOT NULL AUTO_INCREMENT,
+ `tokenable_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
+ `tokenable_id` bigint unsigned NOT NULL,
+ `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
+ `token` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
+ `abilities` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
+ `last_used_at` timestamp NULL DEFAULT NULL,
+ `expires_at` timestamp NULL DEFAULT NULL,
+ `created_at` timestamp NULL DEFAULT NULL,
+ `updated_at` timestamp NULL DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ UNIQUE KEY `personal_access_tokens_token_unique` (`token`),
+ KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `personal_access_tokens`
+--
+
+LOCK TABLES `personal_access_tokens` WRITE;
+/*!40000 ALTER TABLE `personal_access_tokens` DISABLE KEYS */;
+/*!40000 ALTER TABLE `personal_access_tokens` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `quests`
+--
+
+DROP TABLE IF EXISTS `quests`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `quests` (
+ `questId` bigint NOT NULL AUTO_INCREMENT,
+ `characterId` bigint NOT NULL,
+ `classId` int NOT NULL,
+ `status` int NOT NULL,
+ `startTime` datetime NOT NULL,
+ `completeTime` datetime NOT NULL,
+ PRIMARY KEY (`questId`),
+ KEY `characterId` (`characterId`),
+ CONSTRAINT `quests_ibfk_1` FOREIGN KEY (`characterId`) REFERENCES `characters` (`characterId`) ON DELETE CASCADE ON UPDATE CASCADE
+) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb3;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `quests`
+--
+
+LOCK TABLES `quests` WRITE;
+/*!40000 ALTER TABLE `quests` DISABLE KEYS */;
+INSERT INTO `quests` VALUES (10,1,1000001,1,'2023-07-23 00:02:44','0001-01-01 00:00:00');
+/*!40000 ALTER TABLE `quests` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `quests_progress`
+--
+
+DROP TABLE IF EXISTS `quests_progress`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `quests_progress` (
+ `questId` bigint NOT NULL,
+ `characterId` bigint NOT NULL,
+ `ident` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
+ `count` int NOT NULL,
+ `done` tinyint(1) NOT NULL,
+ `unlocked` tinyint(1) NOT NULL,
+ PRIMARY KEY (`questId`,`ident`),
+ KEY `characterId` (`characterId`),
+ CONSTRAINT `quests_progress_ibfk_1` FOREIGN KEY (`questId`) REFERENCES `quests` (`questId`) ON DELETE CASCADE ON UPDATE CASCADE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 ROW_FORMAT=COMPACT;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `quests_progress`
+--
+
+LOCK TABLES `quests_progress` WRITE;
+/*!40000 ALTER TABLE `quests_progress` DISABLE KEYS */;
+INSERT INTO `quests_progress` VALUES (10,1,'kill1',0,0,1),(10,1,'kill2',0,0,0);
+/*!40000 ALTER TABLE `quests_progress` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `revealedmaps`
+--
+
+DROP TABLE IF EXISTS `revealedmaps`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `revealedmaps` (
+ `revealedMapId` bigint NOT NULL AUTO_INCREMENT,
+ `accountId` bigint NOT NULL,
+ `map` int NOT NULL,
+ `explored` varbinary(128) NOT NULL,
+ `percentage` float(10,2) NOT NULL DEFAULT '0.00',
+ PRIMARY KEY (`revealedMapId`),
+ UNIQUE KEY `UQ_revealedMaps_map` (`accountId`,`map`),
+ CONSTRAINT `FK_revealedMaps_accountId` FOREIGN KEY (`accountId`) REFERENCES `accounts` (`accountId`) ON DELETE CASCADE,
+ CONSTRAINT `revealedmaps_ibfk_1` FOREIGN KEY (`accountId`) REFERENCES `accounts` (`accountId`) ON DELETE CASCADE ON UPDATE CASCADE
+) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb3;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `revealedmaps`
+--
+
+LOCK TABLES `revealedmaps` WRITE;
+/*!40000 ALTER TABLE `revealedmaps` DISABLE KEYS */;
+INSERT INTO `revealedmaps` VALUES (5,2,1021,_binary '\0`\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',0.00),(11,3,1021,_binary '\0`\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',0.00),(21,1,1021,_binary '\0p\p\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',0.00);
+/*!40000 ALTER TABLE `revealedmaps` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `session_objects_properties`
+--
+
+DROP TABLE IF EXISTS `session_objects_properties`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `session_objects_properties` (
+ `sessionObjectPropertyId` bigint NOT NULL AUTO_INCREMENT,
+ `characterId` bigint NOT NULL,
+ `sessionObjectId` int NOT NULL,
+ `name` varchar(64) NOT NULL,
+ `type` varchar(1) NOT NULL,
+ `value` varchar(255) NOT NULL,
+ PRIMARY KEY (`sessionObjectPropertyId`),
+ KEY `characterId` (`characterId`),
+ CONSTRAINT `session_object_properties_ibfk_1` FOREIGN KEY (`characterId`) REFERENCES `characters` (`characterId`) ON DELETE CASCADE ON UPDATE CASCADE,
+ CONSTRAINT `session_objects_properties_ibfk_1` FOREIGN KEY (`characterId`) REFERENCES `characters` (`characterId`) ON DELETE CASCADE ON UPDATE CASCADE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `session_objects_properties`
+--
+
+LOCK TABLES `session_objects_properties` WRITE;
+/*!40000 ALTER TABLE `session_objects_properties` DISABLE KEYS */;
+/*!40000 ALTER TABLE `session_objects_properties` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `skills`
+--
+
+DROP TABLE IF EXISTS `skills`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `skills` (
+ `skillId` bigint NOT NULL AUTO_INCREMENT,
+ `characterId` bigint NOT NULL,
+ `id` int NOT NULL,
+ `level` int NOT NULL,
+ PRIMARY KEY (`skillId`),
+ KEY `characterId` (`characterId`),
+ CONSTRAINT `skills_ibfk_1` FOREIGN KEY (`characterId`) REFERENCES `characters` (`characterId`) ON DELETE CASCADE ON UPDATE CASCADE,
+ CONSTRAINT `skills_ibfk_2` FOREIGN KEY (`characterId`) REFERENCES `characters` (`characterId`) ON DELETE CASCADE ON UPDATE CASCADE
+) ENGINE=InnoDB AUTO_INCREMENT=293 DEFAULT CHARSET=utf8mb3;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `skills`
+--
+
+LOCK TABLES `skills` WRITE;
+/*!40000 ALTER TABLE `skills` DISABLE KEYS */;
+INSERT INTO `skills` VALUES (44,3,100,1),(45,3,103,1),(46,3,108,1),(47,3,105,1),(48,3,101,1),(49,3,106,1),(50,3,110,1),(51,3,4,1),(52,3,6,1),(53,3,20,1),(54,3,54,1),(55,4,100,1),(56,4,103,1),(57,4,108,1),(58,4,105,1),(59,4,101,1),(60,4,106,1),(61,4,110,1),(62,4,1,1),(63,4,5,1),(64,4,1535,1),(65,4,53,1),(66,4,20,1),(112,2,100,1),(113,2,103,1),(114,2,108,1),(115,2,105,1),(116,2,101,1),(117,2,106,1),(118,2,110,1),(119,2,1,1),(120,2,5,1),(121,2,1535,1),(122,2,11,1),(123,2,10,1),(124,2,59,1),(125,2,53,1),(126,2,20,1),(141,5,100,1),(142,5,103,1),(143,5,108,1),(144,5,105,1),(145,5,101,1),(146,5,106,1),(147,5,110,1),(148,5,1,1),(149,5,5,1),(150,5,1535,1),(151,5,53,1),(152,5,20,1),(279,1,100,1),(280,1,103,1),(281,1,108,1),(282,1,105,1),(283,1,101,1),(284,1,106,1),(285,1,110,1),(286,1,2,1),(287,1,52,1),(288,1,20,1),(289,1,53,1),(290,1,55,1),(291,1,56,1),(292,1,70,1);
+/*!40000 ALTER TABLE `skills` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `updates`
+--
+
+DROP TABLE IF EXISTS `updates`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `updates` (
+ `path` varchar(255) NOT NULL,
+ PRIMARY KEY (`path`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `updates`
+--
+
+LOCK TABLES `updates` WRITE;
+/*!40000 ALTER TABLE `updates` DISABLE KEYS */;
+INSERT INTO `updates` VALUES ('main.sql'),('update-2017-09-01_1.sql'),('update-2017-09-02_1.sql'),('update-2017-09-04_1.sql'),('update-2017-09-12_1.sql'),('update-2017-09-14_1.sql'),('update-2017-09-19_1.sql'),('update-2017-09-19_2.sql'),('update-2017-09-19_3.sql'),('update-2017-09-25_1.sql'),('update-2017-09-26_1.sql'),('update-2017-09-28_1.sql'),('update-2017-09-29_1.sql'),('update-2017-10-31_1.sql'),('update-2021-09-08_1.sql'),('update-2021-09-14_1.sql'),('update-2021-09-28_1.sql'),('update-2021-10-07_1.sql'),('update-2021-10-07_2.sql'),('update-2021-10-13_1.sql'),('update-2023-05-10_1.sql'),('update-2023-05-11_1.sql'),('update-2023-05-21_1.sql'),('update-2023-05-22_1.sql'),('update-2023-05-22_2.sql'),('update-2023-05-23_1.sql'),('update-2023-05-25_1.sql'),('update-2023-05-25_2.sql'),('update-2023-05-29_1.sql'),('update-2023-05-31_1.sql'),('update-2023-05-31_2.sql'),('update-2023-06-01_1.sql'),('update-2023-06-02_1.sql'),('update-2023-06-03_1.sql'),('update-2023-06-03_2.sql'),('update-2023-06-26_1.sql'),('update-2023-06-27_1.sql'),('update-2023-06-30_1.sql'),('update-2023-07-03_1.sql'),('update-2023-07-03_2.sql'),('update-2023-07-12_1.sql'),('update-2023-07-15_1.sql'),('update_2015-08-17_1.sql'),('update_2015-08-17_2.sql'),('update_2015-08-17_3.sql'),('update_2015-08-20_1.sql'),('update_2015-08-20_2.sql'),('update_2015-08-27_1.sql'),('update_2015-09-03_1.sql'),('update_2015-09-16_1.sql'),('update_2015-12-12_1.sql'),('update_2016-04-01_1.sql'),('update_2016-04-02_1.sql'),('update_2016-04-03_1.sql'),('update_2016-04-11_1.sql'),('update_2016-04-23_1.sql'),('update_2017-09-03_1.sql');
+/*!40000 ALTER TABLE `updates` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `users`
+--
+
+DROP TABLE IF EXISTS `users`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `users` (
+ `id` bigint unsigned NOT NULL AUTO_INCREMENT,
+ `account_id` bigint NOT NULL,
+ `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
+ `email_verified_at` timestamp NULL DEFAULT NULL,
+ `remember_token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
+ `created_at` timestamp NULL DEFAULT NULL,
+ `updated_at` timestamp NULL DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ UNIQUE KEY `users_email_unique` (`email`),
+ KEY `users_account_id_foreign` (`account_id`),
+ CONSTRAINT `users_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`accountId`)
+) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `users`
+--
+
+LOCK TABLES `users` WRITE;
+/*!40000 ALTER TABLE `users` DISABLE KEYS */;
+INSERT INTO `users` VALUES (1,1,'catagnarodecarvalho@gmail.com',NULL,'zMwK4NLSQDR6fnkBMBkSxn6eiTNCHpIljgb3nyQnlFE9FdoCiL50TC1zmXt9','2023-07-22 19:47:01','2023-07-22 19:47:01'),(2,2,'ckto2@gmal.com',NULL,NULL,'2023-07-23 02:51:24','2023-07-23 02:51:24'),(3,3,'exec@gmail.com',NULL,NULL,'2023-07-23 05:42:04','2023-07-23 05:42:04'),(4,4,'castagnarofelipe@gmail.com',NULL,NULL,'2023-07-25 07:13:22','2023-07-25 07:13:22');
+/*!40000 ALTER TABLE `users` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `vars_accounts`
+--
+
+DROP TABLE IF EXISTS `vars_accounts`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `vars_accounts` (
+ `varId` bigint NOT NULL AUTO_INCREMENT,
+ `accountId` bigint NOT NULL,
+ `name` varchar(128) NOT NULL,
+ `type` char(2) NOT NULL,
+ `value` mediumtext NOT NULL,
+ PRIMARY KEY (`varId`),
+ KEY `accountId` (`accountId`),
+ CONSTRAINT `vars_accounts_ibfk_1` FOREIGN KEY (`accountId`) REFERENCES `characters` (`accountId`) ON DELETE CASCADE ON UPDATE CASCADE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 ROW_FORMAT=COMPACT;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `vars_accounts`
+--
+
+LOCK TABLES `vars_accounts` WRITE;
+/*!40000 ALTER TABLE `vars_accounts` DISABLE KEYS */;
+/*!40000 ALTER TABLE `vars_accounts` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `vars_buffs`
+--
+
+DROP TABLE IF EXISTS `vars_buffs`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `vars_buffs` (
+ `varId` bigint NOT NULL AUTO_INCREMENT,
+ `buffId` bigint NOT NULL,
+ `name` varchar(128) NOT NULL,
+ `type` char(2) NOT NULL,
+ `value` mediumtext NOT NULL,
+ PRIMARY KEY (`varId`),
+ KEY `characterId` (`buffId`),
+ CONSTRAINT `vars_buffs_ibfk_1` FOREIGN KEY (`buffId`) REFERENCES `buffs` (`buffId`) ON DELETE CASCADE ON UPDATE CASCADE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 ROW_FORMAT=COMPACT;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `vars_buffs`
+--
+
+LOCK TABLES `vars_buffs` WRITE;
+/*!40000 ALTER TABLE `vars_buffs` DISABLE KEYS */;
+/*!40000 ALTER TABLE `vars_buffs` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `vars_characters`
+--
+
+DROP TABLE IF EXISTS `vars_characters`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `vars_characters` (
+ `varId` bigint NOT NULL AUTO_INCREMENT,
+ `characterId` bigint NOT NULL,
+ `name` varchar(128) NOT NULL,
+ `type` char(2) NOT NULL,
+ `value` mediumtext NOT NULL,
+ PRIMARY KEY (`varId`),
+ KEY `characterId` (`characterId`),
+ CONSTRAINT `vars_characters_ibfk_1` FOREIGN KEY (`characterId`) REFERENCES `characters` (`characterId`) ON DELETE CASCADE ON UPDATE CASCADE
+) ENGINE=InnoDB AUTO_INCREMENT=64 DEFAULT CHARSET=utf8mb3 ROW_FORMAT=COMPACT;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `vars_characters`
+--
+
+LOCK TABLES `vars_characters` WRITE;
+/*!40000 ALTER TABLE `vars_characters` DISABLE KEYS */;
+INSERT INTO `vars_characters` VALUES (10,3,'Melia.PropertiesInitialized','b','True'),(11,3,'Melia.EverLoggedIn','b','True'),(12,3,'Melia.QuickSlotList','s','#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,1,0#None,2,0#None,3,0#'),(13,4,'Melia.PropertiesInitialized','b','True'),(14,4,'Melia.EverLoggedIn','b','True'),(15,4,'Melia.QuickSlotList','s','#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,1,0#None,2,0#None,3,0#'),(25,2,'Melia.PropertiesInitialized','b','True'),(26,2,'Melia.EverLoggedIn','b','True'),(27,2,'Melia.QuickSlotList','s','#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,1,0#None,2,0#None,3,0#'),(31,5,'Melia.PropertiesInitialized','b','True'),(32,5,'Melia.EverLoggedIn','b','True'),(33,5,'Melia.QuickSlotList','s','#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,1,0#None,2,0#None,3,0#'),(61,1,'Melia.PropertiesInitialized','b','True'),(62,1,'Melia.EverLoggedIn','b','True'),(63,1,'Melia.QuickSlotList','s','#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#Item,640097,360287970189639721#Item,640094,360287970189639721#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,0,0#None,1,0#None,2,0#None,3,0#');
+/*!40000 ALTER TABLE `vars_characters` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `vars_global`
+--
+
+DROP TABLE IF EXISTS `vars_global`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `vars_global` (
+ `varId` bigint NOT NULL AUTO_INCREMENT,
+ `name` varchar(128) NOT NULL,
+ `type` char(2) NOT NULL,
+ `value` mediumtext NOT NULL,
+ PRIMARY KEY (`varId`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `vars_global`
+--
+
+LOCK TABLES `vars_global` WRITE;
+/*!40000 ALTER TABLE `vars_global` DISABLE KEYS */;
+/*!40000 ALTER TABLE `vars_global` ENABLE KEYS */;
+UNLOCK TABLES;
+/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
+
+/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
+/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
+/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
+/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
+/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
+/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
+/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
+
+-- Dump completed on 2023-07-29 22:39:09
diff --git a/system/web-optional/MeliaGUI/storage/app/public/.gitignore b/system/web-optional/MeliaGUI/storage/app/public/.gitignore
new file mode 100644
index 000000000..d6b7ef32c
--- /dev/null
+++ b/system/web-optional/MeliaGUI/storage/app/public/.gitignore
@@ -0,0 +1,2 @@
+*
+!.gitignore
diff --git a/system/web-optional/MeliaGUI/storage/framework/.gitignore b/system/web-optional/MeliaGUI/storage/framework/.gitignore
new file mode 100644
index 000000000..05c4471f2
--- /dev/null
+++ b/system/web-optional/MeliaGUI/storage/framework/.gitignore
@@ -0,0 +1,9 @@
+compiled.php
+config.php
+down
+events.scanned.php
+maintenance.php
+routes.php
+routes.scanned.php
+schedule-*
+services.json
diff --git a/system/web-optional/MeliaGUI/storage/framework/cache/.gitignore b/system/web-optional/MeliaGUI/storage/framework/cache/.gitignore
new file mode 100644
index 000000000..01e4a6cda
--- /dev/null
+++ b/system/web-optional/MeliaGUI/storage/framework/cache/.gitignore
@@ -0,0 +1,3 @@
+*
+!data/
+!.gitignore
diff --git a/system/web-optional/MeliaGUI/storage/framework/cache/data/.gitignore b/system/web-optional/MeliaGUI/storage/framework/cache/data/.gitignore
new file mode 100644
index 000000000..d6b7ef32c
--- /dev/null
+++ b/system/web-optional/MeliaGUI/storage/framework/cache/data/.gitignore
@@ -0,0 +1,2 @@
+*
+!.gitignore
diff --git a/system/web-optional/MeliaGUI/storage/framework/sessions/.gitignore b/system/web-optional/MeliaGUI/storage/framework/sessions/.gitignore
new file mode 100644
index 000000000..d6b7ef32c
--- /dev/null
+++ b/system/web-optional/MeliaGUI/storage/framework/sessions/.gitignore
@@ -0,0 +1,2 @@
+*
+!.gitignore
diff --git a/system/web-optional/MeliaGUI/storage/framework/testing/.gitignore b/system/web-optional/MeliaGUI/storage/framework/testing/.gitignore
new file mode 100644
index 000000000..d6b7ef32c
--- /dev/null
+++ b/system/web-optional/MeliaGUI/storage/framework/testing/.gitignore
@@ -0,0 +1,2 @@
+*
+!.gitignore
diff --git a/system/web-optional/MeliaGUI/storage/framework/views/.gitignore b/system/web-optional/MeliaGUI/storage/framework/views/.gitignore
new file mode 100644
index 000000000..d6b7ef32c
--- /dev/null
+++ b/system/web-optional/MeliaGUI/storage/framework/views/.gitignore
@@ -0,0 +1,2 @@
+*
+!.gitignore
diff --git a/system/web-optional/MeliaGUI/storage/logs/.gitignore b/system/web-optional/MeliaGUI/storage/logs/.gitignore
new file mode 100644
index 000000000..d6b7ef32c
--- /dev/null
+++ b/system/web-optional/MeliaGUI/storage/logs/.gitignore
@@ -0,0 +1,2 @@
+*
+!.gitignore
diff --git a/system/web-optional/MeliaGUI/tailwind.config.js b/system/web-optional/MeliaGUI/tailwind.config.js
new file mode 100644
index 000000000..be9700a9f
--- /dev/null
+++ b/system/web-optional/MeliaGUI/tailwind.config.js
@@ -0,0 +1,57 @@
+import forms from '@tailwindcss/forms';
+const plugin = require("tailwindcss/plugin");
+
+module.exports = {
+ content: [
+ './vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
+ './storage/framework/views/*.php',
+ './resources/views/**/*.blade.php',
+ './resources/js/**/*.{vue,js,ts,jsx,tsx}',
+ ],
+ darkMode: "class", // or 'media' or 'class'
+ theme: {
+ extend: {
+ screens: {
+ 'sm': '640px',
+ 'md': '768px',
+ 'lg': '1024px',
+ 'xl': '1280px',
+ '2xl': '1536px',
+ },
+ },
+ },
+ plugins: [
+ forms,
+ plugin(function ({ matchUtilities, theme }) {
+ matchUtilities(
+ {
+ "aside-scrollbars": (value) => {
+ const track = value === "light" ? "100" : "900";
+ const thumb = value === "light" ? "300" : "600";
+ const color = value === "light" ? "gray" : value;
+
+ return {
+ scrollbarWidth: "thin",
+ scrollbarColor: `${theme(`colors.${color}.${thumb}`)} ${theme(
+ `colors.${color}.${track}`
+ )}`,
+ "&::-webkit-scrollbar": {
+ width: "8px",
+ height: "8px",
+ },
+ "&::-webkit-scrollbar-track": {
+ backgroundColor: theme(`colors.${color}.${track}`),
+ },
+ "&::-webkit-scrollbar-thumb": {
+ borderRadius: "0.25rem",
+ backgroundColor: theme(`colors.${color}.${thumb}`),
+ },
+ };
+ },
+ },
+ { values: theme("asideScrollbars") }
+ );
+ }),
+ ],
+};
+
diff --git a/system/web-optional/MeliaGUI/tests/CreatesApplication.php b/system/web-optional/MeliaGUI/tests/CreatesApplication.php
new file mode 100644
index 000000000..cc6830112
--- /dev/null
+++ b/system/web-optional/MeliaGUI/tests/CreatesApplication.php
@@ -0,0 +1,21 @@
+make(Kernel::class)->bootstrap();
+
+ return $app;
+ }
+}
diff --git a/system/web-optional/MeliaGUI/tests/Feature/Auth/AuthenticationTest.php b/system/web-optional/MeliaGUI/tests/Feature/Auth/AuthenticationTest.php
new file mode 100644
index 000000000..2d0eeed6a
--- /dev/null
+++ b/system/web-optional/MeliaGUI/tests/Feature/Auth/AuthenticationTest.php
@@ -0,0 +1,45 @@
+get('/login');
+
+ $response->assertStatus(200);
+ }
+
+ public function test_users_can_authenticate_using_the_login_screen(): void
+ {
+ $user = User::factory()->create();
+
+ $response = $this->post('/login', [
+ 'email' => $user->email,
+ 'password' => 'password',
+ ]);
+
+ $this->assertAuthenticated();
+ $response->assertRedirect(RouteServiceProvider::HOME);
+ }
+
+ public function test_users_can_not_authenticate_with_invalid_password(): void
+ {
+ $user = User::factory()->create();
+
+ $this->post('/login', [
+ 'email' => $user->email,
+ 'password' => 'wrong-password',
+ ]);
+
+ $this->assertGuest();
+ }
+}
diff --git a/system/web-optional/MeliaGUI/tests/Feature/Auth/EmailVerificationTest.php b/system/web-optional/MeliaGUI/tests/Feature/Auth/EmailVerificationTest.php
new file mode 100644
index 000000000..ba19d9ce5
--- /dev/null
+++ b/system/web-optional/MeliaGUI/tests/Feature/Auth/EmailVerificationTest.php
@@ -0,0 +1,65 @@
+create([
+ 'email_verified_at' => null,
+ ]);
+
+ $response = $this->actingAs($user)->get('/verify-email');
+
+ $response->assertStatus(200);
+ }
+
+ public function test_email_can_be_verified(): void
+ {
+ $user = User::factory()->create([
+ 'email_verified_at' => null,
+ ]);
+
+ Event::fake();
+
+ $verificationUrl = URL::temporarySignedRoute(
+ 'verification.verify',
+ now()->addMinutes(60),
+ ['id' => $user->id, 'hash' => sha1($user->email)]
+ );
+
+ $response = $this->actingAs($user)->get($verificationUrl);
+
+ Event::assertDispatched(Verified::class);
+ $this->assertTrue($user->fresh()->hasVerifiedEmail());
+ $response->assertRedirect(RouteServiceProvider::HOME.'?verified=1');
+ }
+
+ public function test_email_is_not_verified_with_invalid_hash(): void
+ {
+ $user = User::factory()->create([
+ 'email_verified_at' => null,
+ ]);
+
+ $verificationUrl = URL::temporarySignedRoute(
+ 'verification.verify',
+ now()->addMinutes(60),
+ ['id' => $user->id, 'hash' => sha1('wrong-email')]
+ );
+
+ $this->actingAs($user)->get($verificationUrl);
+
+ $this->assertFalse($user->fresh()->hasVerifiedEmail());
+ }
+}
diff --git a/system/web-optional/MeliaGUI/tests/Feature/Auth/PasswordConfirmationTest.php b/system/web-optional/MeliaGUI/tests/Feature/Auth/PasswordConfirmationTest.php
new file mode 100644
index 000000000..ff85721e2
--- /dev/null
+++ b/system/web-optional/MeliaGUI/tests/Feature/Auth/PasswordConfirmationTest.php
@@ -0,0 +1,44 @@
+create();
+
+ $response = $this->actingAs($user)->get('/confirm-password');
+
+ $response->assertStatus(200);
+ }
+
+ public function test_password_can_be_confirmed(): void
+ {
+ $user = User::factory()->create();
+
+ $response = $this->actingAs($user)->post('/confirm-password', [
+ 'password' => 'password',
+ ]);
+
+ $response->assertRedirect();
+ $response->assertSessionHasNoErrors();
+ }
+
+ public function test_password_is_not_confirmed_with_invalid_password(): void
+ {
+ $user = User::factory()->create();
+
+ $response = $this->actingAs($user)->post('/confirm-password', [
+ 'password' => 'wrong-password',
+ ]);
+
+ $response->assertSessionHasErrors();
+ }
+}
diff --git a/system/web-optional/MeliaGUI/tests/Feature/Auth/PasswordResetTest.php b/system/web-optional/MeliaGUI/tests/Feature/Auth/PasswordResetTest.php
new file mode 100644
index 000000000..4a260656c
--- /dev/null
+++ b/system/web-optional/MeliaGUI/tests/Feature/Auth/PasswordResetTest.php
@@ -0,0 +1,71 @@
+get('/forgot-password');
+
+ $response->assertStatus(200);
+ }
+
+ public function test_reset_password_link_can_be_requested(): void
+ {
+ Notification::fake();
+
+ $user = User::factory()->create();
+
+ $this->post('/forgot-password', ['email' => $user->email]);
+
+ Notification::assertSentTo($user, ResetPassword::class);
+ }
+
+ public function test_reset_password_screen_can_be_rendered(): void
+ {
+ Notification::fake();
+
+ $user = User::factory()->create();
+
+ $this->post('/forgot-password', ['email' => $user->email]);
+
+ Notification::assertSentTo($user, ResetPassword::class, function ($notification) {
+ $response = $this->get('/reset-password/'.$notification->token);
+
+ $response->assertStatus(200);
+
+ return true;
+ });
+ }
+
+ public function test_password_can_be_reset_with_valid_token(): void
+ {
+ Notification::fake();
+
+ $user = User::factory()->create();
+
+ $this->post('/forgot-password', ['email' => $user->email]);
+
+ Notification::assertSentTo($user, ResetPassword::class, function ($notification) use ($user) {
+ $response = $this->post('/reset-password', [
+ 'token' => $notification->token,
+ 'email' => $user->email,
+ 'password' => 'password',
+ 'password_confirmation' => 'password',
+ ]);
+
+ $response->assertSessionHasNoErrors();
+
+ return true;
+ });
+ }
+}
diff --git a/system/web-optional/MeliaGUI/tests/Feature/Auth/PasswordUpdateTest.php b/system/web-optional/MeliaGUI/tests/Feature/Auth/PasswordUpdateTest.php
new file mode 100644
index 000000000..bbf079d2c
--- /dev/null
+++ b/system/web-optional/MeliaGUI/tests/Feature/Auth/PasswordUpdateTest.php
@@ -0,0 +1,51 @@
+create();
+
+ $response = $this
+ ->actingAs($user)
+ ->from('/profile')
+ ->put('/password', [
+ 'current_password' => 'password',
+ 'password' => 'new-password',
+ 'password_confirmation' => 'new-password',
+ ]);
+
+ $response
+ ->assertSessionHasNoErrors()
+ ->assertRedirect('/profile');
+
+ $this->assertTrue(Hash::check('new-password', $user->refresh()->password));
+ }
+
+ public function test_correct_password_must_be_provided_to_update_password(): void
+ {
+ $user = User::factory()->create();
+
+ $response = $this
+ ->actingAs($user)
+ ->from('/profile')
+ ->put('/password', [
+ 'current_password' => 'wrong-password',
+ 'password' => 'new-password',
+ 'password_confirmation' => 'new-password',
+ ]);
+
+ $response
+ ->assertSessionHasErrors('current_password')
+ ->assertRedirect('/profile');
+ }
+}
diff --git a/system/web-optional/MeliaGUI/tests/Feature/Auth/RegistrationTest.php b/system/web-optional/MeliaGUI/tests/Feature/Auth/RegistrationTest.php
new file mode 100644
index 000000000..30829b1e2
--- /dev/null
+++ b/system/web-optional/MeliaGUI/tests/Feature/Auth/RegistrationTest.php
@@ -0,0 +1,32 @@
+get('/register');
+
+ $response->assertStatus(200);
+ }
+
+ public function test_new_users_can_register(): void
+ {
+ $response = $this->post('/register', [
+ 'name' => 'Test User',
+ 'email' => 'test@example.com',
+ 'password' => 'password',
+ 'password_confirmation' => 'password',
+ ]);
+
+ $this->assertAuthenticated();
+ $response->assertRedirect(RouteServiceProvider::HOME);
+ }
+}
diff --git a/system/web-optional/MeliaGUI/tests/Feature/ExampleTest.php b/system/web-optional/MeliaGUI/tests/Feature/ExampleTest.php
new file mode 100644
index 000000000..8364a84e2
--- /dev/null
+++ b/system/web-optional/MeliaGUI/tests/Feature/ExampleTest.php
@@ -0,0 +1,19 @@
+get('/');
+
+ $response->assertStatus(200);
+ }
+}
diff --git a/system/web-optional/MeliaGUI/tests/Feature/ProfileTest.php b/system/web-optional/MeliaGUI/tests/Feature/ProfileTest.php
new file mode 100644
index 000000000..49886c3e9
--- /dev/null
+++ b/system/web-optional/MeliaGUI/tests/Feature/ProfileTest.php
@@ -0,0 +1,99 @@
+create();
+
+ $response = $this
+ ->actingAs($user)
+ ->get('/profile');
+
+ $response->assertOk();
+ }
+
+ public function test_profile_information_can_be_updated(): void
+ {
+ $user = User::factory()->create();
+
+ $response = $this
+ ->actingAs($user)
+ ->patch('/profile', [
+ 'name' => 'Test User',
+ 'email' => 'test@example.com',
+ ]);
+
+ $response
+ ->assertSessionHasNoErrors()
+ ->assertRedirect('/profile');
+
+ $user->refresh();
+
+ $this->assertSame('Test User', $user->name);
+ $this->assertSame('test@example.com', $user->email);
+ $this->assertNull($user->email_verified_at);
+ }
+
+ public function test_email_verification_status_is_unchanged_when_the_email_address_is_unchanged(): void
+ {
+ $user = User::factory()->create();
+
+ $response = $this
+ ->actingAs($user)
+ ->patch('/profile', [
+ 'name' => 'Test User',
+ 'email' => $user->email,
+ ]);
+
+ $response
+ ->assertSessionHasNoErrors()
+ ->assertRedirect('/profile');
+
+ $this->assertNotNull($user->refresh()->email_verified_at);
+ }
+
+ public function test_user_can_delete_their_account(): void
+ {
+ $user = User::factory()->create();
+
+ $response = $this
+ ->actingAs($user)
+ ->delete('/profile', [
+ 'password' => 'password',
+ ]);
+
+ $response
+ ->assertSessionHasNoErrors()
+ ->assertRedirect('/');
+
+ $this->assertGuest();
+ $this->assertNull($user->fresh());
+ }
+
+ public function test_correct_password_must_be_provided_to_delete_account(): void
+ {
+ $user = User::factory()->create();
+
+ $response = $this
+ ->actingAs($user)
+ ->from('/profile')
+ ->delete('/profile', [
+ 'password' => 'wrong-password',
+ ]);
+
+ $response
+ ->assertSessionHasErrors('password')
+ ->assertRedirect('/profile');
+
+ $this->assertNotNull($user->fresh());
+ }
+}
diff --git a/system/web-optional/MeliaGUI/tests/TestCase.php b/system/web-optional/MeliaGUI/tests/TestCase.php
new file mode 100644
index 000000000..2932d4a69
--- /dev/null
+++ b/system/web-optional/MeliaGUI/tests/TestCase.php
@@ -0,0 +1,10 @@
+assertTrue(true);
+ }
+}
diff --git a/system/web-optional/MeliaGUI/vite.config.js b/system/web-optional/MeliaGUI/vite.config.js
new file mode 100644
index 000000000..6a5d31b11
--- /dev/null
+++ b/system/web-optional/MeliaGUI/vite.config.js
@@ -0,0 +1,21 @@
+import { defineConfig } from 'vite';
+import laravel from 'laravel-vite-plugin';
+import vue from '@vitejs/plugin-vue';
+
+export default defineConfig({
+ plugins: [
+ laravel({
+ input: 'resources/js/app.js',
+ ssr: 'resources/js/ssr.js',
+ refresh: true,
+ }),
+ vue({
+ template: {
+ transformAssetUrls: {
+ base: null,
+ includeAbsolute: false,
+ },
+ },
+ }),
+ ],
+});
diff --git a/user/keys/api_key b/user/keys/api_key
new file mode 100644
index 000000000..47da61ae9
--- /dev/null
+++ b/user/keys/api_key
@@ -0,0 +1 @@
+eea339bded5d4a3d8bf238aacb35817b
\ No newline at end of file